HomeSort by relevance Sort by last modified time
    Searched refs:object (Results 151 - 175 of 10855) sorted by null

1 2 3 4 5 67 8 91011>>

  /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.27/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/libmojo/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
DataHeader.java 27 * The size of the object owning this header.
32 * Number of element (for an array) or version (for a struct) of the object owning this
47 * @see Object#hashCode()
59 * @see Object#equals(Object)
62 public boolean equals(Object object) {
63 if (object == this) return true;
64 if (object == null) return false;
65 if (getClass() != object.getClass()) return false
    [all...]
  /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/autotest/frontend/client/src/autotest/moblab/rpc/
ConnectedBoard.java 32 public void fromJson(JSONObject object) {
33 this.model = getStringFieldOrDefault(object, JSON_FIELD_MODEL, "");
34 this.board = getStringFieldOrDefault(object, JSON_FIELD_BOARD, "");
39 JSONObject object = new JSONObject(); local
40 object.put(JSON_FIELD_BOARD, new JSONString(board));
41 object.put(JSON_FIELD_MODEL, new JSONString(model));
42 return object;
  /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...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/lib64/clang/5.0.2/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...]
  /prebuilts/clang/host/linux-x86/clang-4479392/lib64/clang/5.0.2/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...]
  /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...]

Completed in 851 milliseconds

1 2 3 4 5 67 8 91011>>