/openjdk7/jdk/make/common/shared/ |
H A D | Defs-javadoc.gmk | 61 EMPTY:= 62 SPACE:=$(EMPTY) $(EMPTY)
|
/openjdk7/hotspot/src/cpu/x86/vm/ |
H A D | c1_FpuStackSim_x86.cpp | 38 const int EMPTY = -1; variable 65 set_regs_at(i, EMPTY); 72 set_regs_at(tos_index(), EMPTY); local 79 set_regs_at(tos_index(), EMPTY); local 86 assert(regs_at(stack_size()) == EMPTY, "should be empty"); 148 assert(regs_at(i) == EMPTY, "must be empty"); 157 return (regs_at(tos_index() - tos_offset) == EMPTY); 164 set_regs_at(i, EMPTY); 193 if (reg != EMPTY) {
|
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/ |
H A D | ArrayNodeListIterator.java | 36 private static final int[] EMPTY = { }; field in class:ArrayNodeListIterator 68 if (node == END) _nodes = EMPTY;
|
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/ |
H A D | DTDConstants.java | 58 int EMPTY = 17; field in interface:DTDConstants
|
H A D | Element.java | 127 return type == EMPTY; 167 contentTypes.put("EMPTY", Integer.valueOf(EMPTY));
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/dtd/ |
H A D | Term.java | 47 static final Term EMPTY = new Term() { field in class:Term
|
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/ |
H A D | HTMLdtd.java | 133 private static final int EMPTY = 0x0010 | ONLY_OPENING; field in class:HTMLdtd 181 return isElement( tagName, EMPTY ); 477 defineElement( "AREA", EMPTY ); 478 defineElement( "BASE", EMPTY | ALLOWED_HEAD ); 479 defineElement( "BASEFONT", EMPTY ); 482 defineElement( "BR", EMPTY ); 483 defineElement( "COL", EMPTY ); 491 defineElement( "FRAME", EMPTY | OPT_CLOSING ); 499 defineElement( "HR", EMPTY | CLOSE_P ); 501 defineElement( "IMG", EMPTY ); [all...] |
/openjdk7/jdk/test/com/sun/security/sasl/ |
H A D | Cram.java | 42 private static final byte[] EMPTY = new byte[0]; field in class:Cram 91 clnt.evaluateChallenge(EMPTY) : EMPTY);
|
/openjdk7/jdk/test/com/sun/security/sasl/digest/ |
H A D | AuthNoUtf8.java | 45 private static final byte[] EMPTY = new byte[0]; field in class:AuthNoUtf8 107 clnt.evaluateChallenge(EMPTY) : EMPTY);
|
H A D | AuthOnly.java | 39 private static final byte[] EMPTY = new byte[0]; field in class:AuthOnly 100 clnt.evaluateChallenge(EMPTY) : EMPTY);
|
H A D | AuthRealms.java | 45 private static final byte[] EMPTY = new byte[0]; field in class:AuthRealms 108 clnt.evaluateChallenge(EMPTY) : EMPTY);
|
H A D | Integrity.java | 44 private static final byte[] EMPTY = new byte[0]; field in class:Integrity 114 clnt.evaluateChallenge(EMPTY) : EMPTY);
|
H A D | NoQuoteParams.java | 59 private static final byte[] EMPTY = new byte[0]; field in class:NoQuoteParams 78 ? client.evaluateChallenge(EMPTY) : EMPTY;
|
H A D | Privacy.java | 44 private static final byte[] EMPTY = new byte[0]; field in class:Privacy 114 clnt.evaluateChallenge(EMPTY) : EMPTY);
|
H A D | PrivacyRc4.java | 45 private static final byte[] EMPTY = new byte[0]; field in class:PrivacyRc4 116 clnt.evaluateChallenge(EMPTY) : EMPTY);
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/digested/ |
H A D | DDefine.java | 68 return DAnnotation.EMPTY;
|
H A D | DPattern.java | 82 return DAnnotation.EMPTY;
|
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/models/ |
H A D | XSEmptyCM.java | 51 private static final Vector EMPTY = new Vector(0); field in class:XSEmptyCM 134 return EMPTY;
|
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/ |
H A D | ElemDesc.java | 46 static final int EMPTY = (1 << 1); field in class:ElemDesc
|
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/ |
H A D | ElemDesc.java | 46 /** Defines mnemonic and bit-value for the EMPTY flag */ 47 static final int EMPTY = (1 << 1); field in class:ElemDesc
|
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/compiler/ |
H A D | OpCodes.java | 54 * [EMPTY] 57 public static final int EMPTY = -2; field in class:OpCodes 324 * [index to namespace token, or EMPTY] 517 * [index to ns token or EMPTY]
|
/openjdk7/jdk/src/share/classes/sun/text/ |
H A D | IntHashtable.java | 166 private static final int EMPTY = Integer.MIN_VALUE; field in class:IntHashtable 167 private static final int DELETED = EMPTY + 1; 183 keyList[i] = EMPTY; 231 } else if (tableHash == EMPTY) { // empty, end o' the line
|
/openjdk7/jdk/src/share/classes/com/sun/beans/finder/ |
H A D | InstanceFinder.java | 37 private static final String[] EMPTY = { }; field in class:InstanceFinder 58 : EMPTY;
|
/openjdk7/jdk/src/share/classes/java/util/concurrent/ |
H A D | Phaser.java | 278 * parties and one unarrived parties (encoded as EMPTY below). 308 private static final int EMPTY = 1; field in class:Phaser 314 return (counts == EMPTY) ? 0 : counts & UNARRIVED_MASK; 327 return (counts == EMPTY) ? 0 : 387 else if (counts == EMPTY || unarrived < 0) { 400 n |= EMPTY; 432 else if (counts != EMPTY) { // not 1st registration 452 // assert phase < 0 || (int)state == EMPTY; 469 * parties is zero, resetting to unregistered EMPTY state). 489 ((p = (int)s >>> PARTIES_SHIFT) == 0 ? EMPTY [all...] |
/openjdk7/jdk/test/com/sun/security/sasl/gsskerb/ |
H A D | AuthOnly.java | 47 private static final byte[] EMPTY = new byte[0]; field in class:AuthOnly 120 return (clnt.hasInitialResponse()? clnt.evaluateChallenge(EMPTY) : EMPTY);
|