Searched defs:object (Results 226 - 250 of 1074) sorted by relevance

1234567891011>>

/external/apache-xml/src/main/java/org/apache/xpath/objects/
H A DXNumber.java36 /** Value of the XNumber object.
41 * Construct a XNodeSet object.
43 * @param d Value of the object
53 * Construct a XNodeSet object.
55 * @param num Value of the object
88 * Cast result object to a number.
90 * @return the value of the XNumber object
112 * Cast result object to a boolean.
122 // * Cast result object to a string.
272 * Cast result object t
377 public Object object() method in class:XNumber
[all...]
H A DXStringForChars.java43 * Construct a XNodeSet object.
45 * @param val FastStringBuffer object this will wrap, must be non-null.
61 * Construct a XNodeSet object.
63 * @param val String object this will wrap.
73 * Cast result object to a string.
83 * Cast result object to a string.
94 * Tell if this object contains a java String object.
105 * Cast result object to a string.
119 * Since this object i
124 public Object object() method in class:XStringForChars
[all...]
/external/bluetooth/bluedroid/osi/src/
H A Dreactor.c130 reactor_object_t *object = (reactor_object_t *)list_node(iter); local
131 int fd = object->fd;
132 reactor_interest_t interest = object->interest;
161 reactor_object_t *object = (reactor_object_t *)list_node(iter); local
162 int fd = object->fd;
164 object->read_ready(object->context);
168 object->write_ready(object->context);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DDERApplicationSpecific.java9 * Base class for an application specific object
37 ASN1Encodable object)
40 this(true, tag, object);
46 ASN1Encodable object)
49 ASN1Primitive primitive = object.toASN1Primitive();
83 throw new ASN1ParsingException("malformed object: " + e, e);
103 throw new IllegalArgumentException("failed to construct object from byte[]: " + e.getMessage());
116 throw new IllegalArgumentException("unknown object in getInstance: " + obj.getClass().getName());
160 * Return the enclosed object assuming explicit tagging.
162 * @return the resulting object
35 DERApplicationSpecific( int tag, ASN1Encodable object) argument
43 DERApplicationSpecific( boolean explicit, int tag, ASN1Encodable object) argument
[all...]
/external/chromium_org/chrome/browser/prerender/
H A Dexternal_prerender_handler_android.cc64 jobject object) {
63 CancelCurrentPrerender(JNIEnv* env, jobject object) argument
/external/chromium_org/chrome/browser/ui/webui/options/
H A Doptions_browsertest.js10 * Wait for the method specified by |methodName|, on the |object| object, to be
12 * @param {*} object Object with callable property named |methodName|.
13 * @param {string} methodName The name of the property on |object| to use as a
15 * @param {!Function} afterFunction A function to call after object.methodName()
18 function waitForResponse(object, methodName, afterFunction) {
19 var originalCallback = object[methodName]; function
22 object[methodName] = function() {
23 object[methodName] = originalCallback;
/external/chromium_org/chrome/renderer/extensions/
H A Dautomation_internal_custom_bindings.cc19 // Helper to convert an enum to a V8 object.
24 v8::Local<v8::Object> object = v8::Object::New(isolate); local
28 object->Set(value, value);
30 return object;
/external/chromium_org/content/shell/renderer/test_runner/
H A Dmock_web_speech_recognizer.h84 StepTask(MockWebSpeechRecognizer* object) argument
85 : WebMethodTask<MockWebSpeechRecognizer>(object) {}
H A Dmock_webrtc_data_channel_handler.cc18 DataChannelReadyStateTask(MockWebRTCDataChannelHandler* object, argument
21 : WebMethodTask<MockWebRTCDataChannelHandler>(object),
/external/chromium_org/mojo/android/javatests/src/org/chromium/mojo/bindings/
H A DBindingsTest.java133 Object object, T value) throws IllegalArgumentException, IllegalAccessException {
137 assertEquals(value, field.get(object));
234 // Checking serialization and deserialization of a Foo object.
246 // Checking serialization and deserialization of a EmptyStruct object.
132 checkField(Field field, Class<T> expectedClass, Object object, T value) argument
/external/chromium_org/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
H A DStruct.java62 public boolean equals(Object object) { argument
63 if (object == this)
65 if (object == null)
67 if (getClass() != object.getClass())
70 DataHeader other = (DataHeader) object;
/external/chromium_org/ppapi/cpp/dev/
H A Dtext_input_dev.cc21 void* object = Instance::GetPerInstanceObject(instance, local
23 if (!object)
25 static_cast<TextInput_Dev*>(object)->RequestSurroundingText(
/external/chromium_org/ppapi/cpp/private/
H A Dfind_private.cc26 void* object = Instance::GetPerInstanceObject(instance, kPPPFindInterface); local
27 if (!object)
29 bool return_value = static_cast<Find_Private*>(object)->StartFind(
35 void* object = Instance::GetPerInstanceObject(instance, kPPPFindInterface); local
36 if (object)
37 static_cast<Find_Private*>(object)->SelectFindResult(PP_ToBool(forward));
41 void* object = Instance::GetPerInstanceObject(instance, kPPPFindInterface); local
42 if (object)
43 static_cast<Find_Private*>(object)->StopFind();
/external/chromium_org/ppapi/native_client/src/trusted/weak_ref/
H A Dcall_on_main_thread.h159 WeakRefMemberFuncBinder(E* object, argument
163 : object_(object),
198 // |object| and |raw_callback_fn| must be at least that of |anchor|.
199 // Typically |object| is just the object that controls the |anchor|,
200 // though it may be some sub-object that is contained within the
201 // actual controlling object. If the |anchor| is abandoned, the
207 E* object,
213 "object 0x%" NACL_PRIxPTR "\n",
214 reinterpret_cast<uintptr_t>(object));
205 WeakRefNewCallback( nacl::WeakRefAnchor* anchor, E* object, void (E::*raw_callback_fn)(R* raw_data, int32_t err), R* raw_data) argument
230 WeakRefCallOnMainThread( nacl::WeakRefAnchor* anchor, int32_t delay_in_milliseconds, E* object, void (E::*raw_callback_fn)(R* raw_data, int32_t err), R* raw_data) argument
[all...]
/external/chromium_org/ppapi/proxy/
H A Dplugin_var_tracker_unittest.cc27 void MarkOnDeallocate(void* object) { argument
28 (*static_cast<int*>(object))++;
51 // Asserts that there is a unique "release object" IPC message in the test
69 // Round-trip through the tracker to make sure the host object comes out the
84 // Receive the object, we should have one ref and no messages.
92 // Receive the same object again, we should get the same plugin ID out.
106 // Release the object, one ref at a time. The second release should free
130 // Free via the refcount, this should release the object to the browser but
131 // maintain the tracked object.
137 // Now free via the tracked object, thi
[all...]
H A Draw_var_data_unittest.cc86 PP_Var object; local
87 object.type = PP_VARTYPE_OBJECT;
88 object.value.as_id = 10;
89 EXPECT_TRUE(WriteReadAndCompare(object));
/external/chromium_org/ppapi/shared_impl/
H A Dproxy_lock_unittest.cc91 scoped_refptr<CheckLockStateInDestructor> object = local
94 RunWhileLocked(base::Bind(&CheckLockStateInDestructor::Method, object));
/external/chromium_org/sandbox/win/src/
H A Dacl.cc95 bool AddKnownSidToObject(HANDLE object, SE_OBJECT_TYPE object_type, argument
102 if (ERROR_SUCCESS != ::GetSecurityInfo(object, object_type,
112 DWORD result = ::SetSecurityInfo(object, object_type,
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8DOMWrapper.h53 static v8::Handle<v8::Object> associateObjectWithWrapper(RawPtr<T> object, const WrapperTypeInfo* wrapperTypeInfo, v8::Handle<v8::Object> wrapper, v8::Isolate* isolate) argument
55 return associateObjectWithWrapper<V8T, T>(object.get(), wrapperTypeInfo, wrapper, isolate);
134 inline v8::Handle<v8::Object> V8DOMWrapper::associateObjectWithWrapper(PassRefPtr<T> object, const WrapperTypeInfo* wrapperTypeInfo, v8::Handle<v8::Object> wrapper, v8::Isolate* isolate) argument
136 setNativeInfo(wrapper, wrapperTypeInfo, V8T::toScriptWrappableBase(object.get()));
138 DOMDataStore::setWrapper<V8T>(object.leakRef(), wrapper, isolate, wrapperTypeInfo);
143 inline v8::Handle<v8::Object> V8DOMWrapper::associateObjectWithWrapper(T* object, const WrapperTypeInfo* wrapperTypeInfo, v8::Handle<v8::Object> wrapper, v8::Isolate* isolate) argument
145 setNativeInfoWithPersistentHandle(wrapper, wrapperTypeInfo, V8T::toScriptWrappableBase(object), WrapperPersistent<T>::create(object));
147 DOMDataStore::setWrapper<V8T>(object, wrapper, isolate, wrapperTypeInfo);
197 // a new object i
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8ArrayBufferCustom.cpp94 ArrayBuffer* V8ArrayBuffer::toImpl(v8::Handle<v8::Object> object) argument
96 ASSERT(object->IsArrayBuffer());
97 v8::Local<v8::ArrayBuffer> v8buffer = object.As<v8::ArrayBuffer>();
99 RELEASE_ASSERT(toWrapperTypeInfo(object)->ginEmbedder == gin::kEmbedderBlink);
100 return reinterpret_cast<ArrayBuffer*>(blink::toScriptWrappableBase(object));
107 V8DOMWrapper::associateObjectWithWrapper<V8ArrayBuffer>(buffer.release(), &wrapperTypeInfo, object, v8::Isolate::GetCurrent());
109 return reinterpret_cast<ArrayBuffer*>(blink::toScriptWrappableBase(object));
/external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/
H A DIDBBindingUtilitiesTest.cpp105 v8::Local<v8::Object> object = v8::Object::New(isolate); local
106 object->Set(v8AtomicString(isolate, "foo"), v8AtomicString(isolate, "zoo"));
108 ScriptValue scriptValue(scriptState(), object); local
117 v8::Local<v8::Object> object = v8::Object::New(isolate); local
118 object->Set(v8AtomicString(isolate, "foo"), v8::Number::New(isolate, 456));
120 ScriptValue scriptValue(scriptState(), object); local
129 v8::Local<v8::Object> object = v8::Object::New(isolate); local
132 object->Set(v8AtomicString(isolate, "foo"), subProperty);
134 ScriptValue scriptValue(scriptState(), object); local
146 v8::Local<v8::Object> object local
149 ScriptValue foozoo(scriptState(), object); local
159 v8::Local<v8::Object> object = v8::Object::New(isolate); local
164 ScriptValue scriptObject(scriptState(), object); local
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/templates/
H A Dinterface.h48 static {{cpp_class}}* toImpl(v8::Handle<v8::Object> object) argument
50 return toImpl(blink::toScriptWrappableBase(object));
135 * a persistent handle (if the object is in oilpan) or
136 * a C++ pointer to the DOM object (if the object is not in oilpan) #}
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/
H A DV8SVGTestInterface.h24 static SVGTestInterface* toImpl(v8::Handle<v8::Object> object) argument
26 return toImpl(blink::toScriptWrappableBase(object));
H A DV8TestException.h24 static TestException* toImpl(v8::Handle<v8::Object> object) argument
26 return toImpl(blink::toScriptWrappableBase(object));
H A DV8TestInterface2.h24 static TestInterface2* toImpl(v8::Handle<v8::Object> object) argument
26 return toImpl(blink::toScriptWrappableBase(object));

Completed in 2494 milliseconds

1234567891011>>