HomeSort by relevance Sort by last modified time
    Searched refs:IMMUTABLE (Results 1 - 25 of 58) sorted by null

1 2 3

  /external/protobuf/java/core/src/main/java/com/google/protobuf/
MutabilityOracle.java 37 static final MutabilityOracle IMMUTABLE = new MutabilityOracle() {
Extension.java 56 IMMUTABLE,
63 return ExtensionType.IMMUTABLE;
ExtensionRegistry.java 89 * could violate the expectation that message objects are immutable, since the
144 * Find an extension for immutable APIs by fully-qualified field name,
177 * Find an extension by containing type and field number for immutable APIs.
219 * Find all extensions for immutable APIs by fully-qualified name of
238 if (extension.getExtensionType() != Extension.ExtensionType.IMMUTABLE &&
269 add(info, Extension.ExtensionType.IMMUTABLE);
281 Extension.ExtensionType.IMMUTABLE);
338 case IMMUTABLE:
  /tools/loganalysis/tests/src/com/android/loganalysis/util/config/
OptionUpdateRuleTest.java 57 assertEquals(UPDATE, OptionUpdateRule.IMMUTABLE.update(OPTION_NAME, null, UPDATE));
59 OptionUpdateRule.IMMUTABLE.update(OPTION_NAME, CURRENT, UPDATE);
60 fail("ConfigurationException not thrown when updating an IMMUTABLE option");
ArgsOptionParserTest.java 191 @Option(name = "immutable", updateRule = OptionUpdateRule.IMMUTABLE)
194 @Option(name = "null-immutable", updateRule = OptionUpdateRule.IMMUTABLE)
246 parser.parse(new String[] {"--immutable", update});
247 fail("ConfigurationException not thrown when updating an IMMUTABLE option");
253 parser.parse(new String[] {"--null-immutable", update});
257 parser.parse(new String[] {"--null-immutable", update});
258 fail("ConfigurationException not thrown when updating an IMMUTABLE option");
  /tools/tradefederation/core/tests/src/com/android/tradefed/config/
OptionUpdateRuleTest.java 54 assertTrue(OptionUpdateRule.IMMUTABLE.shouldUpdate(OPTION_NAME, null, UPDATE));
56 OptionUpdateRule.IMMUTABLE.shouldUpdate(OPTION_NAME, CURRENT, UPDATE);
57 fail("ConfigurationException not thrown when updating an IMMUTABLE option");
ArgsOptionParserTest.java 207 @Option(name = "immutable", updateRule = OptionUpdateRule.IMMUTABLE)
210 @Option(name = "null-immutable", updateRule = OptionUpdateRule.IMMUTABLE)
264 parser.parse(new String[] {"--immutable", update});
265 fail("ConfigurationException not thrown when updating an IMMUTABLE option");
271 parser.parse(new String[] {"--null-immutable", update});
275 parser.parse(new String[] {"--null-immutable", update});
276 fail("ConfigurationException not thrown when updating an IMMUTABLE option");
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/config/
OptionUpdateRule.java 65 IMMUTABLE {
72 "Attempted to update immutable value (%s) for option \"%s\"", optionName,
  /libcore/ojluni/src/main/java/java/util/concurrent/
CopyOnWriteArraySet.java 427 * <p>The {@code Spliterator} reports {@link Spliterator#IMMUTABLE},
440 (al.getArray(), Spliterator.IMMUTABLE | Spliterator.DISTINCT);
ThreadLocalRandom.java 763 Spliterator.NONNULL | Spliterator.IMMUTABLE);
818 Spliterator.NONNULL | Spliterator.IMMUTABLE);
    [all...]
CopyOnWriteArrayList.java     [all...]
  /tools/loganalysis/src/com/android/loganalysis/util/config/
OptionUpdateRule.java 81 IMMUTABLE {
87 "Attempted to update immutable value (%s) for option \"%s\"", optionName,
  /libcore/ojluni/src/main/java/java/util/
Random.java     [all...]
SplittableRandom.java     [all...]
Spliterator.java 52 * {@link #IMMUTABLE}, {@link #CONCURRENT}, and {@link #SUBSIZED}. These may
65 * <p><a name="binding">A Spliterator that does not report {@code IMMUTABLE} or
148 * {@link java.util.concurrent.CopyOnWriteArrayList} is an immutable source.
150 * {@code IMMUTABLE}.</li>
184 * private final Object[] elements; // immutable after construction
239 * return ORDERED | SIZED | IMMUTABLE | SUBSIZED;
415 * {@link #NONNULL}, {@link #IMMUTABLE}, {@link #CONCURRENT},
534 * that does not report {@code IMMUTABLE} or {@code CONCURRENT} is expected
539 public static final int IMMUTABLE = 0x00000400;
    [all...]
Arrays.java     [all...]
  /libcore/ojluni/src/main/java/java/util/stream/
DoubleStream.java     [all...]
Streams.java 127 Spliterator.IMMUTABLE | Spliterator.NONNULL |
251 Spliterator.IMMUTABLE | Spliterator.NONNULL |
325 Spliterator.ORDERED | Spliterator.IMMUTABLE;
IntStream.java 760 Spliterator.ORDERED | Spliterator.IMMUTABLE | Spliterator.NONNULL), false);
    [all...]
LongStream.java 752 Spliterator.ORDERED | Spliterator.IMMUTABLE | Spliterator.NONNULL), false);
    [all...]
Stream.java     [all...]
  /libcore/ojluni/src/main/java/java/util/jar/
JarFile.java 273 Spliterator.IMMUTABLE | Spliterator.NONNULL), false);
  /libcore/ojluni/src/main/java/java/util/zip/
ZipFile.java 581 Spliterator.IMMUTABLE | Spliterator.NONNULL), false);
  /libcore/ojluni/src/test/java/util/stream/boottest/java/util/stream/
StreamOpFlagsTest.java 309 List<Integer> others = Arrays.asList(Spliterator.NONNULL, Spliterator.IMMUTABLE,
  /external/v8/src/
factory.h 446 Handle<HeapNumber> NewHeapNumber(double value, MutableMode mode = IMMUTABLE,
453 uint64_t bits, MutableMode mode = IMMUTABLE,
    [all...]

Completed in 562 milliseconds

1 2 3