/dalvik/vm/mterp/x86-atom/ |
OP_THROW.S | 23 * Description: Throw an exception object in the current thread. 35 je common_errNullObject # handle null object 36 movl rINST, offThread_exception(%ecx) # thread->exception<- object
|
/external/bluetooth/glib/tests/refcount/ |
properties2.c | 3 #include <glib-object.h> 22 GObject object; member in struct:_GTest 36 static void my_test_dispose (GObject * object); 37 static void my_test_get_property (GObject *object, 41 static void my_test_set_property (GObject *object, 102 my_test_dispose (GObject * object) 106 test = MY_TEST (object); 108 g_print ("dispose %p!\n", object); 110 G_OBJECT_CLASS (parent_class)->dispose (object); 114 my_test_get_property (GObject *object, [all...] |
/external/chromium/base/mac/ |
scoped_cftyperef.h | 18 // of a CoreFoundation object: any object that can be represented as a 22 // When ScopedCFTypeRef<> takes ownership of an object (in the constructor or 24 // caller must own the object it gives to ScopedCFTypeRef<>, and relinquishes 25 // an ownership claim to that object. ScopedCFTypeRef<> does not call 32 explicit ScopedCFTypeRef(CFT object = NULL) 33 : object_(object) { 41 void reset(CFT object = NULL) { 44 object_ = object; 70 // a wrapper for CFRelease(). To force a ScopedCFTypeRef<> object to cal [all...] |
/external/chromium/base/ |
message_loop_proxy.h | 50 T* object) { 51 return PostNonNestableTask(from_here, new DeleteTask<T>(object)); 55 T* object) { 56 return PostNonNestableTask(from_here, new ReleaseTask<T>(object));
|
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
bookmark_menu.h | 17 - (void)setRepresentedObject:(id)object;
|
/external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/collision/ |
RagdollCollisionListener.java | 15 public void collide(Bone bone, PhysicsCollisionObject object, PhysicsCollisionEvent event);
|
/external/jpeg/ |
jmemnobs.c | 41 jpeg_free_small (j_common_ptr cinfo, void * object, size_t sizeofobject) 43 free(object); 61 jpeg_free_large (j_common_ptr cinfo, void FAR * object, size_t sizeofobject) 63 free(object);
|
/external/llvm/tools/llvm-rtdyld/ |
Makefile | 12 LINK_COMPONENTS := all-targets support MC object RuntimeDyld JIT
|
/external/llvm/tools/llvm-stress/ |
Makefile | 12 LINK_COMPONENTS := object
|
/external/proguard/src/proguard/classfile/attribute/preverification/ |
StackMapFrame.java | 49 public Object visitorInfo; 79 public Object getVisitorInfo() 84 public void setVisitorInfo(Object visitorInfo) 90 // Implementations for Object. 92 public boolean equals(Object object) 94 if (object == null || 95 this.getClass() != object.getClass()) 100 StackMapFrame other = (StackMapFrame)object;
|
/external/qemu/distrib/jpeg-6b/ |
jmemnobs.c | 41 jpeg_free_small (j_common_ptr cinfo, void * object, size_t sizeofobject) 43 free(object); 61 jpeg_free_large (j_common_ptr cinfo, void FAR * object, size_t sizeofobject) 63 free(object);
|
/external/replicaisland/src/com/replica/replicaisland/ |
FixedSizeArray.java | 30 * @param <T> The type of object that this array contains. 44 mContents = (T[])new Object[size]; 54 mContents = (T[])new Object[size]; 63 * Inserts a new object into the array. If the array is full, an assert is thrown and the 64 * object is ignored. 66 public final void add(T object) { 69 mContents[mCount] = object; 76 * Searches for an object and removes it from the array if it is found. Other indexes in the 77 * array are shifted up to fill the space left by the removed object. Note that if 78 * ignoreComparator is set to true, a linear search of object references will be performed [all...] |
/external/webkit/Source/WebCore/bindings/v8/ |
IDBBindingUtilities.cpp | 60 v8::Local<v8::Object> object = v8Value->ToObject(); local 61 if (!object->Has(indexOrName)) 63 v8Value = object->Get(indexOrName); 70 v8::Local<v8::Object> object = v8Object->ToObject(); local 71 ASSERT(!object->Has(indexOrName)); 72 return object->Set(indexOrName, v8Value); 75 bool get(v8::Handle<v8::Value>& object, const IDBKeyPathElement& keyPathElement) 79 return object->IsArray() && getValueFrom(keyPathElement.index, object) [all...] |
/external/webkit/Source/WebCore/rendering/ |
RenderCounter.h | 60 inline RenderCounter* toRenderCounter(RenderObject* object) 62 ASSERT(!object || object->isCounter()); 63 return static_cast<RenderCounter*>(object);
|
RenderDetails.h | 66 inline RenderDetails* toRenderDetails(RenderObject* object) 68 ASSERT(!object || object->isDetails()); 69 return static_cast<RenderDetails*>(object);
|
RenderEmbeddedObject.h | 80 inline RenderEmbeddedObject* toRenderEmbeddedObject(RenderObject* object) 82 ASSERT(!object || !strcmp(object->renderName(), "RenderEmbeddedObject")); 83 return static_cast<RenderEmbeddedObject*>(object);
|
RenderListItem.h | 87 inline RenderListItem* toRenderListItem(RenderObject* object) 89 ASSERT(!object || object->isListItem()); 90 return static_cast<RenderListItem*>(object);
|
RenderTextControlMultiLine.h | 58 inline RenderTextControlMultiLine* toRenderTextControlMultiLine(RenderObject* object) 60 ASSERT(!object || object->isTextArea()); 61 return static_cast<RenderTextControlMultiLine*>(object);
|
RenderVideo.h | 82 inline RenderVideo* toRenderVideo(RenderObject* object) 84 ASSERT(!object || object->isVideo()); 85 return static_cast<RenderVideo*>(object);
|
/external/webkit/Source/WebKit/gtk/webkit/ |
webkitwebplugindatabaseprivate.h | 23 #include <glib-object.h>
|
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/Bindings/ |
EventSendingController.idl | 29 void mouseDown(in long buttonNumber, in object modifierArray); 30 void mouseUp(in long buttonNumber, in object modifierArray);
|
/frameworks/base/core/jni/ |
android_os_Parcel.h | 23 // Conversion from Java Parcel Object to C++ Parcel instance. 27 extern void recycleJavaParcelObject(JNIEnv* env, jobject object);
|
/libcore/luni/src/main/java/java/util/ |
AbstractSet.java | 37 * Compares the specified object to this Set and returns true if they are 38 * equal. The object must be an instance of Set and contain the same 41 * @param object 42 * the object to compare with this set. 43 * @return {@code true} if the specified object is equal to this set, 48 public boolean equals(Object object) { 49 if (this == object) { 52 if (object instanceof Set) { 53 Set<?> s = (Set<?>) object; [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/util/ |
RangeArray.java | 25 mData = (T[]) new Object[max - min + 1]; 38 public void put(int i, T object) { 39 mData[i - mOffset] = object; 46 public int indexOf(T object) { 48 if (mData[i] == object) return i + mOffset;
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/ |
DictionaryExtensions.cs | 45 public static bool containsKey(IDictionary map, object key) { 50 public static object get(IDictionary map, object key) { 91 public static void put(IDictionary map, object key, object value) { 106 public static HashSet<object> keySet(IDictionary map) { 107 return new HashSet<object>(map.Keys.Cast<object>()); 122 public static HashSet<object> keySet<TKey, TValue>(SortedList<TKey, TValue> map) { 123 return new HashSet<object>(map.Keys.Cast<object>()) [all...] |