Searched defs:instance (Results 226 - 250 of 315) sorted by relevance

1234567891011>>

/external/dexmaker/src/main/java/com/google/dexmaker/
H A DCode.java132 * <li>{@link #invokeDirect invokeDirect()} is used for private instance
151 * #sput sput()}. For instance values you'll need to specify the declaring
152 * instance; use {@link #getThis getThis()} in an instance method to use {@code
153 * this}. Read instance values using {@link #iget iget()} and write them with
359 * {@code Code} instance.
571 * Copies the value in instance field {@code fieldId} of {@code instance} to
574 public <D, V> void iget(FieldId<D, V> fieldId, Local<V> target, Local<D> instance) { argument
576 RegisterSpecList.make(instance
584 iput(FieldId<D, V> fieldId, Local<D> instance, Local<V> source) argument
642 invokeVirtual(MethodId<D, R> method, Local<? super R> target, Local<? extends D> instance, Local<?>... args) argument
656 invokeDirect(MethodId<D, R> method, Local<? super R> target, Local<? extends D> instance, Local<?>... args) argument
668 invokeSuper(MethodId<D, R> method, Local<? super R> target, Local<? extends D> instance, Local<?>... args) argument
681 invokeInterface(MethodId<D, R> method, Local<? super R> target, Local<? extends D> instance, Local<?>... args) argument
[all...]
/external/dexmaker/src/main/java/com/google/dexmaker/stock/
H A DProxyBuilder.java80 * {@link #build()}. The returned instance will be a dynamically generated subclass where all method
191 * Create a new instance of the class to proxy.
289 private static void setHandlerInstanceField(Object instance, InvocationHandler handler) { argument
291 Field handlerField = instance.getClass().getDeclaredField(FIELD_NAME_HANDLER);
293 handlerField.set(instance, handler);
322 public static InvocationHandler getInvocationHandler(Object instance) { argument
324 Field field = instance.getClass().getDeclaredField(FIELD_NAME_HANDLER);
326 return (InvocationHandler) field.get(instance);
328 throw new IllegalArgumentException("Not a valid proxy instance", e);
/external/kernel-headers/original/linux/
H A Dlockdep.h118 * Map the lock object (the lock instance) to the lock-class object.
163 struct lockdep_map *instance; member in struct:held_lock
225 * 2: read-acquire with same-instance recursion allowed
/external/webkit/Source/WebCore/bindings/v8/
H A DV8Binding.cpp525 v8::Local<v8::ObjectTemplate> instance = desc->InstanceTemplate(); local
526 instance->SetInternalFieldCount(fieldCount);
530 batchConfigureAttributes(instance, desc->PrototypeTemplate(),
H A DV8Proxy.cpp91 void batchConfigureAttributes(v8::Handle<v8::ObjectTemplate> instance, argument
97 configureAttribute(instance, proto, attributes[i]);
/external/webkit/Source/WebCore/plugins/
H A DPluginView.h156 NPP instance() const { return m_instance; } function in class:WebCore::PluginView
/external/webkit/Source/WebCore/svg/
H A DSVGUseElement.cpp87 // If there is no element instance tree, force immediate SVGElementInstance tree
245 for (SVGElementInstance* instance = targetInstance->firstChild(); instance; instance = instance->nextSibling())
246 updateContainerSize(instance);
298 for (SVGElementInstance* instance = targetInstance->firstChild(); instance; instance = instance
735 RefPtr<SVGElementInstance> instance = SVGElementInstance::create(this, 0, element); local
[all...]
/external/webkit/Source/WebKit/android/plugins/
H A DPluginWidgetAndroid.cpp82 PLUGIN_LOG("%p Deleting Plugin", m_pluginView->instance());
109 PLUGIN_LOG("%p Initialized Plugin", m_pluginView->instance());
131 PLUGIN_LOG("%p PluginBounds (%d,%d,%d,%d)", m_pluginView->instance(),
245 NPP instance = m_pluginView->instance(); local
249 pkg->pluginFuncs()->event(instance, &event)) {
291 m_pluginView->instance(), displayPlugin,
298 NPP instance = m_pluginView->instance(); local
301 pkg->pluginFuncs()->getvalue(instance, kJavaSurface_ANPGetValu
334 NPP instance = m_pluginView->instance(); local
612 NPP instance = m_pluginView->instance(); local
[all...]
/external/webkit/Source/WebKit/win/
H A DWebHistoryItem.cpp73 WebHistoryItem* instance = new WebHistoryItem(HistoryItem::create()); local
74 instance->AddRef();
75 return instance;
80 WebHistoryItem* instance; local
82 instance = historyItemWrappers().get(historyItem.get());
84 if (!instance)
85 instance = new WebHistoryItem(historyItem);
87 instance->AddRef();
88 return instance;
H A DWebHistory.cpp140 WebHistory* instance = new WebHistory(); local
141 instance->AddRef();
142 return instance;
/external/chromium/chrome/browser/accessibility/
H A Dbrowser_accessibility_win.cc26 CComObject<BrowserAccessibilityWin>* instance; local
27 HRESULT hr = CComObject<BrowserAccessibilityWin>::CreateInstance(&instance);
29 return instance->NewReference();
/external/elfutils/src/
H A Dar.c61 int argc, long int instance);
63 long int instance);
87 { NULL, 'N', NULL, 0, N_("Use instance [COUNT] of name."), 0 },
205 long int instance = -1; local
222 if (((instance = strtol (argv[remaining], &endp, 10)) == LONG_MAX
224 || instance <= 0
257 status = do_oper_extract (operation, arfname, argv, argc, instance);
261 status = do_oper_delete (arfname, argv, argc, instance);
452 long int instance)
519 if (res != NULL && (instance <
451 do_oper_extract(int oper, const char *arfname, char **argv, int argc, long int instance) argument
898 do_oper_delete(const char *arfname, char **argv, int argc, long int instance) argument
[all...]
/external/libxml2/
H A Dschematron.c1592 * @instance: the document instace tree
1593 * @cur: the current node in the instance
1595 * Validate a rule against a tree instance at a given position
1601 xmlSchematronTestPtr test, xmlDocPtr instance, xmlNodePtr cur, xmlSchematronPatternPtr pattern)
1607 ctxt->xctxt->doc = instance;
1656 * @instance: the document instace tree
1658 * Validate a tree instance against the schematron
1664 xmlSchematronValidateDoc(xmlSchematronValidCtxtPtr ctxt, xmlDocPtr instance) argument
1672 (ctxt->schema->rules == NULL) || (instance == NULL))
1675 root = xmlDocGetRootElement(instance);
1600 xmlSchematronRunTest(xmlSchematronValidCtxtPtr ctxt, xmlSchematronTestPtr test, xmlDocPtr instance, xmlNodePtr cur, xmlSchematronPatternPtr pattern) argument
1745 xmlDocPtr instance; local
[all...]
/external/mesa3d/src/pixelflinger2/
H A Dshader.cpp393 static void CodeGen(Instance * instance, const char * mainName, gl_shader * shader, argument
398 llvm::raw_svector_ostream out(instance->resultObj);
400 // instance->module->dump();
411 compile_result = compiler.compile(*instance->script, out);
421 instance->exec = bcc::ObjectLoader::Load(instance->resultObj.begin(), instance->resultObj.size(),
424 if (!instance->exec) {
430 instance->function = reinterpret_cast<void (*)()>(instance
459 Instance * instance = shader->executable->instances[shaderKey]; local
[all...]
/external/v8/src/
H A Dexecution.cc238 // Objects created through the API can have an instance-call handler
262 // Objects created through the API can have an instance-call handler
270 // If the Object doesn't have an instance-call handler we should
295 // Objects created through the API can have an instance-call handler
323 // Objects created through the API can have an instance-call handler
331 // If the Object doesn't have an instance-call handler we should
752 void Execution::ConfigureInstance(Handle<Object> instance, argument
756 Handle<Object> args[] = { instance, instance_template };
H A Dfactory.cc467 // Check that we do not overflow the instance size when adding the
473 // If the instance size overflows, we allocate as many properties
891 // Ensure the key is a symbol before writing into the instance descriptor.
1288 // Set instance call-as-function information in the map.
1403 Handle<JSObject> instance,
1405 // Configure the instance by adding the properties specified by the
1406 // instance template.
1409 Execution::ConfigureInstance(instance,
1402 ConfigureInstance(Handle<FunctionTemplateInfo> desc, Handle<JSObject> instance, bool* pending_exception) argument
H A Dserialize.cc65 ExternalReferenceTable* ExternalReferenceTable::instance(Isolate* isolate) { function in class:v8::internal::ExternalReferenceTable
520 ExternalReferenceTable::instance(isolate_);
531 ExternalReferenceTable::instance(isolate_)->code(index) : 0;
538 ExternalReferenceTable::instance(isolate_)->name(index) : NULL;
562 ExternalReferenceTable::instance(isolate_);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.ds_1.2.1.R36x_v20100803.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.commons.logging_1.0.4.v201005080501.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium/chrome/browser/ui/webui/
H A Dnet_internals_ui.cc370 // instance->*method(value) on the IO thread.
374 CallbackHelper(IOThreadImpl* instance, IOThreadImpl::MessageHandler method) argument
375 : instance_(instance),
/external/icu4c/common/
H A Dnormalizer2impl.cpp1757 CanonIterData *instance= local
1760 return instance;
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
H A DPhoneNumberUtil.java343 private static PhoneNumberUtil instance = null; field in class:PhoneNumberUtil
868 if (instance == null) {
869 instance = new PhoneNumberUtil();
870 instance.countryCallingCodeToRegionCodeMap = countryCallingCodeToRegionCodeMap;
871 instance.init(baseFileLocation);
873 return instance;
881 instance = null;
900 * Gets a {@link PhoneNumberUtil} instance to carry out international phone number formatting,
901 * parsing, or validation. The instance is loaded with phone number metadata for a number of most
905 * multiple times will only result in one instance bein
[all...]
/external/littlemock/src/com/google/testing/littlemock/
H A DLittleMock.java333 public static void initMocks(Object instance) throws Exception { argument
334 injectMocksForClass(instance, instance.getClass());
338 private static void injectMocksForClass(Object instance, Class<?> clazz) argument
345 setField(field, instance, mock(field.getType(), field.getName()));
347 setField(field, instance, createCaptor());
350 injectMocksForClass(instance, clazz.getSuperclass());
1287 /** Attempt to construct an instance of the class using hacky methods to avoid calling super. */
1317 throw new IllegalStateException("unsafe create instance failed");
/external/webkit/Source/WebCore/bindings/scripts/test/V8/
H A DV8TestObj.cpp1155 {"readOnlyIntAttr", TestObjInternal::readOnlyIntAttrAttrGetter, 0, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
1157 {"readOnlyStringAttr", TestObjInternal::readOnlyStringAttrAttrGetter, 0, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
1159 {"readOnlyTestObjAttr", TestObjInternal::readOnlyTestObjAttrAttrGetter, 0, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
1161 {"shortAttr", TestObjInternal::shortAttrAttrGetter, TestObjInternal::shortAttrAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
1163 {"unsignedShortAttr", TestObjInternal::unsignedShortAttrAttrGetter, TestObjInternal::unsignedShortAttrAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
1165 {"intAttr", TestObjInternal::intAttrAttrGetter, TestObjInternal::intAttrAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
1167 {"longLongAttr", TestObjInternal::longLongAttrAttrGetter, TestObjInternal::longLongAttrAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
1169 {"unsignedLongLongAttr", TestObjInternal::unsignedLongLongAttrAttrGetter, TestObjInternal::unsignedLongLongAttrAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
1171 {"stringAttr", TestObjInternal::stringAttrAttrGetter, TestObjInternal::stringAttrAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
1173 {"testObjAttr", TestObjInternal::testObjAttrAttrGetter, TestObjInternal::testObjAttrAttrSetter, 0 /* no data */, static_cast<v8::AccessControl>(v8::DEFAULT), static_cast<v8::PropertyAttribute>(v8::None), 0 /* on instance */},
1292 v8::Local<v8::ObjectTemplate> instance = desc->InstanceTemplate(); local
[all...]
/external/webkit/Source/WebCore/bridge/qt/
H A Dqt_runtime.cpp612 qConvDebug() << "found instance, with object:" << (void*) qtinst->getObject();
636 qConvDebug() << "found instance, with object:" << (void*) qtinst->getObject();
1722 QtConnectionObject::QtConnectionObject(JSGlobalData& globalData, PassRefPtr<QtInstance> instance, int signalIndex, JSObject* thisObject, JSObject* funcObject) argument
1723 : m_instance(instance)

Completed in 475 milliseconds

1234567891011>>