Searched refs:multiple (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/security/sasl/
H A DRealmChoiceCallback.java50 * @param multiple true if multiple choices allowed; false otherwise
57 int defaultChoice, boolean multiple) {
58 super(prompt, choices, defaultChoice, multiple);
56 RealmChoiceCallback(String prompt, String[]choices, int defaultChoice, boolean multiple) argument
/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLSelectElement.java54 * The type of this form control. This is the string "select-multiple"
55 * when the multiple attribute is <code>true</code> and the string
62 * -1 is returned if no element is selected. If multiple options are
99 * If true, multiple <code>OPTION</code> elements may be selected in
100 * this <code>SELECT</code> . See the multiple attribute definition in
104 public void setMultiple(boolean multiple); argument
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/legacy/connection/
H A DREADME.txt67 Extending IORInfo to support the multiple server port API:
71 We support the multiple server port API in PortableInterceptors by
73 how to use the multiple server port APIs is found in
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dsun_awt_X11_GtkFileDialogPeer.c211 jobject jfilter, jboolean multiple, int x, int y)
236 /* Set multiple selection mode, that is allowed only in OPEN action */
237 if (multiple) {
239 multiple); local
209 Java_sun_awt_X11_GtkFileDialogPeer_run(JNIEnv * env, jobject jpeer, jstring jtitle, jint mode, jstring jdir, jstring jfile, jobject jfilter, jboolean multiple, int x, int y) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/internalizer/
H A DInternalizer.java163 if( a.getLocalName().equals("multiple") ) //
194 boolean multiple = false;
203 if(bindings.getAttribute("multiple") != null) {
204 String requiredAttr = bindings.getAttribute("multiple");
207 multiple = true;
286 if(!multiple) {
300 if(!multiple || nlst.getLength() == 1) {
357 } else if (!multiple || targetMultiple == null) {
375 if(!multiple || targetMultiple == null)
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWFileDialogPeer.java138 boolean multiple = (wFiles.length > 1);
144 if (multiple) {
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DPlotter.java769 long multiple = (long)Math.pow(10.0, exp);
770 int i = (int)(l / multiple);
771 return i * multiple;
776 long multiple = (long)Math.pow(10.0, exp);
777 int i = (int)(l / multiple);
778 l = (i+1)*multiple;
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngtest.c1557 int multiple = 0; local
1598 multiple = 1;
1605 multiple = 1;
1624 if (!multiple && argc == 3 + verbose)
1627 if ((!multiple && argc > 3 + verbose) || (multiple && argc < 2))
1633 " reads/writes one PNG file (without -m) or multiple files (-m)\n");
1639 if (multiple)
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageCopy_blk.s45 ! size must be multiple of 64
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DHTMLDocument.java3294 * This enables multiple views, and allows document to
3359 boolean multiple = attr.getAttribute(HTML.Attribute.MULTIPLE) != null;
3360 if ((size > 1) || multiple) {
3362 if (multiple) {
/openjdk7/jdk/src/share/native/sun/awt/image/cvutils/
H A DREADME51 number of other header files with multiple implementations provided
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DcompactibleFreeListSpace.cpp62 // MinChunkSize should be a multiple of MinObjAlignment and be large enough
1619 assert(newFc->size() % size == 0, "Should be integral multiple of request");
1622 // into multiple pieces; record the split-death of the original
2679 size_t multiple = _num_blocks[word_sz]/(CMSOldPLABToleranceFactor*CMSOldPLABNumRefills*n_blks); local
2680 n_blks += CMSOldPLABReactivityFactor*multiple*n_blks;

Completed in 92 milliseconds