/prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/ |
stdatomic.h | 342 * No native support for _Atomic(). Place object in structure to prevent 397 #define atomic_compare_exchange_strong_explicit(object, expected, \ 399 __c11_atomic_compare_exchange_strong(object, expected, desired, \ 401 #define atomic_compare_exchange_weak_explicit(object, expected, \ 403 __c11_atomic_compare_exchange_weak(object, expected, desired, \ 405 #define atomic_exchange_explicit(object, desired, order) \ 406 __c11_atomic_exchange(object, desired, order) 407 #define atomic_fetch_add_explicit(object, operand, order) \ 408 __c11_atomic_fetch_add(object, operand, order) 409 #define atomic_fetch_and_explicit(object, operand, order) [all...] |
/development/ndk/platforms/android-9/arch-mips/src/ |
crtend_android.S | 39 .type __CTOR_END__, @object 44 .type __DTOR_END__, @object 50 .type __FRAME_END__, @object
|
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/ |
Formatter.java | 24 * @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); 36 * Performs the transformation of an object into a string representation in 38 * to {@link #format(Object)}. 45 @Override final public String apply(T object) { 46 return format(object);
|
/external/flac/libFLAC/include/private/ |
format.h | 41 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/ |
MovementComponent.java | 40 GameObject object = (GameObject) parent; local 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.positionLocked == false) [all...] |
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/ |
MissingProperty.java | 25 super(name, Object.class); 37 public void set(Object object, Object value) throws Exception { 41 public Object get(Object object) { 42 return object;
|
FieldProperty.java | 39 public void set(Object object, Object value) throws Exception { 40 field.set(object, value); 44 public Object get(Object object) { 46 return field.get(object); 48 throw new YAMLException("Unable to access field " + field.getName() + " on object " 49 + object + " : " + e) [all...] |
/external/snakeyaml/src/test/java/examples/ |
AnyObjectExampleTest.java | 29 String doc = Util.getLocalResource("examples/any-object-example.yaml"); 31 Map<String, Object> object = (Map<String, Object>) yaml.load(doc); local 32 assertEquals(6, object.size()); 33 assertEquals("[null, null]", object.get("none").toString()); 34 List<?> list1 = (List<?>) object.get("none"); 36 for (Object object2 : list1) { 40 assertEquals("[true, false, true, false]", object.get("bool").toString()); 41 assertEquals(4, ((List<?>) object.get("bool")).size()) [all...] |
/frameworks/base/core/java/android/util/ |
FloatProperty.java | 21 * calls to a {@link #setValue(Object, float) setValue()} function that takes the primitive 34 * A type-specific variant of {@link #set(Object, Float)} that is faster when dealing 37 public abstract void setValue(T object, float value); 40 final public void set(T object, Float value) { 41 setValue(object, value);
|
IntProperty.java | 21 * calls to a {@link #setValue(Object, int) setValue()} function that takes the primitive 34 * A type-specific variant of {@link #set(Object, Integer)} that is faster when dealing 37 public abstract void setValue(T object, int value); 40 final public void set(T object, Integer value) { 41 setValue(object, value.intValue());
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/ |
pic-and-nonpic-4a.s | 7 .type obj1,%object 8 .type obj2,%object 9 .type obj3,%object
|
/art/test/423-invoke-interface/src/ |
Main.java | 98 public static void $opt$InvokeInterface(Itf object, int factor) { 99 assertEquals(factor * 1, object.return1()); 100 assertEquals(factor * 2, object.return2()); 101 assertEquals(factor * 3, object.return3()); 102 assertEquals(factor * 4, object.return4()); 103 assertEquals(factor * 5, object.return5()); 104 assertEquals(factor * 6, object.return6()); 105 assertEquals(factor * 7, object.return7()); 106 assertEquals(factor * 8, object.return8()); 107 assertEquals(factor * 9, object.return9()) [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
CommonTreeAdaptor.cs | 60 public override object DupNode(object t) { 67 public override object Create(IToken payload) { 116 public override void SetTokenBoundaries(object t, IToken startToken, IToken stopToken) { 133 public override int GetTokenStartIndex(object t) { 140 public override int GetTokenStopIndex(object t) { 147 public override string GetText(object t) { 154 public override int GetType(object t) { 167 public override IToken GetToken(object t) { 174 public override object GetChild(object t, int i) [all...] |
RewriteRuleNodeStream.cs | 53 object oneElement 61 IList<object> elements 65 public object NextNode() { 69 override protected object ToTree(object el) { 73 protected override object Dup(object el) {
|
RewriteRuleTokenStream.cs | 55 object oneElement 63 IList<object> elements 71 /// ITreeAdaptor.Create() returns an object, so no further restrictions possible. 73 public virtual object NextNode() { 86 override protected object ToTree(object el) { 90 protected override object Dup(object el) {
|
/external/proguard/src/proguard/evaluation/value/ |
ComparisonValue.java | 46 // Implementations for Object. 48 public boolean equals(Object object) 50 return this == object || 51 super.equals(object) && 52 this.value1.equals(((ComparisonValue)object).value1) && 53 this.value2.equals(((ComparisonValue)object).value2);
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/generics/ |
ObjectValues.java | 22 private Object object; field in class:ObjectValues 23 private Map<String, Map<Integer, Object>> values; 26 public Object getObject() { 27 return object; 30 public void setObject(Object object) { 31 this.object = object; 34 public void setValues(Map<String, Map<Integer, Object>> values) [all...] |
ObjectValuesWithParam.java | 22 private Object object; field in class:ObjectValuesWithParam 23 private Map<T, Map<S, Object>> values; 26 public Object getObject() { 27 return object; 30 public void setObject(Object object) { 31 this.object = object; 34 public void setValues(Map<T, Map<S, Object>> values) [all...] |
/external/tpm2/ |
ReadPublic.c | 14 // TPM_RC_SEQUENCE can not read the public area of a sequence object 22 OBJECT *object; local 26 // Get loaded object pointer 27 object = ObjectGet(in->objectHandle); 29 // Can not read public area of a sequence object 30 if(ObjectIsSequence(object)) 36 out->outPublic.t.size = TPMT_PUBLIC_Marshal(&object->publicArea, NULL, NULL); 39 out->outPublic.t.publicArea = object->publicArea;
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
IDebugEventListener.cs | 112 * which Token object was examined. Like consumeToken, this indicates 181 * data fields are transmitted. The token object or whatever that 182 * caused the problem was the last object referenced by LT. The 284 void ConsumeNode(object t); 292 void LT(int i, object t); 312 void NilNode(object t); 321 void ErrorNode(object t); 331 void CreateNode(object t); 341 void CreateNode(object node, IToken token); 361 void BecomeRoot(object newRoot, object oldRoot) [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Debug/ |
IDebugEventListener.cs | 114 * which Token object was examined. Like consumeToken, this indicates 183 * data fields are transmitted. The token object or whatever that 184 * caused the problem was the last object referenced by LT. The 286 void ConsumeNode( object t ); 294 void LT( int i, object t ); 314 void NilNode( object t ); 323 void ErrorNode( object t ); 333 void CreateNode( object t ); 343 void CreateNode( object node, IToken token ); 363 void BecomeRoot( object newRoot, object oldRoot ) [all...] |
/external/libgdx/gdx/src/com/badlogic/gdx/utils/ |
Pool.java | 48 /** Returns an object from this pool. The object may be new (from {@link #newObject()}) or reused (previously
49 * {@link #free(Object) freed}). */
54 /** Puts the specified object in the pool, making it eligible to be returned by {@link #obtain()}. If the pool already contains
55 * {@link #max} free objects, the specified object is reset but not added to the pool. */
56 public void free (T object) {
57 if (object == null) throw new IllegalArgumentException("object cannot be null.");
59 freeObjects.add(object);
62 reset(object);
78 T object = objects.get(i); local [all...] |
/external/clang/lib/Headers/ |
stdatomic.h | 131 #define atomic_store(object, desired) __c11_atomic_store(object, desired, __ATOMIC_SEQ_CST) 134 #define atomic_load(object) __c11_atomic_load(object, __ATOMIC_SEQ_CST) 137 #define atomic_exchange(object, desired) __c11_atomic_exchange(object, desired, __ATOMIC_SEQ_CST) 140 #define atomic_compare_exchange_strong(object, expected, desired) __c11_atomic_compare_exchange_strong(object, expected, desired, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST) 143 #define atomic_compare_exchange_weak(object, expected, desired) __c11_atomic_compare_exchange_weak(object, expected, desired, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST [all...] |
/external/v8/test/mjsunit/es6/ |
object-literals-method.js | 9 var object = { 14 assertEquals(42, object.method()); 19 var object = { 21 assertEquals(object, this); 24 object.method(); 29 var object = { 35 var desc = Object.getOwnPropertyDescriptor(object, 'method'); 46 var object = { 50 assertEquals(Function.prototype, Object.getPrototypeOf(object.method)) [all...] |
/prebuilts/sdk/renderscript/clang-include/ |
stdatomic.h | 131 #define atomic_store(object, desired) __c11_atomic_store(object, desired, __ATOMIC_SEQ_CST) 134 #define atomic_load(object) __c11_atomic_load(object, __ATOMIC_SEQ_CST) 137 #define atomic_exchange(object, desired) __c11_atomic_exchange(object, desired, __ATOMIC_SEQ_CST) 140 #define atomic_compare_exchange_strong(object, expected, desired) __c11_atomic_compare_exchange_strong(object, expected, desired, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST) 143 #define atomic_compare_exchange_weak(object, expected, desired) __c11_atomic_compare_exchange_weak(object, expected, desired, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST [all...] |