HomeSort by relevance Sort by last modified time
    Searched refs:object (Results 151 - 175 of 3359) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/webkit/Source/WebCore/inspector/
InjectedScriptSource.js 54 wrapObject: function(object, groupName, canAccessInspectedWindow)
57 return this._wrapObject(object, groupName);
59 result.type = typeof object;
60 result.description = this._toString(object);
64 inspectNode: function(object)
66 this._inspect(object);
69 _inspect: function(object)
74 var objectId = this._wrapObject(object, "");
77 switch (injectedScript._describe(object)) {
79 var databaseId = InjectedScriptHost.databaseId(object)
    [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/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/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeFilter.cs 98 public virtual void ApplyOnce( object t, Action whichRule )
105 // share TreeParser object but not parsing-related state
118 public virtual void Downup( object t )
121 Func<object, object> pre = delegate(object o)
126 Func<object, object> post = delegate(object o)
  /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/clang/test/Sema/
nonnull.c 9 Class *object; member in union:__anon5627
13 this.object->str = str;
  /external/clang/test/SemaCXX/
builtin_objc_msgSend.cpp 10 inline void TCFReleaseGC(void * object)
13 objc_msgSend((id)object, SEL_release);
  /external/llvm/test/MC/ELF/
entsize.s 8 .type .L.str1,@object # @.str1
13 .type .L.str2,@object # @.str2
20 .type .L.str3,@object # @.str3
25 .type .L.str4,@object # @.str4
  /external/webkit/Source/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/Source/WebCore/rendering/
RenderButton.h 78 inline RenderButton* toRenderButton(RenderObject* object)
80 ASSERT(!object || object->isRenderButton());
81 return static_cast<RenderButton*>(object);
84 inline const RenderButton* toRenderButton(const RenderObject* object)
86 ASSERT(!object || object->isRenderButton());
87 return static_cast<const RenderButton*>(object);
RenderFileUploadControl.h 85 inline RenderFileUploadControl* toRenderFileUploadControl(RenderObject* object)
87 ASSERT(!object || object->isFileUploadControl());
88 return static_cast<RenderFileUploadControl*>(object);
91 inline const RenderFileUploadControl* toRenderFileUploadControl(const RenderObject* object)
93 ASSERT(!object || object->isFileUploadControl());
94 return static_cast<const RenderFileUploadControl*>(object);
RenderImage.h 105 inline RenderImage* toRenderImage(RenderObject* object)
107 ASSERT(!object || object->isRenderImage());
108 return static_cast<RenderImage*>(object);
111 inline const RenderImage* toRenderImage(const RenderObject* object)
113 ASSERT(!object || object->isRenderImage());
114 return static_cast<const RenderImage*>(object);
RenderListMarker.h 84 inline RenderListMarker* toRenderListMarker(RenderObject* object)
86 ASSERT(!object || object->isListMarker());
87 return static_cast<RenderListMarker*>(object);
90 inline const RenderListMarker* toRenderListMarker(const RenderObject* object)
92 ASSERT(!object || object->isListMarker());
93 return static_cast<const RenderListMarker*>(object);
RenderTableRow.h 72 inline RenderTableRow* toRenderTableRow(RenderObject* object)
74 ASSERT(!object || object->isTableRow());
75 return static_cast<RenderTableRow*>(object);
78 inline const RenderTableRow* toRenderTableRow(const RenderObject* object)
80 ASSERT(!object || object->isTableRow());
81 return static_cast<const RenderTableRow*>(object);
RenderWidget.h 82 inline RenderWidget* toRenderWidget(RenderObject* object)
84 ASSERT(!object || object->isWidget());
85 return static_cast<RenderWidget*>(object);
88 inline const RenderWidget* toRenderWidget(const RenderObject* object)
90 ASSERT(!object || object->isWidget());
91 return static_cast<const RenderWidget*>(object);
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGImage.h 81 inline RenderSVGImage* toRenderSVGImage(RenderObject* object)
83 ASSERT(!object || object->isSVGImage());
84 return static_cast<RenderSVGImage*>(object);
87 inline const RenderSVGImage* toRenderSVGImage(const RenderObject* object)
89 ASSERT(!object || object->isSVGImage());
90 return static_cast<const RenderSVGImage*>(object);
RenderSVGInlineText.h 71 inline RenderSVGInlineText* toRenderSVGInlineText(RenderObject* object)
73 ASSERT(!object || object->isSVGInlineText());
74 return static_cast<RenderSVGInlineText*>(object);
77 inline const RenderSVGInlineText* toRenderSVGInlineText(const RenderObject* object)
79 ASSERT(!object || object->isSVGInlineText());
80 return static_cast<const RenderSVGInlineText*>(object);
RenderSVGPath.h 87 inline RenderSVGPath* toRenderSVGPath(RenderObject* object)
89 ASSERT(!object || object->isSVGPath());
90 return static_cast<RenderSVGPath*>(object);
93 inline const RenderSVGPath* toRenderSVGPath(const RenderObject* object)
95 ASSERT(!object || object->isSVGPath());
96 return static_cast<const RenderSVGPath*>(object);
RenderSVGText.h 87 inline RenderSVGText* toRenderSVGText(RenderObject* object)
89 ASSERT(!object || object->isSVGText());
90 return static_cast<RenderSVGText*>(object);
93 inline const RenderSVGText* toRenderSVGText(const RenderObject* object)
95 ASSERT(!object || object->isSVGText());
96 return static_cast<const RenderSVGText*>(object);
  /external/webkit/Source/WebKit/win/Interfaces/
IGEN_DOMObject.idl 35 object,
  /external/webkit/Source/WebKit2/UIProcess/mac/
WebPreferencesMac.mm 41 id object = [[NSUserDefaults standardUserDefaults] objectForKey:makeKey(identifier, key)];
42 if (!object)
44 if (![object isKindOfClass:[NSString class]])
47 store.setStringValueForKey(key, (NSString *)object);
52 id object = [[NSUserDefaults standardUserDefaults] objectForKey:makeKey(identifier, key)];
53 if (!object)
55 if (![object respondsToSelector:@selector(boolValue)])
58 store.setBoolValueForKey(key, [object boolValue]);
63 id object = [[NSUserDefaults standardUserDefaults] objectForKey:makeKey(identifier, key)];
64 if (!object)
    [all...]
  /libcore/luni/src/main/java/java/util/
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...]
ListIterator.java 28 * Inserts the specified object into the list between {@code next} and
29 * {@code previous}. The object inserted will be the previous object.
31 * @param object
32 * the object to insert.
36 * if the class of the object is inappropriate for the list.
38 * if the object cannot be added to the list.
40 void add(E object);
60 * Returns the next object in the iteration.
62 * @return the next object
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
ASN1ValueCollection.java 50 * Provides an object's values to be encoded
55 * @param - an object to be encoded
56 * @return - a collection of object's values to be encoded
58 public Collection<?> getValues(Object object) {
59 return (Collection<?>) object;

Completed in 1727 milliseconds

1 2 3 4 5 67 8 91011>>