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

1 2 3 4 5

  /external/icu/android_icu4j/src/main/java/android/icu/impl/
CacheValue.java 44 STRONG,
62 * Returns true if the "strength" is set to {@code STRONG}.
64 public static boolean futureInstancesWillBeStrong() { return strength == Strength.STRONG; }
68 * It holds it directly if the value is null or if the current "strength" is {@code STRONG}.
76 return strength == Strength.STRONG ? new StrongValue<V>(value) : new SoftValue<V>(value);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
CacheValue.java 42 STRONG,
60 * Returns true if the "strength" is set to {@code STRONG}.
62 public static boolean futureInstancesWillBeStrong() { return strength == Strength.STRONG; }
66 * It holds it directly if the value is null or if the current "strength" is {@code STRONG}.
74 return strength == Strength.STRONG ? new StrongValue<V>(value) : new SoftValue<V>(value);
  /external/v8/src/runtime/
runtime-operators.cc 31 isolate, result, Object::Multiply(isolate, lhs, rhs, Strength::STRONG));
55 isolate, result, Object::Divide(isolate, lhs, rhs, Strength::STRONG));
79 isolate, result, Object::Modulus(isolate, lhs, rhs, Strength::STRONG));
103 isolate, result, Object::Add(isolate, lhs, rhs, Strength::STRONG));
127 isolate, result, Object::Subtract(isolate, lhs, rhs, Strength::STRONG));
151 isolate, result, Object::ShiftLeft(isolate, lhs, rhs, Strength::STRONG));
175 isolate, result, Object::ShiftRight(isolate, lhs, rhs, Strength::STRONG));
200 Object::ShiftRightLogical(isolate, lhs, rhs, Strength::STRONG));
224 isolate, result, Object::BitwiseAnd(isolate, lhs, rhs, Strength::STRONG));
248 isolate, result, Object::BitwiseOr(isolate, lhs, rhs, Strength::STRONG));
    [all...]
