Searched refs:value (Results 176 - 200 of 13868) sorted by relevance

1234567891011>>

/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DCstChar.java27 /** {@code non-null;} the value {@code 0} as an instance of this class */
31 * Makes an instance for the given value. This may (but does not
34 * @param value the {@code char} value
36 public static CstChar make(char value) { argument
37 return new CstChar(value);
41 * Makes an instance for the given {@code int} value. This
45 * @param value the value, which must be in range for a {@code char}
48 public static CstChar make(int value) { argument
64 CstChar(char value) argument
[all...]
H A DCstShort.java27 /** {@code non-null;} the value {@code 0} as an instance of this class */
31 * Makes an instance for the given value. This may (but does not
34 * @param value the {@code short} value
37 public static CstShort make(short value) { argument
38 return new CstShort(value);
42 * Makes an instance for the given {@code int} value. This
46 * @param value the value, which must be in range for a {@code short}
49 public static CstShort make(int value) { argument
65 CstShort(short value) argument
[all...]
/external/proguard/src/proguard/evaluation/value/
H A DSpecificValueFactory.java21 package proguard.evaluation.value;
50 public IntegerValue createIntegerValue(int value) argument
52 switch (value)
61 default: return new ParticularIntegerValue(value);
66 public LongValue createLongValue(long value) argument
68 return value == 0 ? LONG_VALUE_0 :
69 value == 1 ? LONG_VALUE_1 :
70 new ParticularLongValue(value);
74 public FloatValue createFloatValue(float value) argument
76 return value
83 createDoubleValue(double value) argument
[all...]
H A DParticularLongValue.java21 package proguard.evaluation.value;
24 * This LongValue represents a particular long value.
30 private final long value; field in class:ParticularLongValue
34 * Creates a new particular long value.
36 public ParticularLongValue(long value) argument
38 this.value = value;
44 public long value() method in class:ParticularLongValue
46 return value;
54 return new ParticularLongValue(-value);
[all...]
H A DParticularIntegerValue.java21 package proguard.evaluation.value;
24 * This IntegerValue represents a particular integer value.
30 private final int value; field in class:ParticularIntegerValue
34 * Creates a new particular integer value.
36 public ParticularIntegerValue(int value) argument
38 this.value = value;
44 public int value() method in class:ParticularIntegerValue
46 return value;
54 return new ParticularIntegerValue(-value);
[all...]
/external/sfntly/cpp/src/sfntly/port/
H A Dendian.h25 static inline uint16_t EndianSwap16(uint16_t value) { argument
26 return (uint16_t)((value >> 8) | (value << 8));
29 static inline int32_t EndianSwap32(int32_t value) { argument
30 return (((value & 0x000000ff) << 24) |
31 ((value & 0x0000ff00) << 8) |
32 ((value & 0x00ff0000) >> 8) |
33 ((value & 0xff000000) >> 24));
36 static inline uint64_t EndianSwap64(uint64_t value) { argument
37 return (((value
[all...]
/external/srec/srec/cfront/
H A Dsh_down.h36 static PINLINE int shift_up_inline(int value, unsigned int shift);
37 static PINLINE int shift_down_inline(int value, unsigned int shift);
38 static PINLINE int fixed_round(float value);
42 static PINLINE int shift_up_inline(int value, unsigned int shift) argument
48 if (value > 0)
49 temp = value;
51 temp = -value;
57 if (value > 0)
64 static PINLINE int shift_down_inline(int value, unsigned int shift) argument
68 return (value);
93 fixed_round(float value) argument
[all...]
/external/chromium_org/chrome/installer/util/
H A Dmove_tree_work_item.cc32 LOG(ERROR) << source_path_.value() << " does not exist";
48 << temp_dir_.value();
60 VLOG(1) << "Moved source " << source_path_.value()
61 << " to backup path " << backup.value();
66 LOG(ERROR) << "Failed to backup source " << source_path_.value()
67 << " to backup path " << backup.value()
71 VLOG(1) << "Source path " << source_path_.value()
72 << " differs from " << dest_path_.value()
79 VLOG(1) << "Moved destination " << dest_path_.value()
80 << " to backup path " << backup.value();
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dvalue.c37 #include "value.h"
47 yasm_value_initialize(/*@out@*/ yasm_value *value, argument
50 value->abs = e;
51 value->rel = NULL;
52 value->wrt = NULL;
53 value->seg_of = 0;
54 value->rshift = 0;
55 value->curpos_rel = 0;
56 value->ip_rel = 0;
57 value
65 yasm_value_init_sym( yasm_value *value, yasm_symrec *sym, unsigned int size) argument
83 yasm_value_init_copy(yasm_value *value, const yasm_value *orig) argument
100 yasm_value_delete(yasm_value *value) argument
109 yasm_value_set_curpos_rel(yasm_value *value, yasm_bytecode *bc, unsigned int ip_rel) argument
125 value_finalize_scan(yasm_value *value, yasm_expr *e, yasm_bytecode *expr_precbc, int ssym_not_ok) argument
448 yasm_value_finalize_expr(yasm_value *value, yasm_expr *e, yasm_bytecode *precbc, unsigned int size) argument
460 yasm_value_finalize(yasm_value *value, yasm_bytecode *precbc) argument
559 yasm_value_get_intnum(yasm_value *value, yasm_bytecode *bc, int calc_bc_dist) argument
622 yasm_value_output_basic(yasm_value *value, unsigned char *buf, size_t destsize, yasm_bytecode *bc, int warn, yasm_arch *arch) argument
742 yasm_value_print(const yasm_value *value, FILE *f, int indent_level) argument
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowBundle.java44 public void putString(String key, String value) { argument
45 map.put(key, value);
50 Object value = map.get(key);
51 return value == null || !(value instanceof String) ? null : (String) value;
59 Object value = map.get(key);
60 return value == null || !(value instanceof String) ? defaultValue : (String) value;
64 putLong(String key, long value) argument
80 putInt(String key, int value) argument
96 putDouble(String key, double value) argument
112 putByte(String key, byte value) argument
128 putBoolean(String key, boolean value) argument
144 putChar(String key, char value) argument
160 putCharSequence(String key, CharSequence value) argument
171 putShort(String key, short value) argument
187 putFloat(String key, float value) argument
203 putSerializable(String key, Serializable value) argument
214 putParcelable(String key, Parcelable value) argument
219 putParcelableArrayList(String key, ArrayList<? extends Parcelable> value) argument
243 putParcelableArray(String key, Parcelable[] value) argument
248 putStringArrayList(String key, ArrayList<String> value) argument
259 putCharSequenceArrayList(String key, ArrayList<CharSequence> value) argument
271 putIntegerArrayList(String key, ArrayList<Integer> value) argument
282 putBundle(String key, Bundle value) argument
293 putBooleanArray(String key, boolean[] value) argument
304 putByteArray(String key, byte[] value) argument
315 putCharArray(String key, char[] value) argument
326 putDoubleArray(String key, double[] value) argument
337 putFloatArray(String key, float[] value) argument
348 putIntArray(String key, int[] value) argument
359 putLongArray(String key, long[] value) argument
370 putShortArray(String key, short[] value) argument
386 putStringArray(String key, String[] value) argument
397 putCharSequenceArray(String key, CharSequence[] value) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/tests/
H A DCheckedArithmeticOperations.cpp36 Checked<type, RecordOverflow> value; \
37 EXPECT_EQ(coerceLiteral(0), value.unsafeGet()); \
38 EXPECT_EQ(std::numeric_limits<type>::max(), (value + std::numeric_limits<type>::max()).unsafeGet()); \
39 EXPECT_EQ(std::numeric_limits<type>::max(), (std::numeric_limits<type>::max() + value).unsafeGet()); \
40 EXPECT_EQ(std::numeric_limits<type>::min(), (value + std::numeric_limits<type>::min()).unsafeGet()); \
41 EXPECT_EQ(std::numeric_limits<type>::min(), (std::numeric_limits<type>::min() + value).unsafeGet()); \
42 EXPECT_EQ(coerceLiteral(0), (value * coerceLiteral(0)).unsafeGet()); \
43 EXPECT_EQ(coerceLiteral(0), (coerceLiteral(0) * value).unsafeGet()); \
44 EXPECT_EQ(coerceLiteral(0), (value * value)
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DAuditFormatters.js80 * @param {string|boolean|number|Object} value
82 apply: function(value)
85 var type = typeof value;
93 args = [ value.toString() ];
97 if (value instanceof Node)
98 return value;
99 if (value instanceof Array) {
101 args = value;
102 } else if (value.type && value
[all...]
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dfake_free_disk_space_getter.cc18 void FakeFreeDiskSpaceGetter::PushFakeValue(int64 value) { argument
19 fake_values_.push_back(value);
26 const int64 value = fake_values_.front(); local
28 return value;
/external/chromium_org/gpu/command_buffer/client/
H A Dhash_tables.h11 template <typename key, typename value>
12 struct hash_map : public std::tr1::unordered_map<key, value> {
18 template <typename key, typename value>
19 struct hash_map : public base::hash_map<key, value> {
/external/chromium_org/native_client_sdk/src/examples/demo/pi_generator/
H A Dexample.js6 // assumed to contain the current estimated value of Pi. Update the Pi
7 // text display with this value.
9 document.getElementById('pi').value = message_event.data;
/external/chromium_org/third_party/ocmock/
H A Docmock_extensions.h17 - (id)andReturnChar:(char)value;
18 - (id)andReturnUnsignedChar:(unsigned char)value;
19 - (id)andReturnShort:(short)value;
20 - (id)andReturnUnsignedShort:(unsigned short)value;
21 - (id)andReturnInt:(int)value;
22 - (id)andReturnUnsignedInt:(unsigned int)value;
23 - (id)andReturnLong:(long)value;
24 - (id)andReturnUnsignedLong:(unsigned long)value;
25 - (id)andReturnLongLong:(long long)value;
26 - (id)andReturnUnsignedLongLong:(unsigned long long)value;
[all...]
/external/chromium_org/third_party/skia/src/opts/
H A DSkUtils_opts_SSE2.h12 void sk_memset16_SSE2(uint16_t *dst, uint16_t value, int count);
13 void sk_memset32_SSE2(uint32_t *dst, uint32_t value, int count);
/external/chromium_org/third_party/yasm/source/config/win/
H A Dstdint.h27 #define INT64_C(value) value##LL
28 #define UINT64_C(value) value##ULL
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-crbug-72736.js30 // This tests that Object.defineProperty actually allows to change the value of
34 Object.defineProperty(obj, 'foo', { value: 10, configurable: true });
36 Object.defineProperty(obj, 'foo', { value: 20, configurable: true });
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
H A Dp1.cpp24 static int value; member in struct:X
28 int X<T>::value = 17; member in class:X
30 template static int X<int>::value; // expected-error{{explicit instantiation cannot have a storage class}} member in class:X
32 template<> static int X<float>::value; // expected-error{{'static' can only be specified inside the class definition}} member in class:X
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
H A Dp2-0x.cpp14 static const bool value = false; member in struct:same_tuple
19 static const bool value = true; member in struct:same_tuple
22 int same_tuple_check1[same_tuple<tuple<int, float>, tuple<int, double>>::value? -1 : 1];
23 int same_tuple_check2[same_tuple<tuple<float, double>, tuple<float, double>>::value? 1 : -1];
/external/clang/test/CodeGenCXX/
H A Ddebug-info-artificial-arg.cpp11 A(int value) : m_a_value(value) {}; argument
12 A(int value, A* client_A) : m_a_value (value), m_client_A (client_A) {} argument
/external/clang/test/Index/
H A Dgetcursor-pp-pch.c6 OBSCURE(T) DECORATION value;
/external/clang/test/PCH/
H A Dmultiple_decls.h3 struct wide { int value; }; member in struct:wide
/external/clang/test/Sema/
H A Dwarn-gnu-designators.c3 struct { int x, y, z[12]; } value = { x:17, .z [3 ... 5] = 7 }; variable in typeref:struct:__anon16372

Completed in 8020 milliseconds

1234567891011>>