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

  /external/clang/test/CodeGenCXX/
weak-extern-typeinfo.cpp 4 #define WEAK __attribute__ ((weak))
6 class WEAK A {
  /frameworks/compile/linkloader/lib/
ELFSymbol.cpp 54 CASE(WEAK)
  /frameworks/native/opengl/libs/EGL/
egl_display.h 130 bool enter() { return mHibernation.incWakeCount(HibernationMachine::WEAK); }
131 void leave() { return mHibernation.decWakeCount(HibernationMachine::WEAK); }
148 // the next time the wakecount reaches zero. WEAK refs don't affect
153 WEAK = 0,
  /external/v8/src/
global-handles.cc 47 // FREE -> NORMAL <-> WEAK -> PENDING -> NEAR_DEATH -> { NORMAL, WEAK, FREE }
51 WEAK, // Flagged as weak but not yet finalized.
52 PENDING, // Has been recognized as only reachable by weak handles.
66 // TODO(1428): if it's a weak handle we should have invoked its callback.
135 bool IsWeak() const { return state_ == WEAK; }
142 return state_ == WEAK || state_ == PENDING || state_ == NEAR_DEATH;
146 ASSERT(state_ == WEAK);
194 state_ = WEAK;
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
StaticResolver.h 37 WEAK, /* override by symbol weak undefined. */
39 DEFW, /* override by symbol weak defined. */
41 DEFWD, /* override by symbol dynamic weak defined. */
43 MDEFWD, /* mark symbol dynamic weak defined. */
45 DUNDW, /* oevrride dynamic defined symbol by weak undefined one. */
64 * w -> weak
  /external/guava/guava-tests/test/com/google/common/cache/
CacheReferencesTest.java 49 .withKeyStrengths(ImmutableSet.of(STRONG, Strength.WEAK))
50 .withValueStrengths(ImmutableSet.of(STRONG, Strength.WEAK, Strength.SOFT));
EmptyCachesTest.java 362 .withKeyStrengths(ImmutableSet.of(Strength.STRONG, Strength.WEAK))
LocalCacheTest.java 315 checkStrength(map, Strength.WEAK, Strength.STRONG);
316 assertSame(EntryFactory.WEAK, map.entryFactory);
321 checkStrength(map, Strength.STRONG, Strength.WEAK);
390 assertSame(EntryFactory.WEAK,
391 EntryFactory.getFactory(Strength.WEAK, false, false));
393 EntryFactory.getFactory(Strength.WEAK, true, false));
395 EntryFactory.getFactory(Strength.WEAK, false, true));
397 EntryFactory.getFactory(Strength.WEAK, true, true));
    [all...]
PopulatedCachesTest.java 312 // of the values gets evicted. With weak keys, we use identity equality, which means using
317 .withKeyStrengths(ImmutableSet.of(Strength.STRONG, Strength.WEAK))
341 * Returns the entries that were added to the map, so they won't fall out of a map with weak or
  /frameworks/compile/mclinker/lib/LD/
StaticResolver.cpp 45 /* w_U */ {NOACT, NOACT, NOACT, WEAK, NOACT, NOACT, DUND, DUNDW, NOACT, NOACT, NOACT, REFC },
59 // * when a dynamic defined symbol meets a dynamic weak defined symbol, act
63 // * when a dynamic defined symbol meets a undefined symbol or a weak
65 // * When a undefined symbol meets a dynamic defined symbol or a weak
67 // * When a common symbol meets a weak common symbol, adjust the size of
97 case WEAK: /* override by symbol weak undefined. */
99 case DEFW: /* override by symbol weak defined. */
101 case DEFWD: /* override by symbol dynamic weak defined. */
109 case MDEFWD: { /* mark symbol dynamic weak defined. *
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ConcurrentHashMultisetTest.java 21 import static com.google.common.collect.MapMakerInternalMap.Strength.WEAK;
352 testIdentityKeyEquality(WEAK);
395 testLogicalKeyEquality(WEAK);
MapMakerInternalMapTest.java 245 checkStrength(map, Strength.WEAK, Strength.STRONG);
246 assertSame(EntryFactory.WEAK, map.entryFactory);
258 checkStrength(map, Strength.STRONG, Strength.WEAK);
    [all...]
  /external/guava/guava/src/com/google/common/cache/
CacheBuilder.java 56 * <li>keys automatically wrapped in {@linkplain WeakReference weak} references
57 * <li>values automatically wrapped in {@linkplain WeakReference weak} or
462 return setKeyStrength(Strength.WEAK);
488 * <p>Weak values will be garbage collected once they are weakly reachable. This makes them a poor
502 return setValueStrength(Strength.WEAK);
    [all...]
LocalCache.java 208 * soft/weak entries.
404 WEAK {
492 WEAK {
558 WEAK, WEAK_ACCESS, WEAK_WRITE, WEAK_ACCESS_WRITE,
563 int flags = ((keyStrength == Strength.WEAK) ? WEAK_MASK : 0)
    [all...]
  /external/guava/guava/src/com/google/common/collect/
MapMaker.java 51 * <li>keys or values automatically wrapped in {@linkplain WeakReference weak} or {@linkplain
91 * <p>If soft or weak references were requested, it is possible for a key or value present in the
100 * used soft or weak references, the entries are reconstructed as they were, but it's not unlikely
306 return setKeyStrength(Strength.WEAK);
311 * weak keys, and they waste memory by keeping unreachable elements in the map. If your goal is to
364 * <p>Weak values will be garbage collected once they are weakly reachable. This makes them a poor
380 return setValueStrength(Strength.WEAK);
    [all...]
MapMakerInternalMap.java 183 * soft/weak entries.
322 WEAK {
461 WEAK {
528 { WEAK, WEAK_EXPIRABLE, WEAK_EVICTABLE, WEAK_EXPIRABLE_EVICTABLE }
958 * replace "Strong" with "Soft" or "Weak" within the pasted text. The primary difference is that
959 * strong entries store the key reference directly while soft and weak entries delegate to their
    [all...]
  /frameworks/av/media/libstagefright/codecs/mp3dec/src/asm/
pvmp3_polyphase_filter_window_arm.s 33 IMPORT ||Lib$$Request$$armlib|| [WEAK]
34 IMPORT ||Lib$$Request$$cpplib|| [WEAK]
pvmp3_mdct_18_arm.s 33 IMPORT ||Lib$$Request$$armlib|| [WEAK]
34 IMPORT ||Lib$$Request$$cpplib|| [WEAK]
  /prebuilts/tools/common/eclipse/
org.eclipse.equinox.common_3.4.0.v20080421-2006.jar 
org.eclipse.equinox.common_3.6.0.v20100503.jar 
  /external/clang/include/clang/AST/
Expr.h     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.common_3.6.0.v20100503.jar 
com.ibm.icu_4.2.1.v20100412.jar 
  /prebuilts/tools/common/guava-tools/
guava-10.0.1.jar 
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 

Completed in 384 milliseconds