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

1 2

  /external/webkit/Source/WebCore/ForwardingHeaders/heap/
Weak.h 3 #include <JavaScriptCore/Weak.h>
  /external/webkit/Source/JavaScriptCore/heap/
Weak.h 37 template <typename T> class Weak : public Handle<T> {
44 Weak()
49 Weak(JSGlobalData& globalData, ExternalType value = ExternalType(), WeakHandleOwner* weakOwner = 0, void* context = 0)
56 Weak(const Weak& other)
64 template <typename U> Weak(const Weak<U>& other)
74 Weak(HashTableDeletedValueTag)
79 ~Weak()
84 void swap(Weak& other
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
ScriptWrappable.h 35 #include <heap/Weak.h>
57 JSC::Weak<JSDOMWrapper> m_wrapper;
JSNodeFilterCondition.h 24 #include <heap/Weak.h>
49 mutable JSC::Weak<JSC::Unknown> m_filter;
DOMWrapperWorld.h 26 #include <heap/Weak.h>
35 typedef HashMap<void*, JSC::Weak<JSDOMWrapper> > DOMObjectWrapperMap;
JSEventListener.h 25 #include <heap/Weak.h>
69 mutable JSC::Weak<JSC::JSObject> m_wrapper;
JSDOMBinding.h 29 #include <heap/Weak.h>
169 world->m_wrappers.set(domObject, JSC::Weak<JSDOMWrapper>(*world->globalData(), wrapper, wrapperOwner(world, domObject), wrapperContext(world, domObject)));
  /external/webkit/Source/WebKit/qt/examples/platformplugin/
qwebkitplatformplugin.h 98 None, Weak, Medium, Strong
  /frameworks/compile/mclinker/unittests/
StaticResolverTest.cpp 151 old_sym->setBinding(ResolveInfo::Weak);
156 ASSERT_EQ( mcld::ResolveInfo::Weak, old_sym->binding());
171 old_sym->setBinding(ResolveInfo::Weak);
184 ASSERT_EQ( mcld::ResolveInfo::Weak, old_sym->binding());
225 old_sym->setBinding(ResolveInfo::Weak);
231 ASSERT_EQ( ResolveInfo::Weak, old_sym->binding());
406 sym->setBinding(ResolveInfo::Weak);
418 ASSERT_EQ( ResolveInfo::Weak, sym->binding() );
SymbolCategoryTest.cpp 54 d->setBinding(ResolveInfo::Weak);
StrSymPoolTest.cpp 206 LDSymbol::Binding binding = LDSymbol::Weak;
  /external/llvm/include/llvm/Support/
ValueHandle.h 50 Weak
145 WeakVH() : ValueHandleBase(Weak) {}
146 WeakVH(Value *P) : ValueHandleBase(Weak, P) {}
148 : ValueHandleBase(Weak, RHS) {}
  /external/webkit/Source/JavaScriptCore/API/
JSClassRef.h 31 #include "Weak.h"
85 JSC::Weak<JSC::JSObject> cachedPrototype;
  /external/webkit/Source/WebKit/qt/Api/
qwebkitplatformplugin.h 103 None, Weak, Medium, Strong
  /frameworks/compile/mclinker/include/mcld/MC/
SymbolCategory.h 107 Weak,
  /frameworks/compile/mclinker/lib/MC/
SymbolCategory.cpp 27 if (ResolveInfo::Weak == pInfo.binding())
28 return Category::Weak;
39 m_pWeak = new Category(Category::Weak);
  /external/webkit/Source/WebCore/bridge/jsc/
BridgeJSC.h 127 Weak<RuntimeObject> m_runtimeObject;
  /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...]
ResolveInfo.cpp 102 if (pBinding == Weak || pBinding == Absolute)
ELFReader.cpp 104 // FIXME: ELF weak alias should be ResolveInfo::Indirect
122 return ResolveInfo::Weak;
  /external/llvm/lib/VMCore/
Value.cpp 602 case Weak:
603 // Weak just goes to null, which will unlink it from the list.
613 // All callbacks, weak references, and assertingVHs should be dropped by now.
659 case Weak:
660 // Weak goes to the new value, which will unlink it from Old's list.
671 // If any new tracking or weak value handles were added while processing the
677 case Weak:
681 llvm_unreachable("A tracking or weak value handle still pointed to the"
  /external/clang/lib/ARCMigrate/
Transforms.h 87 enum AttrKind { Weak, Strong } Kind;
153 /// \brief Determine whether we can add weak to the given type.
TransGCAttrs.cpp 106 else if (Spell == "weak")
107 Kind = MigrationContext::GCAttrOccurrence::Weak;
207 if (Attr.Kind == MigrationContext::GCAttrOccurrence::Weak) {
279 toAttr = "weak";
343 << (Attr.Kind == GCAttrOccurrence::Strong ? "strong" : "weak");
  /external/webkit/Source/JavaScriptCore/interpreter/
RegisterFile.h 35 #include "Weak.h"
155 Weak<JSGlobalObject> m_globalObject; // The global object whose vars are currently stored in the register file.
  /frameworks/compile/mclinker/include/mcld/LD/
ResolveInfo.h 28 * - Binding - Global, Local, Weak
79 Weak = 1,
270 * |length of m_Name|reserved|Symbol|Type |ELF visibility|Local|Com|Def|Dyn|Weak|

Completed in 400 milliseconds

1 2