Searched refs:object (Results 51 - 75 of 3367) sorted by relevance

1234567891011>>

/external/proguard/src/proguard/evaluation/value/
H A DConvertedFloatValue.java45 public boolean equals(Object object) argument
47 return this == object ||
48 super.equals(object) &&
49 this.value.equals(((ConvertedFloatValue)object).value);
H A DConvertedIntegerValue.java45 public boolean equals(Object object) argument
47 return this == object ||
48 super.equals(object) &&
49 this.value.equals(((ConvertedIntegerValue)object).value);
H A DConvertedLongValue.java45 public boolean equals(Object object) argument
47 return this == object ||
48 super.equals(object) &&
49 this.value.equals(((ConvertedLongValue)object).value);
H A DConvertedShortValue.java45 public boolean equals(Object object) argument
47 return this == object ||
48 super.equals(object) &&
49 this.value.equals(((ConvertedShortValue)object).value);
H A DIdentifiedDoubleValue.java46 public boolean equals(Object object) argument
48 return this == object ||
49 super.equals(object) &&
50 this.valuefactory.equals(((IdentifiedDoubleValue)object).valuefactory) &&
51 this.id == ((IdentifiedDoubleValue)object).id;
H A DIdentifiedFloatValue.java46 public boolean equals(Object object) argument
48 return this == object ||
49 super.equals(object) &&
50 this.valuefactory.equals(((IdentifiedFloatValue)object).valuefactory) &&
51 this.id == ((IdentifiedFloatValue)object).id;
H A DIdentifiedIntegerValue.java46 public boolean equals(Object object) argument
48 return this == object ||
49 super.equals(object) &&
50 this.valuefactory.equals(((IdentifiedIntegerValue)object).valuefactory) &&
51 this.id == ((IdentifiedIntegerValue)object).id;
H A DIdentifiedLongValue.java46 public boolean equals(Object object) argument
48 return this == object ||
49 super.equals(object) &&
50 this.valuefactory.equals(((IdentifiedLongValue)object).valuefactory) &&
51 this.id == ((IdentifiedLongValue)object).id;
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringImplMac.mm30 // Use HardAutorelease to return an object made by a CoreFoundation
32 // object. CF objects need to be "made collectable" for autorelease to work
35 static inline id HardAutorelease(CFTypeRef object)
37 if (object)
38 CFMakeCollectable(object);
39 [(id)object autorelease];
40 return (id)object;
/external/chromium_org/v8/test/mjsunit/
H A Dvalue-wrapper-accessor.js29 // numbers, we should create a wrapper object in sloppy mode.
33 function test(object, prototype) {
52 nonstrict(object);
53 nonstrict(object);
56 nonstrict(object);
57 assertEquals("object", typeof result);
59 strict(object);
60 strict(object);
63 strict(object);
64 assertEquals(typeof object, typeo
[all...]
H A Dobject-define-properties.js30 // object-define-property.js, this file only contains tests specific for
31 // Object.defineProperties. Also note that object-create.js contains
33 // Object.defineProperties as a step in setting up the object.
39 assertTrue(/null to object/.test(e));
42 // Try defining with null as object
46 assertTrue(/called on non-object/.test(e));
52 // Check that we actually get the object back as returnvalue
62 var object = {};
65 Object.defineProperties(object, {
71 assertEquals(undefined, object
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dobjfmt.h3 * \brief YASM object format module interface.
38 /** #yasm_objfmt_module implementation for this object format. */
45 /** One-line description of the object format. */
48 /** Keyword used to select object format. */
65 * valid to use with this object format. The null debug format
82 /** Create object format.
85 * \param object object
89 /*@null@*/ /*@only@*/ yasm_objfmt * (*create) (yasm_object *object);
105 yasm_section * (*add_default_section) (yasm_object *object);
[all...]
H A Ddbgfmt.h57 * \param object object
58 * \return NULL if object format does not provide needed support.
60 /*@null@*/ /*@only@*/ yasm_dbgfmt * (*create) (yasm_object *object);
70 void (*generate) (yasm_object *object, yasm_linemap *linemap,
84 * \param object object to generate debugging information for
85 * \return NULL if object format does not provide needed support.
88 (const yasm_dbgfmt_module *module, yasm_object *object);
96 * \param object objec
[all...]
/external/chromium_org/ppapi/c/dev/
H A Dppp_class_deprecated.h27 * object being implemented.
41 * array access into the object. This test should only return true for
44 bool (*HasProperty)(void* object,
54 bool (*HasMethod)(void* object,
61 * array access into the object. If the property does not exist, set the
65 struct PP_Var (*GetProperty)(void* object,
83 void (*GetAllPropertyNames)(void* object,
92 void (*SetProperty)(void* object,
101 void (*RemoveProperty)(void* object,
111 struct PP_Var (*Call)(void* object,
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dbind_unittest.cc36 MethodBindTester object = {0}; local
37 EXPECT_EQ(0, object.call_count);
38 Bind(&MethodBindTester::NullaryVoid, &object)();
39 EXPECT_EQ(1, object.call_count);
40 EXPECT_EQ(1, Bind(&MethodBindTester::NullaryInt, &object)());
41 EXPECT_EQ(2, object.call_count);
43 static_cast<const MethodBindTester*>(&object))());
44 EXPECT_EQ(3, object.call_count);
45 Bind(&MethodBindTester::UnaryVoid, &object, 5)();
46 EXPECT_EQ(4, object
[all...]
/external/chromium_org/base/win/
H A Dscoped_select_object.h16 // Helper class for deselecting object from DC.
19 ScopedSelectObject(HDC hdc, HGDIOBJ object) argument
21 oldobj_(SelectObject(hdc, object)) {
23 DCHECK(object);
28 HGDIOBJ object = SelectObject(hdc_, oldobj_); local
29 DCHECK((GetObjectType(oldobj_) != OBJ_REGION && object != NULL) ||
30 (GetObjectType(oldobj_) == OBJ_REGION && object != HGDI_ERROR));
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dliterals-optimized.js30 // Test optimized versions of array and object literals.
76 // Test shallow object literal.
80 function verify_obj_shallow(object, a, b, c) {
81 assertSame(a, object.x);
82 assertSame(b, object.y);
83 assertSame(c, object.z);
84 assertSame('foo', object.v);
85 assertSame('bar', object[9]);
90 // Test nested object literal.
94 function verify_obj_nested(object,
[all...]
H A Dregress-3249650.js36 var object = { a: "", b: false, c: {}};
37 object.f = function(x) { return this; }
46 object.f("A").b = true;
47 object.f("B").a = "";
48 object.f("C").c.display = "A";
49 object.f("D").c.display = "A";
/external/guava/guava-testlib/src/com/google/common/testing/
H A DSerializableTester.java26 * Tests serialization and deserialization of an object, optionally asserting
27 * that the resulting object is equal to the original.
44 * Serializes and deserializes the specified object.
51 * <p>Note that the specified object may not be known by the compiler to be a
55 * @return the re-serialized object
56 * @throws RuntimeException if the specified object was not successfully
60 public static <T> T reserialize(T object) { argument
61 return Platform.reserialize(object);
65 * Serializes and deserializes the specified object and verifies that the
66 * re-serialized object i
94 reserializeAndAssert(T object) argument
[all...]
/external/llvm/tools/llvm-objdump/
H A Dllvm-objdump.h19 namespace object { namespace in namespace:llvm
30 bool RelocAddressLess(object::RelocationRef a, object::RelocationRef b);
33 void printCOFFUnwindInfo(const object::COFFObjectFile* o);
34 void printELFFileHeader(const object::ObjectFile *o);
35 void printCOFFFileHeader(const object::ObjectFile *o);
/external/chromium_org/ppapi/proxy/
H A Dplugin_resource_tracker.cc35 PP_Resource PluginResourceTracker::AddResource(Resource* object) { argument
37 DCHECK(!object->host_resource().host_resource() ||
38 (host_resource_map_.find(object->host_resource()) ==
41 PP_Resource ret = ResourceTracker::AddResource(object);
44 if (object->host_resource().host_resource())
45 host_resource_map_.insert(std::make_pair(object->host_resource(), ret));
49 void PluginResourceTracker::RemoveResource(Resource* object) { argument
50 ResourceTracker::RemoveResource(object);
52 if (!object->host_resource().is_null()) {
55 DCHECK(host_resource_map_.find(object
[all...]
/external/chromium-trace/trace-viewer/src/tracing/analysis/
H A Dgeneric_object_view.css6 x-generic-object-view {
/external/chromium_org/third_party/WebKit/Source/core/html/track/
H A DTrackEvent.idl29 [InitializedByEventConstructor, Custom=Getter] readonly attribute object track;
/external/chromium_org/v8/test/webkit/fast/js/
H A Dexception-properties.js26 function enumerableProperties(object)
29 for (var i in object)
/external/guava/guava-gwt/src-super/com/google/common/testing/super/com/google/common/testing/
H A DPlatform.java28 * Serializes and deserializes the specified object (a no-op under GWT).
31 static <T> T reserialize(T object) { argument
32 return checkNotNull(object);

Completed in 433 milliseconds

1234567891011>>