runtime-object.cc 85 // definite out-of-bounds access to elements, which is a strong indicator
428 Runtime::GetObjectProperty(isolate, object, key, STRONG));
459 KeyedGetObjectProperty(isolate, receiver_obj, key_obj, STRONG));
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/impl/
CacheTest.java 37 CacheValue.setStrength(Strength.STRONG);
38 assertTrue("setStrength(STRONG).futureInstancesWillBeStrong()",
41 assertFalse("strong CacheValue not isNull()", sv.isNull());
42 assertTrue("strong CacheValue get()==same", sv.get() == this);
43 // A strong CacheValue never changes value.
46 assertTrue("strong CacheValue reset==same", sv.resetIfCleared("") == this);
64 CacheValue.setStrength(Strength.STRONG);
  /external/v8/test/unittests/compiler/
typer-unittest.cc 245 TestBinaryArithOp(javascript_.Add(LanguageMode::STRONG, hints_),
253 TestBinaryArithOp(javascript_.Subtract(LanguageMode::STRONG, hints_),
261 TestBinaryArithOp(javascript_.Multiply(LanguageMode::STRONG, hints_),
269 TestBinaryArithOp(javascript_.Divide(LanguageMode::STRONG, hints_),
276 TestBinaryArithOp(javascript_.Modulus(LanguageMode::STRONG, hints_), modulo);
282 TestBinaryBitOp(javascript_.BitwiseOr(LanguageMode::STRONG, hints_), bit_or);
289 TestBinaryBitOp(javascript_.BitwiseAnd(LanguageMode::STRONG, hints_),
297 TestBinaryBitOp(javascript_.BitwiseXor(LanguageMode::STRONG, hints_),
305 TestBinaryBitOp(javascript_.ShiftLeft(LanguageMode::STRONG, hints_),
313 TestBinaryBitOp(javascript_.ShiftRight(LanguageMode::STRONG, hints_)
    [all...]
js-builtin-reducer-unittest.cc 67 const LanguageMode kLanguageModes[] = {SLOPPY, STRICT, STRONG};
js-operator-unittest.cc 17 const LanguageMode kLanguageModes[] = {SLOPPY, STRICT, STRONG};
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/impl/
CacheTest.java 41 CacheValue.setStrength(Strength.STRONG);
42 assertTrue("setStrength(STRONG).futureInstancesWillBeStrong()",
45 assertFalse("strong CacheValue not isNull()", sv.isNull());
46 assertTrue("strong CacheValue get()==same", sv.get() == this);
47 // A strong CacheValue never changes value.
50 assertTrue("strong CacheValue reset==same", sv.resetIfCleared("") == this);
68 CacheValue.setStrength(Strength.STRONG);
  /frameworks/native/opengl/libs/EGL/
egl_display.h 79 mHibernation.incWakeCount(HibernationMachine::STRONG);
82 mHibernation.decWakeCount(HibernationMachine::STRONG);
149 // STRONG refs cancel (inc) or initiate (dec) a hibernation attempt
151 // whether a hibernation attempt will be made. Use STRONG refs only
156 STRONG = 1,
egl_display.cpp 346 mHibernation.incWakeCount(HibernationMachine::STRONG);
354 mHibernation.decWakeCount(HibernationMachine::STRONG);
386 if (strength == STRONG)
412 if (strength == STRONG)
  /external/guava/guava-tests/test/com/google/common/cache/
CacheReferencesTest.java 17 import static com.google.common.cache.LocalCache.Strength.STRONG;
48 .withKeyStrengths(ImmutableSet.of(STRONG, Strength.WEAK))
49 .withValueStrengths(ImmutableSet.of(STRONG, Strength.WEAK, Strength.SOFT));
64 // maintain strong refs so these won't be collected, regardless of cache's key/value strength
155 // a strong reference to that value.
LocalCacheTest.java 154 assertSame(Strength.STRONG, map.keyStrength);
155 assertSame(Strength.STRONG, map.valueStrength);
164 assertSame(EntryFactory.STRONG, map.entryFactory);
349 checkStrength(map, Strength.WEAK, Strength.STRONG);
355 checkStrength(map, Strength.STRONG, Strength.WEAK);
356 assertSame(EntryFactory.STRONG, map.entryFactory);
361 checkStrength(map, Strength.STRONG, Strength.SOFT);
362 assertSame(EntryFactory.STRONG, map.entryFactory);
416 assertSame(EntryFactory.STRONG,
417 EntryFactory.getFactory(Strength.STRONG, false, false))
    [all...]
EmptyCachesTest.java 364 .withKeyStrengths(ImmutableSet.of(Strength.STRONG, Strength.WEAK))
  /external/v8/src/
globals.h 255 STRONG = STRICT_BIT | STRONG_BIT
265 case STRONG:
266 return os << "strong";
290 language_mode == STRONG;
303 // Strong mode behaviour must sometimes be signalled by a two valued enum where
308 STRONG // strong behaviour
313 return strength == Strength::STRONG;
318 return os << (is_strong(strength) ? "strong" : "weak");
323 return is_strong(language_mode) ? Strength::STRONG : Strength::WEAK
    [all...]
  /external/guava/guava/src/com/google/common/collect/
MapMaker.java 133 * Constructs a new {@code MapMaker} instance with default settings, including strong keys, strong
253 * WeakReference} (by default, strong references are used).
272 if (strength != Strength.STRONG) {
273 // STRONG could be used during deserialization.
280 return MoreObjects.firstNonNull(keyStrength, Strength.STRONG);
285 * {@link WeakReference} (by default, strong references are used).
308 * {@link SoftReference} (by default, strong references are used). Softly-referenced objects will
341 if (strength != Strength.STRONG) {
342 // STRONG could be used during deserialization
    [all...]
  /external/v8/src/ic/
ic-state.h 108 return strong_ ? Strength::STRONG : Strength::WEAK;
215 static const ExtraICState kStrongModeState = STRONG
  /external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
CacheBuilder.java 238 * Constructs a new {@code CacheBuilder} instance with default settings, including strong keys,
239 * strong values, and no automatic eviction of any kind.
363 return MoreObjects.firstNonNull(keyStrength, Strength.STRONG);
373 return MoreObjects.firstNonNull(valueStrength, Strength.STRONG);
  /external/guava/guava-tests/test/com/google/common/collect/
ConcurrentHashMultisetTest.java 19 import static com.google.common.collect.MapMakerInternalMap.Strength.STRONG;
364 testIdentityKeyEquality(STRONG);
403 testLogicalKeyEquality(STRONG);
MapMakerInternalMapTest.java 79 assertSame(Strength.STRONG, map.keyStrength);
80 assertSame(Strength.STRONG, map.valueStrength);
88 assertSame(EntryFactory.STRONG, map.entryFactory);
226 checkStrength(map, Strength.WEAK, Strength.STRONG);
232 checkStrength(map, Strength.STRONG, Strength.WEAK);
233 assertSame(EntryFactory.STRONG, map.entryFactory);
238 checkStrength(map, Strength.STRONG, Strength.SOFT);
239 assertSame(EntryFactory.STRONG, map.entryFactory);
    [all...]
  /external/guava/guava/src/com/google/common/cache/
CacheBuilder.java 244 * Constructs a new {@code CacheBuilder} instance with default settings, including strong keys,
245 * strong values, and no automatic eviction of any kind.
505 * WeakReference} (by default, strong references are used).
528 return MoreObjects.firstNonNull(keyStrength, Strength.STRONG);
533 * {@link WeakReference} (by default, strong references are used).
554 * {@link SoftReference} (by default, strong references are used). Softly-referenced objects will
583 return MoreObjects.firstNonNull(valueStrength, Strength.STRONG);
    [all...]
  /external/v8/src/interpreter/
bytecode-array-builder.cc     [all...]
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/common/
foreign_content.js 179 EXITS_FOREIGN_CONTENT[$.STRONG] = true;
html.js 139 STRONG: 'strong',
  /external/v8/src/compiler/
js-operator.cc 552 Name##Operator<STRONG> k##Name##StrongOperator;
582 case STRONG: \
    [all...]

Completed in 424 milliseconds

1 2 3 4 5