HomeSort by relevance Sort by last modified time
    Searched refs:object (Results 76 - 100 of 1874) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/WebCore/rendering/
RenderTextControlMultiLine.h 54 inline RenderTextControlMultiLine* toRenderTextControlMultiLine(RenderObject* object)
56 ASSERT(!object || object->isTextArea());
57 return static_cast<RenderTextControlMultiLine*>(object);
RenderListMarker.h 83 inline RenderListMarker* toRenderListMarker(RenderObject* object)
85 ASSERT(!object || object->isListMarker());
86 return static_cast<RenderListMarker*>(object);
89 inline const RenderListMarker* toRenderListMarker(const RenderObject* object)
91 ASSERT(!object || object->isListMarker());
92 return static_cast<const RenderListMarker*>(object);
RenderPath.h 82 inline RenderPath* toRenderPath(RenderObject* object)
84 ASSERT(!object || object->isRenderPath());
85 return static_cast<RenderPath*>(object);
88 inline const RenderPath* toRenderPath(const RenderObject* object)
90 ASSERT(!object || object->isRenderPath());
91 return static_cast<const RenderPath*>(object);
RenderSVGInline.cpp 54 RenderBox* object = rootBox ? rootBox->block() : 0; local
56 if (!object)
59 int xRef = object->x();
60 int yRef = object->y();
73 RenderBox* object = rootBox ? rootBox->block() : 0; local
75 if (!object)
78 int xRef = object->x();
79 int yRef = object->y();
RenderSVGRoot.h 89 inline RenderSVGRoot* toRenderSVGRoot(RenderObject* object)
91 ASSERT(!object || object->isSVGRoot());
92 return static_cast<RenderSVGRoot*>(object);
95 inline const RenderSVGRoot* toRenderSVGRoot(const RenderObject* object)
97 ASSERT(!object || object->isSVGRoot());
98 return static_cast<const RenderSVGRoot*>(object);
RenderTableRow.h 70 inline RenderTableRow* toRenderTableRow(RenderObject* object)
72 ASSERT(!object || object->isTableRow());
73 return static_cast<RenderTableRow*>(object);
76 inline const RenderTableRow* toRenderTableRow(const RenderObject* object)
78 ASSERT(!object || object->isTableRow());
79 return static_cast<const RenderTableRow*>(object);
RenderWidget.h 79 inline RenderWidget* toRenderWidget(RenderObject* object)
81 ASSERT(!object || object->isWidget());
82 return static_cast<RenderWidget*>(object);
85 inline const RenderWidget* toRenderWidget(const RenderObject* object)
87 ASSERT(!object || object->isWidget());
88 return static_cast<const RenderWidget*>(object);
  /libcore/luni/src/main/java/java/util/
Collection.java 48 * Attempts to add {@code object} to the contents of this
51 * After this method finishes successfully it is guaranteed that the object
58 * objects, but it has to specify this in the documentation. If the object
62 * If a collection does not yet contain an object that is to be added and
63 * adding the object fails, this method <i>must</i> throw an appropriate
68 * @param object
69 * the object to add.
76 * if the class of the object is inappropriate for this
79 * if the object cannot be added to this {@code Collection}.
83 public boolean add(E object);
    [all...]
