/external/lzma/CPP/7zip/Archive/ |
Archive.def | 2 CreateObject PRIVATE
6 CreateObject PRIVATE
|
Archive2.def | 2 CreateObject PRIVATE
6 CreateObject PRIVATE
|
DllExports2.cpp | 53 STDAPI CreateObject(const GUID *clsid, const GUID *iid, void **outObject)
|
/external/chromium_org/ppapi/proxy/ |
ppp_instance_private_proxy_unittest.cc | 51 // Grab the plugin-side proxy for PPB_Var_Deprecated (for CreateObject). 60 // The 1 ref we got from CreateObject will be passed to the host. We want to 72 // |PPB_Var_Deprecated->CreateObject| for a mock |Deallocate| method. 96 plugin_var_deprecated_if()->CreateObject(kInstance, 111 PP_Var CreateObject(PP_Instance /*instance*/, 132 &CreateObject
|
/external/chromium/base/memory/ |
weak_ptr_unittest.cc | 24 NewRunnableFunction(OffThreadObjectCreator::CreateObject, &result)); 30 static void CreateObject(T** result) {
|
/external/chromium_org/content/test/plugin/ |
plugin_npobject_identity_test.cc | 69 NPObject* thingy = HostFunctions()->createobject(id(), GetNPThingyClass());
|
plugin_delete_plugin_in_deallocate_test.cc | 91 npobject_ = HostFunctions()->createobject(
|
/external/chromium_org/ppapi/c/dev/ |
ppb_var_deprecated.h | 199 * true and sets *object_data to the value passed to CreateObject provided 234 * return CreateObject(&point_class, new Point(x, y)); 237 struct PP_Var (*CreateObject)(PP_Instance instance, 241 // Like CreateObject but takes a module. This will be deleted when all callers 242 // can be changed to use the PP_Instance CreateObject one.
|
ppp_class_deprecated.h | 26 * to this interface to PPB_Var_Deprecated.CreateObject that corresponds to the
|
/external/lzma/CPP/7zip/UI/Common/ |
LoadCodecs.cpp | 377 lib.CreateObject = (CreateObjectFunc)lib.Lib.GetProc("CreateObject");
378 if (lib.CreateObject != 0)
577 return Libs[ci.LibIndex].CreateObject(&ci.Decoder, iid, (void **)coder);
593 return Libs[ci.LibIndex].CreateObject(&ci.Encoder, iid, (void **)coder);
613 return lib.CreateObject(encode ? &codec.Encoder : &codec.Decoder, &IID_ICompressCoder, (void **)&coder);
|
LoadCodecs.h | 126 CreateObjectFunc CreateObject;
159 return Libs[ai.LibIndex].CreateObject(&ai.ClassID, outHandler ? &IID_IOutArchive : &IID_IInArchive, (void **)archive);
|
/external/chromium_org/content/renderer/pepper/ |
plugin_object.h | 65 // This object must be created using the CreateObject function of the which
|
plugin_object.cc | 297 WebBindings::createObject(instance->instanceNPP(), 312 // did WebBindings::createObject above. Now that the PP_Var has taken 313 // ownership, we need to release to balance out the createObject reference
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLBRElement.cpp | 71 return RenderObject::createObject(this, style);
|
HTMLAppletElement.cpp | 90 return RenderObject::createObject(this, style);
|
/external/chromium_org/third_party/npapi/npspy/common/ |
np_entry.cpp | 166 NPNFuncs.createobject = pFuncs->createobject;
|
/external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
InputTypeView.cpp | 97 return RenderObject::createObject(&element(), style);
|
/external/apache-xml/src/main/java/org/apache/xalan/xslt/ |
ObjectFactory.java | 101 static Object createObject(String factoryId, String fallbackClassName) 103 return createObject(factoryId, null, fallbackClassName); 104 } // createObject(String,String):Object 128 static Object createObject(String factoryId, 151 } // createObject(String,String,String):Object
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ |
ObjectFactory.java | 101 static Object createObject(String factoryId, String fallbackClassName) 103 return createObject(factoryId, null, fallbackClassName); 104 } // createObject(String,String):Object 128 static Object createObject(String factoryId, 151 } // createObject(String,String,String):Object
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
ObjectFactory.java | 100 static Object createObject(String factoryId, String fallbackClassName) 102 return createObject(factoryId, null, fallbackClassName); 103 } // createObject(String,String):Object 127 static Object createObject(String factoryId, 150 } // createObject(String,String,String):Object
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
ObjectFactory.java | 101 static Object createObject(String factoryId, String fallbackClassName) 103 return createObject(factoryId, null, fallbackClassName); 104 } // createObject(String,String):Object 128 static Object createObject(String factoryId, 151 } // createObject(String,String,String):Object
|
/external/apache-xml/src/main/java/org/apache/xpath/functions/ |
ObjectFactory.java | 101 static Object createObject(String factoryId, String fallbackClassName) 103 return createObject(factoryId, null, fallbackClassName); 104 } // createObject(String,String):Object 128 static Object createObject(String factoryId, 151 } // createObject(String,String,String):Object
|
/external/chromium/webkit/glue/ |
cpp_variant_unittest.cc | 58 // of WebBindings::createObject when allocate() is NULL 81 return WebBindings::createObject(NULL, &void_class); 473 NPObject* obj = WebBindings::createObject(NULL, &array_like_class);
|
/external/chromium_org/webkit/renderer/ |
cpp_variant_unittest.cc | 60 // of WebBindings::createObject when allocate() is NULL 98 return WebBindings::createObject(npp_.get(), &void_class); 494 NPObject* obj = WebBindings::createObject(npp(), &array_like_class);
|
/external/chromium_org/ppapi/cpp/private/ |
var_private.cc | 30 var_ = get_interface<PPB_Var_Deprecated>()->CreateObject(
|