/libcore/ojluni/src/main/java/java/util/concurrent/ |
D | Phaser.java | 309 private static final int EMPTY = 1; field in Phaser 315 return (counts == EMPTY) ? 0 : (counts & UNARRIVED_MASK); in unarrivedOf() 328 return (counts == EMPTY) ? 0 : in arrivedOf() 388 int unarrived = (counts == EMPTY) ? 0 : (counts & UNARRIVED_MASK); in doArrive() 399 n |= EMPTY; in doArrive() 409 U.compareAndSwapLong(this, STATE, s, s | EMPTY); in doArrive() 440 if (counts != EMPTY) { // not 1st registration in doRegister() 498 (((p = (int)s >>> PARTIES_SHIFT) == 0) ? EMPTY : in reconcileState() 566 this.state = (parties == 0) ? (long)EMPTY : in Phaser() 681 int unarrived = (counts == EMPTY) ? 0 : (counts & UNARRIVED_MASK); in arriveAndAwaitAdvance() [all …]
|
/libcore/luni/src/main/java/libcore/reflect/ |
D | GenericSignatureParser.java | 134 this.interfaceTypes = ListOfTypes.EMPTY; in parseForClass() 141 this.interfaceTypes = ListOfTypes.EMPTY; in parseForClass() 163 this.parameterTypes = ListOfTypes.EMPTY; in parseForMethod() 169 this.exceptionTypes = ListOfTypes.EMPTY; in parseForMethod() 194 this.parameterTypes = ListOfTypes.EMPTY; in parseForConstructor() 200 this.exceptionTypes = ListOfTypes.EMPTY; in parseForConstructor()
|
D | ListOfTypes.java | 25 public static final ListOfTypes EMPTY = new ListOfTypes(0); field in ListOfTypes
|
/libcore/ojluni/src/main/java/java/util/ |
D | OptionalInt.java | 49 private static final OptionalInt EMPTY = new OptionalInt(); field in OptionalInt 80 return EMPTY; in empty()
|
D | OptionalLong.java | 49 private static final OptionalLong EMPTY = new OptionalLong(); field in OptionalLong 80 return EMPTY; in empty()
|
D | OptionalDouble.java | 49 private static final OptionalDouble EMPTY = new OptionalDouble(); field in OptionalDouble 80 return EMPTY; in empty()
|
D | Optional.java | 50 private static final Optional<?> EMPTY = new Optional<>(); field in Optional 81 Optional<T> t = (Optional<T>) EMPTY; in empty()
|
/libcore/benchmarks/src/benchmarks/regression/ |
D | StringBenchmark.java | 23 EMPTY(""), enumConstant
|
D | StringToBytesBenchmark.java | 25 EMPTY(""), enumConstant
|
D | StringReplaceAllBenchmark.java | 27 EMPTY(""), enumConstant
|
D | StringReplaceBenchmark.java | 23 EMPTY(""), enumConstant
|
D | BreakIteratorBenchmark.java | 35 EMPTY(Locale.US, ""), enumConstant
|
/libcore/luni/src/test/resources/ |
D | recipt.dtd | 12 <!ELEMENT nutrition EMPTY>
|
/libcore/luni/src/test/resources/systemid/ |
D | recipt.dtd | 12 <!ELEMENT nutrition EMPTY>
|
/libcore/tools/upstream/src/main/java/libcore/ |
D | Lines.java | 31 public static Lines EMPTY = new Lines(Collections.emptyList()); field in Lines
|
/libcore/dom/src/test/resources/ |
D | staff2.dtd | 14 <!ELEMENT rect EMPTY>
|
/libcore/ojluni/annotations/hiddenapi/sun/security/jca/ |
D | ProviderList.java | 130 static final sun.security.jca.ProviderList EMPTY; field in ProviderList 133 EMPTY = null;
|
/libcore/ojluni/src/main/java/java/beans/ |
D | PropertyChangeSupport.java | 507 private static final PropertyChangeListener[] EMPTY = {}; field in PropertyChangeSupport.PropertyChangeListenerMap 521 : EMPTY; in newArray()
|
/libcore/ojluni/src/main/java/sun/security/jca/ |
D | Providers.java | 64 providerList = ProviderList.EMPTY;
|
D | ProviderList.java | 66 static final ProviderList EMPTY = new ProviderList(PC0, true); field in ProviderList
|
/libcore/luni/src/main/java/org/apache/harmony/xml/ |
D | ExpatParser.java | 622 return ClonedAttributes.EMPTY; in cloneAttributes() 640 private static final Attributes EMPTY = new ClonedAttributes(0, 0, 0); field in ExpatParser.ClonedAttributes
|
/libcore/xml/src/main/java/com/android/org/kxml2/io/ |
D | KXmlParser.java | 76 private static final char[] EMPTY = new char[] { 'E', 'M', 'P', 'T', 'Y' }; field in KXmlParser 777 } else if (c == EMPTY[0]) { in readContentSpec() 778 read(EMPTY); in readContentSpec()
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/ |
D | SSLEngineTest.java | 1087 private final ByteBuffer EMPTY = ByteBuffer.allocate(0); 1176 result = engine.wrap(EMPTY, writeBuffer);
|