/external/webkit/Source/WebCore/bridge/jsc/ |
D | BridgeJSC.cpp | 55 Instance::Instance(PassRefPtr<RootObject> rootObject) in Instance() function in JSC::Bindings::Instance 62 Instance::~Instance() in ~Instance() 69 void Instance::setDidExecuteFunction(KJSDidExecuteFunctionPtr func) in setDidExecuteFunction() 74 KJSDidExecuteFunctionPtr Instance::didExecuteFunction() in didExecuteFunction() 79 void Instance::begin() in begin() 84 void Instance::end() in end() 89 JSObject* Instance::createRuntimeObject(ExecState* exec) in createRuntimeObject() 103 RuntimeObject* Instance::newRuntimeObject(ExecState* exec) in newRuntimeObject() 112 void Instance::willInvalidateRuntimeObject() in willInvalidateRuntimeObject() 117 RootObject* Instance::rootObject() const in rootObject()
|
D | BridgeJSC.h | 48 class Instance; variable 57 virtual JSValue valueFromInstance(ExecState*, const Instance*) const = 0; 58 virtual void setValueToInstance(ExecState*, const Instance*, JSValue) const = 0; 67 virtual MethodList methodsNamed(const Identifier&, Instance*) const = 0; 68 virtual Field* fieldNamed(const Identifier&, Instance*) const = 0; 69 … virtual JSValue fallbackObject(ExecState*, Instance*, const Identifier&) { return jsUndefined(); } in fallbackObject() argument 76 class Instance : public RefCounted<Instance> { 78 Instance(PassRefPtr<RootObject>); 113 virtual ~Instance();
|
/external/eigen/bench/btl/generic_bench/ |
D | btl.hh | 188 Instance.m_selectedActionNames = config[i+1].split(":"); in BtlConfig() 199 Instance.tries = atoi(config[i+1].c_str()); in BtlConfig() 205 Instance.overwriteResults = true; in BtlConfig() 209 Instance.checkResults = false; in BtlConfig() 213 Instance.realclock = true; in BtlConfig() 223 if (Instance.m_selectedActionNames.empty()) in skipAction() 227 for (int i=0; i<Instance.m_selectedActionNames.size(); ++i) in skipAction() 228 if (name.contains(Instance.m_selectedActionNames[i])) in skipAction() 234 static BtlConfig Instance; member in BtlConfig 245 BtlConfig BtlConfig::Instance
|
/external/webkit/Source/WebCore/bridge/ |
D | runtime_object.cpp | 41 …ject(ExecState*, JSGlobalObject* globalObject, Structure* structure, PassRefPtr<Instance> instance) in RuntimeObject() 63 RefPtr<Instance> instance = thisObj->m_instance; in fallbackObjectGetter() 81 RefPtr<Instance> instance = thisObj->m_instance; in fieldGetter() 100 RefPtr<Instance> instance = thisObj->m_instance; in methodGetter() 121 RefPtr<Instance> instance = m_instance; in getOwnPropertySlot() 166 RefPtr<Instance> instance = m_instance; in getOwnPropertyDescriptor() 215 RefPtr<Instance> instance = m_instance; in put() 239 RefPtr<Instance> instance = m_instance; in defaultValue() 250 RefPtr<Instance> instance(static_cast<RuntimeObject*>(exec->callee())->getInternalInstance()); in callRuntimeObject() 262 RefPtr<Instance> instance = m_instance; in getCallData() [all …]
|
D | runtime_object.h | 38 RuntimeObject(ExecState*, JSGlobalObject*, Structure*, PassRefPtr<Instance>); 53 Instance* getInternalInstance() const { return m_instance.get(); } in getInternalInstance() 77 RefPtr<Instance> m_instance;
|
/external/llvm/include/llvm/MC/ |
D | MCLabel.h | 28 unsigned Instance; variable 33 : Instance(instance) {} in MCLabel() 39 unsigned getInstance() const { return Instance; } in getInstance() 43 unsigned incInstance() { return ++Instance; } in incInstance()
|
/external/webkit/Source/WebCore/bridge/qt/ |
D | qt_pixmapruntime.cpp | 47 virtual MethodList methodsNamed(const Identifier&, Instance*) const; 48 virtual Field* fieldNamed(const Identifier&, Instance*) const; 55 virtual JSValue valueFromInstance(ExecState*, const Instance* instance) const in valueFromInstance() 59 virtual void setValueToInstance(ExecState*, const Instance*, JSValue) const {} in setValueToInstance() argument 65 virtual JSValue valueFromInstance(ExecState*, const Instance* instance) const in valueFromInstance() 69 virtual void setValueToInstance(ExecState*, const Instance*, JSValue) const {} in setValueToInstance() argument 149 QtPixmapRuntimeObject(ExecState*, JSGlobalObject*, PassRefPtr<Instance>); 162 …QtPixmapRuntimeObject(ExecState* exec, JSGlobalObject* globalObject, PassRefPtr<Instance> instance) in QtPixmapRuntimeObject() 196 MethodList QtPixmapClass::methodsNamed(const Identifier& identifier, Instance*) const in methodsNamed() 208 Field* QtPixmapClass::fieldNamed(const Identifier& identifier, Instance*) const in fieldNamed() [all …]
|
D | qt_class.h | 44 virtual MethodList methodsNamed(const Identifier&, Instance*) const; 45 virtual Field* fieldNamed(const Identifier&, Instance*) const; 47 virtual JSValue fallbackObject(ExecState*, Instance*, const Identifier&);
|
/external/clang/test/Sema/ |
D | overloaded-func-transparent-union.c | 13 } Instance __attribute__((transparent_union)); typedef 15 __attribute__((overloadable)) void Class_Init(Instance this, char *str, void *str2) { in Class_Init() 20 __attribute__((overloadable)) void Class_Init(Instance this, char *str) { in Class_Init()
|
D | nonnull.c | 10 } Instance __attribute__((transparent_union)); typedef 12 __attribute__((nonnull(1))) void Class_init(Instance this, char *str) { in Class_init()
|
/external/webkit/Source/WebCore/bridge/objc/ |
D | objc_class.h | 43 virtual MethodList methodsNamed(const Identifier&, Instance *instance) const; 44 virtual Field *fieldNamed(const Identifier&, Instance *instance) const; 46 …virtual JSValue fallbackObject(ExecState *exec, Instance *instance, const Identifier &propertyName…
|
/external/clang/test/SemaCXX/ |
D | vtable-instantiation.cc | 36 static Target<T> Instance; member 40 Target<T> Provider<T>::Instance; // expected-note{{in instantiation of}} member in PR9325::Provider<T> 44 Target<int*>* traits = &Provider<int*>::Instance; in f()
|
/external/clang/lib/Sema/ |
D | SemaTemplateInstantiateDecl.cpp | 3208 ClassTemplateDecl *Instance) { in isInstantiationOf() argument 3212 Instance = Instance->getCanonicalDecl(); in isInstantiationOf() 3213 if (Pattern == Instance) return true; in isInstantiationOf() 3214 Instance = Instance->getInstantiatedFromMemberTemplate(); in isInstantiationOf() 3215 } while (Instance); in isInstantiationOf() 3221 FunctionTemplateDecl *Instance) { in isInstantiationOf() argument 3225 Instance = Instance->getCanonicalDecl(); in isInstantiationOf() 3226 if (Pattern == Instance) return true; in isInstantiationOf() 3227 Instance = Instance->getInstantiatedFromMemberTemplate(); in isInstantiationOf() 3228 } while (Instance); in isInstantiationOf() [all …]
|
/external/clang/test/Analysis/ |
D | objc_invalidation.m | 176 // expected-warning@-2 {{Instance variable Ivar1 needs to be invalidated}} 177 // expected-warning@-3 {{Instance variable MultipleProtocols needs to be invalidated}} 178 // expected-warning@-4 {{Instance variable MultInheritance needs to be invalidated}} 180 // expected-warning@-6 {{Instance variable _Ivar3 needs to be invalidated}} 181 // expected-warning@-7 {{Instance variable _Ivar4 needs to be invalidated}} 182 // expected-warning@-8 {{Instance variable Ivar5 needs to be invalidated or set to nil}} 183 // expected-warning@-9 {{Instance variable Ivar13 needs to be invalidated or set to nil}} 263 // expected-warning@-2 {{Instance variable Ivar1 needs to be invalidated; no invalidation method is… 273 // expected-warning@-2 {{Instance variable Ivar1 needs to be invalidated; no invalidation method is… 284 // expected-warning@-2 {{Instance variable _foo1 needs to be invalidated; no invalidation method is… [all …]
|
D | unused-ivars.m | 19 int x; // expected-warning {{Instance variable 'x' in class 'TestA' is never used}} 100 // diagnostic: "Instance variable '' in class..." 105 …unsigned bitfield:1; // expected-warning {{Instance variable 'bitfield' in class 'RDar8481311' is …
|
/external/clang/include/clang/Frontend/ |
D | FrontendAction.h | 39 CompilerInstance *Instance; variable 107 assert(Instance && "Compiler instance not registered!"); in getCompilerInstance() 108 return *Instance; in getCompilerInstance() 111 void setCompilerInstance(CompilerInstance *Value) { Instance = Value; } in setCompilerInstance()
|
/external/webkit/Source/WebCore/bindings/js/ |
D | ScriptInstance.h | 39 typedef RefPtr<JSC::Bindings::Instance> ScriptInstance; 40 typedef PassRefPtr<JSC::Bindings::Instance> PassScriptInstance;
|
D | JSPluginElementFunctions.cpp | 43 Instance* pluginInstance(Node* node) in pluginInstance() 52 Instance* instance = plugInElement->getInstance().get(); in pluginInstance() 96 Instance* instance = pluginElement->getInstance().get(); in pluginScriptObject() 187 Instance* instance = pluginInstance(element->impl()); in runtimeObjectGetCallData()
|
D | JSPluginElementFunctions.h | 27 class Instance; variable 38 JSC::Bindings::Instance* pluginInstance(Node*);
|
/external/webkit/Source/WebCore/bridge/jni/jsc/ |
D | JavaClassJSC.h | 44 virtual MethodList methodsNamed(const Identifier&, Instance*) const; 45 virtual Field* fieldNamed(const Identifier&, Instance*) const;
|
D | JavaFieldJSC.h | 46 virtual JSValue valueFromInstance(ExecState*, const Instance*) const; 47 virtual void setValueToInstance(ExecState*, const Instance*, JSValue) const;
|
/external/webkit/Source/WebCore/bridge/c/ |
D | c_class.h | 46 virtual MethodList methodsNamed(const Identifier&, Instance*) const; 47 virtual Field* fieldNamed(const Identifier&, Instance*) const;
|
D | c_runtime.h | 41 virtual JSValue valueFromInstance(ExecState*, const Instance*) const; 42 virtual void setValueToInstance(ExecState*, const Instance*, JSValue) const;
|
D | c_runtime.cpp | 42 JSValue CField::valueFromInstance(ExecState* exec, const Instance* inst) const in valueFromInstance() 65 void CField::setValueToInstance(ExecState *exec, const Instance *inst, JSValue aValue) const in setValueToInstance()
|
/external/eigen/bench/btl/generic_bench/timers/ |
D | portable_perf_analyzer.hh | 56 for (int i=1; i<BtlConfig::Instance.tries; ++i) in eval_mflops() 67 if (BtlConfig::Instance.checkResults && size<128) in eval_mflops()
|