HomeSort by relevance Sort by last modified time
    Searched refs:object (Results 426 - 450 of 5712) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderInputSpeech.cpp 56 bool RenderInputSpeech::paintInputFieldSpeechButton(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect)
58 Element* element = object->node()->isElementNode() ? toElement(object->node()) : 0;
63 Node* input = object->node()->shadowHost();
74 LayoutRect buttonRect(object->offsetFromAncestorContainer(inputRenderBox).width(),
79 LayoutSize offsetFromInputRenderer = -(object->offsetFromAncestorContainer(inputRenderBox));
LayoutRectRecorder.cpp 45 LayoutRectRecorder::LayoutRectRecorder(RenderObject& object, bool skipRecording)
46 : m_object(object)
RenderMediaControls.cpp 69 static bool paintMediaMuteButton(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect)
71 HTMLMediaElement* mediaElement = toParentMediaElement(object);
96 static bool paintMediaPlayButton(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect)
98 HTMLMediaElement* mediaElement = toParentMediaElement(object);
112 static bool paintMediaOverlayPlayButton(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect)
114 HTMLMediaElement* mediaElement = toParentMediaElement(object);
199 static bool paintMediaSlider(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect)
201 HTMLMediaElement* mediaElement = toParentMediaElement(object);
205 RenderStyle* style = object->style();
251 static bool paintMediaSliderThumb(RenderObject* object, const PaintInfo& paintInfo, const IntRect& rect
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/codeview/
cv-dbgfmt.c 37 cv_dbgfmt_create(yasm_object *object, yasm_dbgfmt_module *module, int version)
61 cv8_dbgfmt_create(yasm_object *object)
63 return cv_dbgfmt_create(object, &yasm_cv8_LTX_dbgfmt, 8);
92 cv_dbgfmt_generate(yasm_object *object, yasm_linemap *linemap,
95 yasm_cv__generate_symline(object, linemap, errwarns);
96 yasm_cv__generate_type(object);
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/
dwarf2-dbgfmt.h 108 (yasm_object *object, yasm_linemap *linemap, yasm_errwarns *errwarns,
111 void yasm_dwarf2__dir_loc(yasm_object *object, yasm_valparamhead *valparams,
114 void yasm_dwarf2__dir_file(yasm_object *object, yasm_valparamhead *valparams,
119 yasm_section *yasm_dwarf2__generate_aranges(yasm_object *object,
123 yasm_section *yasm_dwarf2__generate_pubnames(yasm_object *object,
128 (yasm_object *object, yasm_section *debug_line,
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
MinimalCollection.java 34 return new MinimalCollection<E>(Object.class, true, contents);
55 for (Object element : contents) {
67 @Override public boolean contains(Object object) {
70 if (object == null) {
74 Platform.checkCast(type, object); // behave badly
75 return Arrays.asList(contents).contains(object);
80 for (Object object : collection) {
82 if (object == null)
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/format/
ObjectFormat.java 44 public static MutableFrameFormat fromObject(Object object, int target) {
45 return object == null
47 : fromClass(object.getClass(), FrameFormat.SIZE_UNSPECIFIED, target);
50 public static MutableFrameFormat fromObject(Object object, int count, int target) {
51 return object == null
53 : fromClass(object.getClass(), count, target);
61 throw new IllegalArgumentException("Native object-based formats must be of a " +
68 + "native object-based frame of type " + clazz + "! Perhaps it is missing a
    [all...]
  /art/compiler/llvm/
runtime_support_builder_arm.h 39 virtual void EmitLockObject(::llvm::Value* object);
40 virtual void EmitUnlockObject(::llvm::Value* object);
  /dalvik/vm/mterp/x86/
OP_MOVE_EXCEPTION.S 5 SET_VREG %eax rINST # fp[AA]<- exception object
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeRewriter.cs 54 public virtual object ApplyOnce(object t, System.Func<IAstRuleReturnScope<TTree>> whichRule) {
59 // share TreeParser object but not parsing-related state
73 ((CommonTree)(object)r.Tree).ToStringTree());
86 public virtual object ApplyRepeatedly(object t, System.Func<IAstRuleReturnScope<TTree>> whichRule) {
89 object u = ApplyOnce(t, whichRule);
96 public virtual object Downup(object t) {
  /external/chromium-trace/trace-viewer/src/cc/
raster_task_slice_view.css 10 .raster-task-slice-view > object-snapshot-view {
  /external/chromium_org/base/win/
object_watcher.h 18 // A class that provides a means to asynchronously wait for a Windows object to
31 // void DoStuffWhenSignaled(HANDLE object) {
32 // watcher_.StartWatching(object, this);
34 // virtual void OnObjectSignaled(HANDLE object) {
41 // In the above example, MyClass wants to "do stuff" when object becomes
45 // If the object is already signaled before being watched, OnObjectSignaled is
53 // Called from the MessageLoop when a signaled object is detected. To
54 // continue watching the object, StartWatching must be called again.
55 virtual void OnObjectSignaled(HANDLE object) = 0;
61 // When the object is signaled, the given delegate is notified on the threa
    [all...]
  /external/chromium_org/content/browser/renderer_host/java/
java_bridge_dispatcher_host.cc 63 NPObject* object) {
65 CreateNPVariantParam(object, &variant_param);
73 // reference to the corresponding proxy object. When the last reference is
74 // removed, the proxy object will delete its NPObjectProxy, which will cause
114 void JavaBridgeDispatcherHost::CreateNPVariantParam(NPObject* object,
122 // the channel and object proxies are ready before responses are received
131 blink::WebBindings::retainObject(object);
134 base::Bind(&JavaBridgeDispatcherHost::CreateObjectStub, this, object,
138 void JavaBridgeDispatcherHost::CreateObjectStub(NPObject* object,
156 // window message queue when a method on a renderer-side object causes
    [all...]
  /external/chromium_org/content/test/plugin/
plugin_delete_plugin_in_deallocate_test.cc 24 DeletePluginInDeallocateTestNPObject* object = local
26 ++object->deallocate_count_;
29 if (object->deallocate_count_ == 1) {
31 object->host_functions_->getstringidentifier("deletePlugin");
33 object->host_functions_->getvalue(object->id_, NPNVWindowNPObject,
36 object->host_functions_->invoke(object->id_, window_obj, delete_id, NULL,
98 // Fetch the window script object for our page.
116 // Release the object - the page's reference should keep it alive
    [all...]
  /external/chromium_org/ppapi/cpp/dev/
scriptable_object_deprecated.cc 18 // for exceptions. The object is only copied if it is not void, which we
43 bool HasProperty(void* object, PP_Var name, PP_Var* exception) {
45 return static_cast<ScriptableObject*>(object)->HasProperty(
49 bool HasMethod(void* object, PP_Var name, PP_Var* exception) {
51 return static_cast<ScriptableObject*>(object)->HasMethod(
55 PP_Var GetProperty(void* object,
59 return static_cast<ScriptableObject*>(object)->GetProperty(
63 void GetAllPropertyNames(void* object,
69 static_cast<ScriptableObject*>(object)->GetAllPropertyNames(&props, e.Get());
83 void SetProperty(void* object,
    [all...]
  /external/chromium_org/ppapi/thunk/
ppb_device_ref_dev_thunk.cc 32 return enter.object()->GetType();
40 return enter.object()->GetName();
ppb_url_loader_thunk.cc 45 return enter.SetResult(enter.object()->Open(request_info, enter.callback()));
54 return enter.SetResult(enter.object()->FollowRedirect(enter.callback()));
67 return enter.object()->GetUploadProgress(bytes_sent, total_bytes_to_be_sent);
80 return enter.object()->GetDownloadProgress(bytes_received,
89 return enter.object()->GetResponseInfo();
100 return enter.SetResult(enter.object()->ReadResponseBody(buffer,
111 return enter.SetResult(enter.object()->FinishStreamingToFile(
120 enter.object()->Close();
ppb_url_response_info_thunk.cc 33 return enter.object()->GetProperty(property);
41 return enter.object()->GetBodyAsFileRef();
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8ArrayBufferCustom.cpp 65 void V8ArrayBuffer::derefObject(void* object)
67 static_cast<ArrayBuffer*>(object)->deref();
70 v8::Handle<v8::Object> V8ArrayBuffer::createWrapper(PassRefPtr<ArrayBuffer> impl, v8::Handle<v8::Object> creationContext, v8::Isolate* isolate)
75 v8::Handle<v8::Object> wrapper = v8::ArrayBuffer::New(isolate, impl->data(), impl->byteLength());
82 ArrayBuffer* V8ArrayBuffer::toNative(v8::Handle<v8::Object> object)
84 ASSERT(object->IsArrayBuffer());
85 void* arraybufferPtr = object->GetAlignedPointerFromInternalField(v8DOMWrapperObjectIndex);
89 v8::Local<v8::ArrayBuffer> v8buffer = object.As<v8::ArrayBuffer>()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ContextLifecycleNotifier.h 58 bool contains(ActiveDOMObject* object) const { return m_activeDOMObjects.contains(object); }
  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLBuffer.cpp 52 void WebGLBuffer::deleteObjectImpl(GraphicsContext3D* context3d, Platform3DObject object)
54 context3d->deleteBuffer(object);
WebGLObject.cpp 43 void WebGLObject::setObject(Platform3DObject object)
45 // object==0 && m_deleted==false indicating an uninitialized state;
47 m_object = object;
WebGLRenderbuffer.cpp 56 void WebGLRenderbuffer::deleteObjectImpl(GraphicsContext3D* context3d, Platform3DObject object)
58 context3d->deleteRenderbuffer(object);
WebGLShader.cpp 53 void WebGLShader::deleteObjectImpl(GraphicsContext3D* context3d, Platform3DObject object)
55 context3d->deleteShader(object);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
handle.c 80 create_handle(void *object)
83 util_hash_table_set(handle_hash, intptr_to_pointer(h), object);

Completed in 332 milliseconds

<<11121314151617181920>>