Comparator.java 24 * to be <i>consistent with equals</i>, its {code #compare(Object, Object)}
47 * an {@code Object}.
49 * a second {@code Object} to compare with {@code object1}.
58 * Compares this {@code Comparator} with the specified {@code Object} and indicates whether they
59 * are equal. In order to be equal, {@code object} must represent the same object
65 * @param object
66 * the {@code Object} to compare with this comparator.
67 * @return boolean {@code true} if specified {@code Object} is the same as thi
    [all...]
Set.java 29 * Adds the specified object to this set. The set is not modified if it
30 * already contains the object.
32 * @param object
33 * the object to add.
38 * when the class of the object is inappropriate for this set.
40 * when the object cannot be added to this set.
42 public boolean add(E object);
54 * when the class of an object is inappropriate for this set.
56 * when an object cannot be added to this set.
71 * Searches this set for the specified object
    [all...]
List.java 29 * Inserts the specified object into this {@code List} at the specified location.
30 * The object is inserted before the current element at the specified
31 * location. If the location is equal to the size of this {@code List}, the object
38 * @param object
39 * the object to add.
43 * if the class of the object is inappropriate for this
46 * if the object cannot be added to this {@code List}.
50 public void add(int location, E object);
53 * Adds the specified object at the end of this {@code List}.
55 * @param object
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
Time.java 51 public int getIndex(java.lang.Object object) {
53 if (((java.util.Date) object).getTime() < JAN_01_2050) {
60 public Object getObjectToEncode(Object object) {
61 return object;
  /packages/apps/Gallery3D/src/com/cooliris/media/
Pool.java 19 public final class Pool<E extends Object> {
31 E object = mFreeList[index]; local
33 return object;
38 public void delete(E object) {
41 mFreeList[index] = object;
  /external/webkit/WebCore/bindings/v8/
V8NPUtils.cpp 46 void convertV8ObjectToNPVariant(v8::Local<v8::Value> object, NPObject* owner, NPVariant* result)
52 ASSERT(!object.IsEmpty());
54 if (object.IsEmpty())
57 if (object->IsInt32())
58 INT32_TO_NPVARIANT(object->NumberValue(), *result);
59 else if (object->IsNumber())
60 DOUBLE_TO_NPVARIANT(object->NumberValue(), *result);
61 else if (object->IsBoolean())
62 BOOLEAN_TO_NPVARIANT(object->BooleanValue(), *result);
63 else if (object->IsNull()
    [all...]
  /libcore/json/src/main/java/org/json/
JSONArray.java 49 private final List<Object> values;
55 values = new ArrayList<Object>();
87 Object object = readFrom.nextValue(); local
88 if (object instanceof JSONArray) {
89 values = ((JSONArray) object).values;
91 throw JSON.typeMismatch(object, "JSONArray");
165 public JSONArray put(Object value) {
227 public JSONArray put(int index, Object value) throws JSONException {
244 Object value = opt(index)
286 Object object = get(index); local
307 Object object = opt(index); local
320 Object object = get(index); local
341 Object object = opt(index); local
354 Object object = get(index); local
375 Object object = opt(index); local
388 Object object = get(index); local
409 Object object = opt(index); local
421 Object object = get(index); local
442 Object object = opt(index); local
455 Object object = get(index); local
468 Object object = opt(index); local
480 Object object = get(index); local
493 Object object = opt(index); local
    [all...]
  /dalvik/vm/mterp/armv4t/
OP_IGET_WIDE_QUICK.S 2 %verify "null object"
5 GET_VREG(r3, r2) @ r3<- object we're operating on
7 cmp r3, #0 @ check object for null
9 beq common_errNullObject @ object was null
10 add r9, r3, r1 @ r9<- object + offset
  /dalvik/vm/mterp/armv5te/
OP_IGET_QUICK.S 2 %verify "null object"
3 /* For: iget-quick, iget-object-quick */
6 GET_VREG(r3, r2) @ r3<- object we're operating on
8 cmp r3, #0 @ check object for null
10 beq common_errNullObject @ object was null
OP_IGET_WIDE_QUICK.S 2 %verify "null object"
5 GET_VREG(r3, r2) @ r3<- object we're operating on
7 cmp r3, #0 @ check object for null
9 beq common_errNullObject @ object was null
  /external/bluetooth/glib/gio/
gnativevolumemonitor.c 13 g_native_volume_monitor_finalize (GObject *object)
15 G_OBJECT_CLASS (g_native_volume_monitor_parent_class)->finalize (object);
  /external/webkit/JavaScriptCore/runtime/
BatchedTransitionOptimizer.h 37 BatchedTransitionOptimizer(JSObject* object)
38 : m_object(object)
  /external/webkit/WebCore/html/canvas/
WebGLFramebuffer.cpp 46 void WebGLFramebuffer::_deleteObject(Platform3DObject object)
48 context()->graphicsContext3D()->deleteFramebuffer(object);
WebGLProgram.cpp 46 void WebGLProgram::_deleteObject(Platform3DObject object)
48 context()->graphicsContext3D()->deleteProgram(object);
  /external/webkit/WebCore/loader/
Request.cpp 31 Request::Request(DocLoader* docLoader, CachedResource* object, bool incremental, SecurityCheckPolicy shouldDoSecurityCheck, bool sendResourceLoadCallbacks)
32 : m_object(object)
  /external/webkit/WebCore/platform/mac/
WebCoreObjCExtras.h 38 // object that implements the dealloc method that this function is called from.
39 bool WebCoreObjCScheduleDeallocateOnMainThread(Class cls, id object);
  /external/webkit/WebKit/win/Interfaces/
IGEN_DOMObject.idl 35 object,

Completed in 7559 milliseconds

1 2 34 5 6 7 8 91011>>