/development/samples/BrowserPlugin/jni/audio/ |
AudioPlugin.h | 33 NPP instance; member in struct:SoundPlay
|
AudioPlugin.cpp | 43 static void inval(NPP instance) { 44 browser->invalidaterect(instance, NULL); 55 static void inval(NPP instance, const ANPRectF& r, bool doAA) { 58 PluginObject *obj = reinterpret_cast<PluginObject*>(instance->pdata); 64 browser->invalidaterect(instance, &inval); 83 inval(play->instance); 106 m_soundPlay->instance = inst; 276 NPP instance = this->inst(); local 331 NPP instance = this->inst(); local 336 instance); [all...] |
/external/chromium/net/base/ |
registry_controlled_domain.h | 205 // Set the RegistryControledDomainService instance to be used internally. 206 // |instance| will supersede the singleton instance normally used. If 207 // |instance| is NULL, normal behavior is restored, and internal operations 209 // instance set by the most recent call to SetInstance. 211 RegistryControlledDomainService* instance); 220 // To allow construction of the internal singleton instance. 223 // Returns the singleton instance, after attempting to initialize it. 224 // NOTE that if the effective-TLD data resource can't be found, the instance
|
/external/webkit/WebCore/workers/ |
DefaultSharedWorkerRepository.h | 72 static DefaultSharedWorkerRepository& instance();
|
/external/webkit/WebKitTools/DumpRenderTree/TestNetscapePlugIn.subproj/ |
PluginObject.h | 60 extern void pluginLog(NPP instance, const char* format, ...);
|
/packages/apps/Camera/src/com/android/camera/ |
CameraButtonIntentReceiver.java | 38 CameraHolder holder = CameraHolder.instance();
|
/external/webkit/WebCore/bindings/v8/custom/ |
V8HTMLAudioElementConstructor.cpp | 62 // Make sure the document is added to the DOM Node map. Otherwise, the HTMLAudioElement instance 88 v8::Local<v8::ObjectTemplate> instance = result->InstanceTemplate(); local 89 instance->SetInternalFieldCount(V8HTMLAudioElement::internalFieldCount);
|
V8HTMLImageElementConstructor.cpp | 62 // Make sure the document is added to the DOM Node map. Otherwise, the HTMLImageElement instance 88 v8::Local<v8::ObjectTemplate> instance = result->InstanceTemplate(); local 89 instance->SetInternalFieldCount(V8HTMLImageElement::internalFieldCount);
|
V8HTMLOptionElementConstructor.cpp | 104 v8::Local<v8::ObjectTemplate> instance = result->InstanceTemplate(); local 105 instance->SetInternalFieldCount(V8HTMLOptionElement::internalFieldCount);
|
V8InjectedScriptHostCustom.cpp | 68 v8::Local<v8::Object> instance = SafeAllocation::newInstance(function); local 69 if (instance.IsEmpty()) { 73 V8DOMWrapper::setDOMWrapper(instance, V8ClassIndex::ToInt(descriptorType), host); 77 v8::Persistent<v8::Object> weakHandle = v8::Persistent<v8::Object>::New(instance); 79 return instance; 103 // to create and configure InjectedScript instance that is going to be used by the inspector.
|
/external/webkit/WebCore/bridge/qt/ |
qt_instance.h | 38 class QtInstance : public Instance { 74 static PassRefPtr<QtInstance> create(QObject *instance, PassRefPtr<RootObject> rootObject, QScriptEngine::ValueOwnership ownership) 76 return adoptRef(new QtInstance(instance, rootObject, ownership));
|
/external/webkit/WebCore/plugins/qt/ |
PluginPackageQt.cpp | 83 static NPError staticPluginQuirkRequiresGtkToolKit_NPN_GetValue(NPP instance, NPNVariable variable, void* value) 90 return NPN_GetValue(instance, variable, value); 126 // It does so in NP_Initialize with a null instance, therefore it is done this way:
|
/external/webkit/WebCore/svg/ |
SVGElement.cpp | 153 void SVGElement::mapInstanceToElement(SVGElementInstance* instance) 155 ASSERT(instance); 158 ASSERT(!instances.contains(instance)); 160 instances.add(instance); 163 void SVGElement::removeInstanceMapping(SVGElementInstance* instance) 165 ASSERT(instance); 169 ASSERT(instances.contains(instance)); 171 instances.remove(instance);
|
/external/webkit/WebKit/win/ |
WebURLResponse.cpp | 229 WebURLResponse* instance = new WebURLResponse(); local 231 instance->m_response = ResourceResponse(KURL(ParsedURLString, "http://"), String(), 0, String(), String()); 232 instance->AddRef(); 233 return instance; 241 WebURLResponse* instance = new WebURLResponse(); 242 instance->AddRef(); 243 instance->m_response = response; 245 return instance;
|
WebBackForwardList.cpp | 73 WebBackForwardList* instance; local 75 instance = backForwardListWrappers().get(backForwardList.get()); 77 if (!instance) 78 instance = new WebBackForwardList(backForwardList); 80 instance->AddRef(); 81 return instance;
|
WebURLProtectionSpace.cpp | 55 WebURLProtectionSpace* instance = new WebURLProtectionSpace(ProtectionSpace()); local 56 instance->AddRef(); 57 return instance; 62 WebURLProtectionSpace* instance = new WebURLProtectionSpace(protectionSpace); local 63 instance->AddRef(); 64 return instance;
|
COMPropertyBag.h | 83 COMPropertyBag* instance = new COMPropertyBag(hashMap);
local 84 instance->AddRef();
85 return instance;
91 COMPropertyBag* instance = new COMPropertyBag;
local 92 instance->m_hashMap.swap(hashMap);
93 instance->AddRef();
94 return instance;
|
/external/netperf/ |
netcpu_pstatnew.c | 157 print_cpu_time_counters(char *name, int instance, cpu_time_counters_t *counters) 159 fprintf(where,"%s[%d]:\n",name,instance); 161 "\t idle %llu\n",counters[instance].idle); 163 "\t user %llu\n",counters[instance].user); 165 "\t kernel %llu\n",counters[instance].kernel); 167 "\t interrupt %llu\n",counters[instance].interrupt);
|
/frameworks/base/core/java/android/text/ |
AutoText.java | 82 * Returns the instance of AutoText. If the locale has changed, it will create a new 83 * instance of AutoText for the locale. 85 * @return the single instance of AutoText 90 AutoText instance; local 93 instance = sInstance; 95 if (!locale.equals(instance.mLocale)) { 96 instance = new AutoText(res); 97 sInstance = instance; 101 return instance;
|
/external/webkit/WebKit/mac/Plugins/Hosted/ |
HostedNetscapePluginStream.mm | 54 HostedNetscapePluginStream::HostedNetscapePluginStream(NetscapePluginInstanceProxy* instance, uint32_t streamID, NSURLRequest *request) 55 : m_instance(instance) 62 if (SecurityOrigin::shouldHideReferrer([request URL], core([instance->pluginView() webFrame])->loader()->outgoingReferrer())) 70 HostedNetscapePluginStream::HostedNetscapePluginStream(NetscapePluginInstanceProxy* instance, WebCore::FrameLoader* frameLoader) 71 : m_instance(instance)
|
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/ |
DelegateClassAdapterTest.java | 72 // create an instance of the class that will be modified 270 * instance methods via reflection. 324 public int callGet(Object instance, int a, long b) throws Exception { 325 Method m = instance.getClass().getMethod("get", 328 Object result = m.invoke(instance, new Object[] { a, b }); 335 public int callAdd(Object instance, int a, int b) throws Exception { 336 Method m = instance.getClass().getMethod("add", 339 Object result = m.invoke(instance, new Object[] { a, b }); 347 public int callCallNativeInstance(Object instance, int a, double d, Object[] o) 349 Method m = instance.getClass().getMethod("callNativeInstance" [all...] |
/external/bluetooth/glib/gobject/ |
gvalue.c | 331 * @instance: the instance 338 gpointer instance) 346 if (instance) 348 g_return_if_fail (G_TYPE_CHECK_INSTANCE (instance)); 349 g_return_if_fail (g_value_type_compatible (G_TYPE_FROM_INSTANCE (instance), G_VALUE_TYPE (value))); 358 cvalue.v_pointer = instance;
|
/external/webkit/JavaScriptCore/runtime/ |
JSGlobalData.cpp | 162 // Zeroing out to make the behavior more predictable when someone attempts to use a deleted instance. 225 JSGlobalData*& instance = sharedInstanceInternal(); local 226 if (!instance) { 227 instance = new JSGlobalData(true); 229 instance->makeUsableFromMultipleThreads(); 232 return *instance;
|
/external/chromium/base/test/ |
test_suite.h | 87 testing::UnitTest* instance = testing::UnitTest::GetInstance(); local 90 for (int i = 0; i < instance->total_test_case_count(); ++i) { 91 const testing::TestCase& test_case = *instance->GetTestCase(i);
|
/external/stlport/test/unit/ |
sort_test.cpp | 184 SortTestAux instance(copy_constructor_called); 185 SortTestAux &r_instance = instance; 186 SortTestAux const& rc_instance = instance;
|