Searched refs:object (Results 101 - 125 of 3537) sorted by relevance

1234567891011>>

/external/autotest/server/cros/faft/config/
H A Dsnow.py8 class Values(object):
H A Dspring.py8 class Values(object):
H A Dstumpy.py8 class Values(object):
/external/caliper/caliper/src/main/java/com/google/caliper/bridge/
H A DRenderer.java20 String render(T object); argument
/external/chromium-trace/catapult/telemetry/third_party/modulegraph/modulegraph_tests/testpkg-compatmodule/pkg/
H A Dapi2.py10 class MyClass (object):
/external/chromium-trace/catapult/third_party/gsutil/gslib/
H A Dcred_types.py20 class CredTypes(object):
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/operation/
H A Dbase.py24 class Operation(object):
/external/libchrome/base/
H A Dsequenced_task_runner.cc20 const void* object) {
21 return PostNonNestableTask(from_here, Bind(deleter, object));
27 const void* object) {
28 return PostNonNestableTask(from_here, Bind(releaser, object));
17 DeleteSoonInternal( const tracked_objects::Location& from_here, void(*deleter)(const void*), const void* object) argument
24 ReleaseSoonInternal( const tracked_objects::Location& from_here, void(*releaser)(const void*), const void* object) argument
/external/llvm/test/MC/ELF/
H A Dcommon.s7 .type common1,@object
24 .type common2,@object
53 .type common3,@object
75 .type common4,@object
/external/llvm/tools/obj2yaml/
H A DMakefile12 LINK_COMPONENTS := object
/external/llvm/tools/yaml2obj/
H A DMakefile12 LINK_COMPONENTS := object
/external/proguard/src/proguard/evaluation/value/
H A DNegatedDoubleValue.java52 public boolean equals(Object object) argument
54 return this == object ||
55 super.equals(object) &&
56 this.doubleValue.equals(((NegatedDoubleValue)object).doubleValue);
H A DNegatedFloatValue.java52 public boolean equals(Object object) argument
54 return this == object ||
55 super.equals(object) &&
56 this.floatValue.equals(((NegatedFloatValue)object).floatValue);
H A DNegatedIntegerValue.java52 public boolean equals(Object object) argument
54 return this == object ||
55 super.equals(object) &&
56 this.integerValue.equals(((NegatedIntegerValue)object).integerValue);
H A DNegatedLongValue.java52 public boolean equals(Object object) argument
54 return this == object ||
55 super.equals(object) &&
56 this.longValue.equals(((NegatedLongValue)object).longValue);
H A DComparisonValue.java48 public boolean equals(Object object) argument
50 return this == object ||
51 super.equals(object) &&
52 this.value1.equals(((ComparisonValue)object).value1) &&
53 this.value2.equals(((ComparisonValue)object).value2);
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/
H A DFormatter.java24 * @param <T> the type of the object to be transformed.
31 * Performs the transformation of an object into a string representation.
33 public abstract String format(T object); argument
36 * Performs the transformation of an object into a string representation in
45 @Override final public String apply(T object) { argument
46 return format(object);
/external/flac/libFLAC/include/private/
H A Dformat.h41 void FLAC__format_entropy_coding_method_partitioned_rice_contents_init(FLAC__EntropyCodingMethod_PartitionedRiceContents *object);
42 void FLAC__format_entropy_coding_method_partitioned_rice_contents_clear(FLAC__EntropyCodingMethod_PartitionedRiceContents *object);
43 FLAC__bool FLAC__format_entropy_coding_method_partitioned_rice_contents_ensure_size(FLAC__EntropyCodingMethod_PartitionedRiceContents *object, unsigned max_partition_order);
/external/replicaisland/src/com/replica/replicaisland/
H A DMovementComponent.java40 GameObject object = (GameObject) parent;
42 sInterpolator.set(object.getVelocity().x, object.getTargetVelocity().x,
43 object.getAcceleration().x);
45 float newX = object.getPosition().x + offsetX;
48 sInterpolator.set(object.getVelocity().y, object.getTargetVelocity().y,
49 object.getAcceleration().y);
51 float newY = object.getPosition().y + offsetY;
54 if (object
[all...]
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/
H A DMissingProperty.java37 public void set(Object object, Object value) throws Exception { argument
41 public Object get(Object object) { argument
42 return object;
H A DFieldProperty.java39 public void set(Object object, Object value) throws Exception { argument
40 field.set(object, value);
44 public Object get(Object object) { argument
46 return field.get(object);
48 throw new YAMLException("Unable to access field " + field.getName() + " on object "
49 + object + " : " + e);
/external/snakeyaml/src/test/java/examples/
H A DAnyObjectExampleTest.java29 String doc = Util.getLocalResource("examples/any-object-example.yaml");
31 Map<String, Object> object = (Map<String, Object>) yaml.load(doc);
32 assertEquals(6, object.size());
33 assertEquals("[null, null]", object.get("none").toString());
34 List<?> list1 = (List<?>) object.get("none");
40 assertEquals("[true, false, true, false]", object.get("bool").toString());
41 assertEquals(4, ((List<?>) object.get("bool")).size());
43 assertEquals(new Integer(42), object.get("int"));
44 assertEquals(new Double(3.14159), object.get("float"));
46 assertEquals("[LITE, RES_ACID, SUS_DEXT]", object
[all...]
/external/v8/test/mjsunit/
H A Dcall-cross-realm.js6 var object = Realm.eval(1, "Object"); variable
11 assertEquals(object.prototype, f.call(number).__proto__.__proto__);
12 assertEquals(object.prototype, number.f().__proto__.__proto__);
/external/v8/test/mjsunit/harmony/
H A Dreflect-set-prototype-of.js94 var object = objects[i];
98 Reflect.setPrototypeOf(object, proto);
106 function TestSetPrototypeOf(object, proto) {
107 assertTrue(Reflect.setPrototypeOf(object, proto));
108 assertEquals(Object.getPrototypeOf(object), proto);
137 var object = objects[i];
138 Object.preventExtensions(object);
140 assertTrue(Reflect.setPrototypeOf(object, Object.getPrototypeOf(object)));
142 assertFalse(Reflect.setPrototypeOf(object, prot
[all...]
/external/clang/test/Sema/
H A Doverloaded-func-transparent-union.c12 Class *object; member in union:__anon2625
16 this.object->str = str;
17 this.object->str2 = str2;
21 this.object->str = str;
22 this.object->str2 = str;

Completed in 883 milliseconds

1234567891011>>