HomeSort by relevance Sort by last modified time
    Searched refs:instance (Results 101 - 125 of 966) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium/base/
lazy_instance.cc 16 // Try to create the instance, if we're the first, will go from EMPTY
20 // Caller must create instance
28 // Someone else created the instance.
32 void LazyInstanceHelper::CompleteInstance(void* instance, void (*dtor)(void*)) {
36 // Instance is created, go from CREATING to CREATED.
41 base::AtExitManager::RegisterCallback(dtor, instance);
  /external/guava/guava-gwt/src/com/google/common/collect/
EmptyImmutableListMultimap_CustomFieldSerializer.java 31 EmptyImmutableListMultimap instance) {
36 return EmptyImmutableListMultimap.INSTANCE;
40 EmptyImmutableListMultimap instance) {
EmptyImmutableList_CustomFieldSerializer.java 30 EmptyImmutableList instance) {
35 return EmptyImmutableList.INSTANCE;
39 EmptyImmutableList instance) {
EmptyImmutableMap_CustomFieldSerializer.java 31 EmptyImmutableMap instance) {
36 return EmptyImmutableMap.INSTANCE;
40 EmptyImmutableMap instance) {
EmptyImmutableMultiset_CustomFieldSerializer.java 31 EmptyImmutableMultiset instance) {
36 return EmptyImmutableMultiset.INSTANCE;
40 EmptyImmutableMultiset instance) {
EmptyImmutableSetMultimap_CustomFieldSerializer.java 31 EmptyImmutableSetMultimap instance) {
36 return EmptyImmutableSetMultimap.INSTANCE;
40 EmptyImmutableSetMultimap instance) {
EmptyImmutableSet_CustomFieldSerializer.java 30 EmptyImmutableSet instance) {
35 return EmptyImmutableSet.INSTANCE;
39 EmptyImmutableSet instance) {
NaturalOrdering_CustomFieldSerializer.java 30 NaturalOrdering instance) {
35 return NaturalOrdering.INSTANCE;
39 NaturalOrdering instance) {
ReverseNaturalOrdering_CustomFieldSerializer.java 31 ReverseNaturalOrdering instance) {
36 return ReverseNaturalOrdering.INSTANCE;
40 ReverseNaturalOrdering instance) {
UsingToStringOrdering_CustomFieldSerializer.java 30 UsingToStringOrdering instance) {
35 return UsingToStringOrdering.INSTANCE;
39 UsingToStringOrdering instance) {
  /external/llvm/include/llvm/MC/
MCLabel.h 27 // Instance - the instance number of this Directional Local Label
28 unsigned Instance;
32 MCLabel(unsigned instance)
33 : Instance(instance) {}
38 /// getInstance - Get the current instance of this Directional Local Label.
39 unsigned getInstance() const { return Instance; }
41 /// incInstance - Increment the current instance of this Directional Local
43 unsigned incInstance() { return ++Instance; }
    [all...]
  /external/smack/src/org/jivesoftware/smack/util/
Base64FileUrlEncoder.java 30 private static Base64FileUrlEncoder instance = new Base64FileUrlEncoder(); field in class:Base64FileUrlEncoder
37 return instance;
  /external/webkit/Source/JavaScriptCore/wtf/qt/
MainThreadQt.cpp 51 moveToThread(QCoreApplication::instance()->thread());
72 return QThread::currentThread() == QCoreApplication::instance()->thread();
  /external/webkit/Source/WebCore/bridge/c/
CRuntimeObject.cpp 40 CRuntimeObject::CRuntimeObject(ExecState* exec, JSGlobalObject* globalObject, PassRefPtr<CInstance> instance)
43 : RuntimeObject(exec, globalObject, WebCore::deprecatedGetDOMStructure<CRuntimeObject>(exec), instance)
  /external/webkit/Source/WebCore/bridge/jni/jsc/
JavaRuntimeObject.cpp 38 JavaRuntimeObject::JavaRuntimeObject(ExecState* exec, JSGlobalObject* globalObject, PassRefPtr<JavaInstance> instance)
41 : RuntimeObject(exec, globalObject, WebCore::deprecatedGetDOMStructure<JavaRuntimeObject>(exec), instance)
JavaFieldJSC.cpp 68 jvalue JavaField::dispatchValueFromInstance(ExecState* exec, const JavaInstance* instance, const char* name, const char* sig, JavaType returnType) const
70 jobject jinstance = instance->javaInstance();
80 RootObject* rootObject = instance->rootObject();
95 JSValue JavaField::valueFromInstance(ExecState* exec, const Instance* i) const
97 const JavaInstance* instance = static_cast<const JavaInstance*>(i); local
105 jvalue result = dispatchValueFromInstance(exec, instance, "get", "(Ljava/lang/Object;)Ljava/lang/Object;", JavaTypeObject);
113 jsresult = JavaArray::convertJObjectToArray(exec, anObject, arrayType, instance->rootObject());
115 jsresult = JavaInstance::create(anObject, instance->rootObject())->createRuntimeObject(exec);
120 jsresult = jsBoolean(dispatchValueFromInstance(exec, instance, "getBoolean", "(Ljava/lang/Object;)Z", JavaTypeBoolean).z);
130 jvalue result = dispatchValueFromInstance(exec, instance, "getInt", "(Ljava/lang/Object;)I", JavaTypeInt)
183 const JavaInstance* instance = static_cast<const JavaInstance*>(i); local
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/common/
memoized.py 53 def __get__(self, instance, owner):
55 return functools.partial(self.__call__, instance)
  /external/webrtc/src/system_wrappers/interface/
static_instance.h 40 static T* volatile instance = NULL; local
70 instance = T::CreateInstance();
72 T* old_instance = instance;
73 instance = NULL;
96 // The instance has been destroyed by some other thread. Rollback.
102 if (instance == NULL) {
113 // updated just yet (that's done when the instance is created).
126 // Create instance and let whichever thread finishes first assign its
127 // local copy to the global instance. All other threads reclaim their
131 InterlockedExchangePointer(reinterpret_cast<void* volatile*>(&instance),
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
GaneshRenderer.cpp 46 ClassTracker::instance()->increment("GaneshRenderer");
53 ClassTracker::instance()->decrement("GaneshRenderer");
59 GaneshContext* ganesh = GaneshContext::instance();
61 TransferQueue* tileQueue = TilesManager::instance()->transferQueue();
91 GaneshContext::instance()->flush();
95 TransferQueue* tileQueue = TilesManager::instance()->transferQueue();
  /external/chromium/chrome/common/
json_schema_validator_unittest_base.cc 86 scoped_ptr<ListValue> instance(LoadList("complex_instance.json"));
89 ASSERT_TRUE(instance.get());
91 ExpectValid(TEST_SOURCE, instance.get(), schema.get(), NULL);
92 instance->Remove(instance->GetSize() - 1, NULL);
93 ExpectValid(TEST_SOURCE, instance.get(), schema.get(), NULL);
94 instance->Append(new DictionaryValue());
95 ExpectNotValid(TEST_SOURCE, instance.get(), schema.get(), NULL, "1",
98 instance->Remove(instance->GetSize() - 1, NULL)
    [all...]
json_schema_validator.h 121 // This setting defaults to false: all items in an instance list or object
139 // Validates a JSON value. Returns true if the instance is valid, false
142 bool Validate(Value* instance);
148 // path paramater is the path to |instance| from the root of the instance tree
151 // Validates any instance node against any schema node. This is called for
152 // every node in the instance tree, and it just decides which of the more
154 void Validate(Value* instance, DictionaryValue* schema,
159 void ValidateChoices(Value* instance, ListValue* choices,
163 void ValidateEnum(Value* instance, ListValue* choices
    [all...]
  /external/valgrind/main/drd/tests/
thread_name.stderr.exp 3 thread_func instance 1
5 Thread 2 (thread_func instance 1):
12 thread_func instance 2
14 Thread 3 (thread_func instance 2):
21 thread_func instance 3
23 Thread 4 (thread_func instance 3):
30 thread_func instance 4
32 Thread 5 (thread_func instance 4):
39 thread_func instance 5
41 Thread 6 (thread_func instance 5)
    [all...]
  /external/webkit/Tools/DumpRenderTree/unix/TestNetscapePlugin/
TestNetscapePlugin.cpp 57 NPP instance,
65 PluginObject* obj = (PluginObject*)browser->createobject(instance, getPluginClass());
66 instance->pdata = obj;
88 testNPRuntime(instance);
92 pluginLog(instance, "src: %s", argv[i]);
103 browser->getvalue(instance, NPNVprivateModeBool, (void *)&obj->cachedPrivateBrowsingMode);
105 obj->pluginTest = PluginTest::create(instance, testIdentifier);
114 webkit_test_plugin_destroy_instance(NPP instance, NPSavedData** save)
116 PluginObject* obj = static_cast<PluginObject*>(instance->pdata);
133 pluginLog(instance, "NPP_Destroy")
    [all...]
  /external/webkit/Source/WebCore/manual-tests/NPN_Invoke/
main.c 40 NPError NPP_New(NPMIMEType pluginType, NPP instance, uint16_t mode, int16_t argc, char* argn[], char* argv[], NPSavedData* saved);
41 NPError NPP_Destroy(NPP instance, NPSavedData** save);
42 NPError NPP_SetWindow(NPP instance, NPWindow* window);
43 NPError NPP_NewStream(NPP instance, NPMIMEType type, NPStream* stream, NPBool seekable, uint16_t* stype);
44 NPError NPP_DestroyStream(NPP instance, NPStream* stream, NPReason reason);
45 int32_t NPP_WriteReady(NPP instance, NPStream* stream);
46 int32_t NPP_Write(NPP instance, NPStream* stream, int32_t offset, int32_t len, void* buffer);
47 void NPP_StreamAsFile(NPP instance, NPStream* stream, const char* fname);
48 void NPP_Print(NPP instance, NPPrint* platformPrint);
49 int16_t NPP_HandleEvent(NPP instance, void* event)
    [all...]
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
main.cpp 131 NPError NPP_New(NPMIMEType pluginType, NPP instance, uint16_t mode, int16_t argc, char *argn[], char *argv[], NPSavedData *saved)
140 if (browser->getvalue(instance, NPNVsupportsCoreGraphicsBool, &supportsCoreGraphics) != NPERR_NO_ERROR)
149 if (browser->getvalue(instance, NPNVsupportsCoreAnimationBool, &supportsCoreAnimation) != NPERR_NO_ERROR)
159 if (browser->getvalue(instance, NPNVsupportsCarbonBool, &supportsCarbon) != NPERR_NO_ERROR)
163 if (browser->getvalue(instance, NPNVsupportsCocoaBool, &supportsCocoa) != NPERR_NO_ERROR)
176 browser->setvalue(instance, NPPVpluginEventModel, (void *)eventModel);
179 PluginObject* obj = (PluginObject*)browser->createobject(instance, getPluginClass());
180 instance->pdata = obj;
216 testNPRuntime(instance);
222 pluginLog(instance, "src: %s", argv[i])
    [all...]

Completed in 562 milliseconds

1 2 3 45 6 7 8 91011>>