/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 debuginfo
|
/external/llvm/tools/llvm-stress/ |
Makefile | 12 LINK_COMPONENTS := object
|
/external/llvm/unittests/DebugInfo/ |
Makefile | 12 LINK_COMPONENTS := debuginfo object support
|
/external/mockito/src/org/mockito/internal/matchers/ |
ContainsExtraTypeInformation.java | 14 boolean typeMatches(Object 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...] |
/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...] |
/ndk/tests/device/test-stlport_shared-exception/jni/ |
eh31.cpp | 18 catch (Foo& object) {
|
p7912.cpp | 20 catch (Foo object) {
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
eh31.cpp | 18 catch (Foo& object) {
|
p7912.cpp | 20 catch (Foo object) {
|
/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;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
ObjectBrowser.py | 7 # object browser 10 # - for classes/modules, add "open source" to object browser 21 def __init__(self, labeltext, object, setfunction=None): 23 self.object = object 28 return myrepr.repr(self.object) 41 self.object = value 43 return not not dir(self.object) 45 keys = dir(self.object) 49 value = getattr(self.object, key [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
pydoc_mod.py | 14 class B(object):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
ObjectBrowser.py | 7 # object browser 10 # - for classes/modules, add "open source" to object browser 21 def __init__(self, labeltext, object, setfunction=None): 23 self.object = object 28 return myrepr.repr(self.object) 41 self.object = value 43 return not not dir(self.object) 45 keys = dir(self.object) 49 value = getattr(self.object, key [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
pydoc_mod.py | 14 class B(object):
|
/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...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
TreeRewriter.cs | 62 public virtual object ApplyOnce( object t, Func<IAstRuleReturnScope> whichRule ) 69 // share TreeParser object but not parsing-related state 94 public virtual object ApplyRepeatedly( object t, Func<IAstRuleReturnScope> whichRule ) 99 object u = ApplyOnce( t, whichRule ); 106 public virtual object Downup( object t ) 111 public virtual object Downup( object t, bool showTransformations [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/ |
DictionaryExtensions.cs | 44 public static bool containsKey( this IDictionary map, object key ) 50 public static object get( this IDictionary map, object key ) 93 public static void put( this IDictionary map, object key, object value ) 111 public static HashSet<object> keySet( this IDictionary map ) 113 return new HashSet<object>( map.Keys.Cast<object>() ); 130 public static HashSet<object> keySet<TKey, TValue>( this SortedList<TKey, TValue> map ) 132 return new HashSet<object>( map.Keys.Cast<object>() ) [all...] |
/external/chromium_org/ppapi/proxy/ |
ppp_class_proxy.cc | 47 bool HasProperty(void* object, PP_Var name, PP_Var* exception) { 48 ObjectProxy* obj = ToObjectProxy(object); 60 bool HasMethod(void* object, PP_Var name, PP_Var* exception) { 61 ObjectProxy* obj = ToObjectProxy(object); 73 PP_Var GetProperty(void* object, 76 ObjectProxy* obj = ToObjectProxy(object); 88 void GetAllPropertyNames(void* object, 96 void SetProperty(void* object, 100 ObjectProxy* obj = ToObjectProxy(object); 111 void RemoveProperty(void* object, [all...] |
/libcore/json/src/main/java/org/json/ |
JSONObject.java | 52 * coerced using {@link String#valueOf(Object)}. Although null cannot be 70 * named entry from the object but {@code put(name, JSONObject.NULL)} stores an 94 * <p>This value violates the general contract of {@link Object#equals} by 98 public static final Object NULL = new Object() { 99 @Override public boolean equals(Object o) { 107 private final Map<String, Object> nameValuePairs; 113 nameValuePairs = new HashMap<String, Object>(); 143 * object in the tokener. 155 Object object = readFrom.nextValue() local 376 Object object = get(name); local 397 Object object = opt(name); local 410 Object object = get(name); local 431 Object object = opt(name); local 444 Object object = get(name); local 465 Object object = opt(name); local 479 Object object = get(name); local 503 Object object = opt(name); local 515 Object object = get(name); local 536 Object object = opt(name); local 549 Object object = get(name); local 562 Object object = opt(name); local 574 Object object = get(name); local 587 Object object = opt(name); local [all...] |
/dalvik/vm/mterp/armv6t2/ |
OP_IGET_QUICK.S | 2 %verify "null object" 3 /* For: iget-quick, iget-object-quick */ 7 GET_VREG(r3, r2) @ r3<- object we're operating on 9 cmp r3, #0 @ check object for null 10 beq common_errNullObject @ object was null
|