/external/flac/libFLAC/include/private/ |
metadata.h | 41 void FLAC__metadata_object_delete_data(FLAC__StreamMetadata *object); 43 void FLAC__metadata_object_cuesheet_track_delete_data(FLAC__StreamMetadata_CueSheet_Track *object);
|
/external/webkit/Source/WebCore/platform/mac/ |
FoundationExtras.h | 29 // Use HardAutorelease to return an object made by a CoreFoundation 31 // object. CF objects need to be "made collectable" for autorelease to work 34 static inline id HardAutorelease(CFTypeRef object) 36 if (object) 37 CFMakeCollectable(object); 38 [(id)object autorelease]; 39 return (id)object;
|
/external/webkit/Source/WebCore/rendering/ |
RenderIFrame.h | 51 inline RenderIFrame* toRenderIFrame(RenderObject* object) 53 ASSERT(!object || object->isRenderIFrame()); 54 return static_cast<RenderIFrame*>(object); 57 inline const RenderIFrame* toRenderIFrame(const RenderObject* object) 59 ASSERT(!object || object->isRenderIFrame()); 60 return static_cast<const RenderIFrame*>(object);
|
RenderDetailsMarker.h | 49 inline RenderDetailsMarker* toRenderDetailsMarker(RenderObject* object) 51 ASSERT(!object || object->isDetailsMarker()); 52 return static_cast<RenderDetailsMarker*>(object); 55 inline const RenderDetailsMarker* toRenderDetailsMarker(const RenderObject* object) 57 ASSERT(!object || object->isDetailsMarker()); 58 return static_cast<const RenderDetailsMarker*>(object);
|
RenderFrame.h | 49 inline RenderFrame* toRenderFrame(RenderObject* object) 51 ASSERT(!object || object->isFrame()); 52 return static_cast<RenderFrame*>(object);
|
RenderMeter.h | 50 inline RenderMeter* toRenderMeter(RenderObject* object) 52 ASSERT(!object || object->isMeter()); 53 return static_cast<RenderMeter*>(object);
|
RenderSummary.h | 44 inline RenderSummary* toRenderSummary(RenderObject* object) 46 ASSERT(!object || object->isSummary()); 47 return static_cast<RenderSummary*>(object);
|
/external/webkit/Source/WebCore/rendering/mathml/ |
RenderMathMLBlock.h | 55 int getBoxModelObjectHeight(RenderObject* object) 57 if (object && object->isBoxModelObject()) { 58 RenderBoxModelObject* box = toRenderBoxModelObject(object); 64 int getBoxModelObjectHeight(const RenderObject* object) 66 if (object && object->isBoxModelObject()) { 67 const RenderBoxModelObject* box = toRenderBoxModelObject(object); 73 int getBoxModelObjectWidth(RenderObject* object) 75 if (object && object->isBoxModelObject()) [all...] |
/external/elfutils/libebl/ |
eblobjecttypename.c | 1 /* Return object file type name. 24 ebl_object_type_name (ebl, object, buf, len) 26 int object; 32 res = ebl != NULL ? ebl->object_type_name (object, buf, len) : NULL; 36 if (object >= ET_LOOS && object <= ET_HIOS) 37 snprintf (buf, len, "LOOS+%x", object - ET_LOOS); 39 else if (object >= ET_LOPROC && object <= ET_HIPROC) 40 snprintf (buf, len, "LOPROC+%x", object - ET_LOPROC) [all...] |
/libcore/json/src/test/java/org/json/ |
JSONObjectTest.java | 37 JSONObject object = new JSONObject(); local 38 assertEquals(0, object.length()); 40 // bogus (but documented) behaviour: returns null rather than the empty object! 41 assertNull(object.names()); 44 assertNull(object.toJSONArray(new JSONArray())); 45 assertEquals("{}", object.toString()); 46 assertEquals("{}", object.toString(5)); 48 object.get("foo"); 53 object.getBoolean("foo"); 58 object.getDouble("foo") 115 JSONObject object = new JSONObject(); local 139 JSONObject object = new JSONObject(); local 157 JSONObject object = new JSONObject(); local 170 JSONObject object = new JSONObject(); local 181 JSONObject object = new JSONObject(); local 200 JSONObject object = new JSONObject(); local 210 JSONObject object = new JSONObject(); local 248 JSONObject object = new JSONObject(); local 260 JSONObject object = new JSONObject(); local 311 JSONObject object = new JSONObject(); local 348 JSONObject object = new JSONObject(); local 364 JSONObject object = new JSONObject(); local 398 JSONObject object = new JSONObject(); local 450 JSONObject object = new JSONObject(); local 476 JSONObject object = new JSONObject(); local 482 JSONObject object = new JSONObject(); local 492 JSONObject object = new JSONObject(); local 502 JSONObject object = new JSONObject(); local 523 JSONObject object = new JSONObject(); local 545 JSONObject object = new JSONObject(); local 570 JSONObject object = new JSONObject(); local 580 JSONObject object = new JSONObject(); local 588 JSONObject object = new JSONObject(); local 607 JSONObject object = new JSONObject(); local 626 JSONObject object = new JSONObject(); local 654 JSONObject object = new JSONObject(contents); local 662 JSONObject object = new JSONObject(Collections.singletonMap("foo", Double.NaN)); local 669 JSONObject object = new JSONObject(contents); local 686 JSONObject object = new JSONObject(new JSONTokener("{\\"foo\\": false}")); local 716 JSONObject object = new JSONObject("{\\"foo\\": false}"); local 772 JSONObject object = new JSONObject(); local 783 JSONObject object = new JSONObject(); local 790 JSONObject object = new JSONObject(); local 798 JSONObject object = new JSONObject(); local 807 JSONObject object = new JSONObject(); local 814 JSONObject object = new JSONObject(); local 826 JSONObject object = new JSONObject(); local 834 JSONObject object = new JSONObject(); local 852 JSONObject object = new JSONObject(); local 874 JSONObject object = new JSONObject(); local 885 JSONObject object = new JSONObject(); local 895 JSONObject object = new JSONObject(); local 918 JSONObject object = new JSONObject(); local [all...] |
/external/webkit/Source/WebKit/mac/Misc/ |
WebNSNotificationCenterExtras.h | 33 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object; 34 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo; 35 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo waitUntilDone:(BOOL)wait;
|
WebNSNotificationCenterExtras.m | 33 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object 35 [self postNotificationOnMainThreadWithName:name object:object userInfo:nil waitUntilDone:NO]; 38 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo 40 [self postNotificationOnMainThreadWithName:name object:object userInfo:userInfo waitUntilDone:NO]; 43 - (void)postNotificationOnMainThreadWithName:(NSString *)name object:(id)object userInfo:(NSDictionary *)userInfo waitUntilDone:(BOOL)wai [all...] |
/external/webkit/Source/WebCore/bindings/js/ |
JSCanvasRenderingContextCustom.cpp | 40 JSC::JSValue toJS(JSC::ExecState* exec, JSDOMGlobalObject* globalObject, CanvasRenderingContext* object) 42 if (!object) 46 if (object->is3d()) 47 return wrap<JSWebGLRenderingContext>(exec, globalObject, static_cast<WebGLRenderingContext*>(object)); 49 ASSERT(object->is2d()); 50 return wrap<JSCanvasRenderingContext2D>(exec, globalObject, static_cast<CanvasRenderingContext2D*>(object));
|
JSSVGPathSegCustom.cpp | 61 JSValue toJS(ExecState* exec, JSDOMGlobalObject* globalObject, SVGPathSeg* object) 63 if (!object) 66 if (JSDOMWrapper* wrapper = getCachedWrapper(currentWorld(exec), object)) 69 switch (object->pathSegType()) { 71 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPathSegClosePath, object); 73 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPathSegMovetoAbs, object); 75 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPathSegMovetoRel, object); 77 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPathSegLinetoAbs, object); 79 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPathSegLinetoRel, object); 81 return CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, SVGPathSegCurvetoCubicAbs, object); [all...] |
/external/proguard/src/proguard/evaluation/value/ |
ConvertedByteValue.java | 43 // Implementations for Object. 45 public boolean equals(Object object) 47 return this == object || 48 super.equals(object) && 49 this.value.equals(((ConvertedByteValue)object).value);
|
ConvertedCharacterValue.java | 43 // Implementations for Object. 45 public boolean equals(Object object) 47 return this == object || 48 super.equals(object) && 49 this.value.equals(((ConvertedCharacterValue)object).value);
|
ConvertedDoubleValue.java | 43 // Implementations for Object. 45 public boolean equals(Object object) 47 return this == object || 48 super.equals(object) && 49 this.value.equals(((ConvertedDoubleValue)object).value);
|
ConvertedFloatValue.java | 43 // Implementations for Object. 45 public boolean equals(Object object) 47 return this == object || 48 super.equals(object) && 49 this.value.equals(((ConvertedFloatValue)object).value);
|
ConvertedIntegerValue.java | 43 // Implementations for Object. 45 public boolean equals(Object object) 47 return this == object || 48 super.equals(object) && 49 this.value.equals(((ConvertedIntegerValue)object).value);
|
ConvertedLongValue.java | 43 // Implementations for Object. 45 public boolean equals(Object object) 47 return this == object || 48 super.equals(object) && 49 this.value.equals(((ConvertedLongValue)object).value);
|
ConvertedShortValue.java | 43 // Implementations for Object. 45 public boolean equals(Object object) 47 return this == object || 48 super.equals(object) && 49 this.value.equals(((ConvertedShortValue)object).value);
|
/libcore/luni/src/main/java/java/security/ |
Guard.java | 26 * Checks whether access to the specified {@code Object} should be granted. 30 * @param object 31 * the object to be protected by this {@code Guard}. 35 public void checkGuard(Object object) throws SecurityException;
|
GuardedObject.java | 24 * {@code GuardedObject} controls access to an object, by checking all requests 25 * for the object with a {@code Guard}. 31 private final Object object; field in class:GuardedObject 37 * to the specified {@code Object} using the specified {@code Guard}. 39 * @param object 40 * the {@code Object} to protect. 42 * the {@code Guard} which protects the specified {@code Object}, 45 public GuardedObject(Object object, Guard guard) [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Statements/ |
forin-002.js | 44 function ForIn_1( object) { 45 with ( object ) { 46 for ( property in object ) { 49 "with loop in a for...in loop. ("+object+")["+property +"] == "+ 52 object[property] == eval(property) ); 61 function ForIn_2(object) { 62 for ( property in object ) { 63 with ( object ) { 66 "with loop in a for...in loop. ("+object+")["+property +"] == "+ 69 object[property] == eval(property) ) [all...] |
/external/clang/test/Sema/ |
overloaded-func-transparent-union.c | 11 Class *object; member in union:__anon4894 15 this.object->str = str; 16 this.object->str2 = str2; 20 this.object->str = str; 21 this.object->str2 = str;
|