Searched refs:value (Results 276 - 300 of 13868) sorted by relevance

<<11121314151617181920>>

/external/clang/test/CXX/temp/temp.decls/temp.class.spec/
H A Dp6.cpp7 static const unsigned value = 0; member in struct:X0::Inner0
11 static const unsigned value = 1; member in struct:X0::Inner0
17 static const unsigned value = 2; member in struct:X0::Inner0
20 int array0[X0<int>::Inner0<int>::value == 0? 1 : -1];
21 int array1[X0<int>::Inner0<int*>::value == 1? 1 : -1];
22 int array2[X0<int>::Inner0<const int*>::value == 2? 1 : -1];
50 static const unsigned value = 3; member in struct:X0::Inner0
53 int array3[X0<float>::Inner0<int>::value == 0? 1 : -1];
54 int array4[X0<float>::Inner0<int*>::value == 3? 1 : -1];
55 int array5[X0<float>::Inner0<const int*>::value
65 static const bool value = true; member in struct:rdar8651930::Outer::Inner
70 static const bool value = false; member in struct:rdar8651930::Outer::Inner
[all...]
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DStringDataItem.java29 /** {@code non-null;} the string value */
30 private final CstString value; field in class:StringDataItem
35 * @param value {@code non-null;} the string value
37 public StringDataItem(CstString value) { argument
38 super(1, writeSize(value));
40 this.value = value;
44 * Gets the write size for a given value.
46 * @param value {
49 writeSize(CstString value) argument
[all...]
/external/llvm/bindings/python/llvm/
H A Dcore.py32 def __init__(self, name, value):
34 self.value = value
40 def from_value(value):
41 """Obtain an OpCode instance from a numeric value."""
42 result = OpCode._value_map.get(value, None)
45 raise ValueError('Unknown OpCode: %d' % value)
50 def register(name, value):
56 if value in OpCode._value_map:
57 raise ValueError('OpCode value alread
[all...]
/external/srtp/crypto/include/
H A Dintegers.h105 extern uint32_t high32(uint64_t value);
106 extern uint32_t low32(uint64_t value);
117 #define PUT_32(addr,value) \
119 ((unsigned char *) (addr))[0] = (value >> 24); \
120 ((unsigned char *) (addr))[1] = (value >> 16) & 0xff; \
121 ((unsigned char *) (addr))[2] = (value >> 8) & 0xff; \
122 ((unsigned char *) (addr))[3] = (value) & 0xff; \
129 #define PUT_32(addr,value) \
131 ((unsigned char *) (addr))[3] = (value >> 24); \
132 ((unsigned char *) (addr))[2] = (value >> 1
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowContentValues.java47 public void put(String key, String value) { argument
48 values.put(key, value);
57 public void put(String key, Byte value) { argument
58 values.put(key, value);
62 public void put(String key, Short value) { argument
63 values.put(key, value);
67 public void put(String key, Integer value) { argument
68 values.put(key, value);
72 public void put(String key, Long value) { argument
73 values.put(key, value);
77 put(String key, Float value) argument
82 put(String key, Double value) argument
87 put(String key, Boolean value) argument
92 put(String key, byte[] value) argument
[all...]
H A DShadowFloatMath.java27 public static float floor(float value) { argument
28 return (float) Math.floor(value);
32 public static float ceil(float value) { argument
33 return (float) Math.ceil(value);
47 public static float sqrt(float value) { argument
48 return (float) Math.sqrt(value);
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DLeb128Utils.java33 * given value.
35 * @param value the value in question
38 public static int unsignedLeb128Size(int value) { argument
41 int remaining = value >> 7;
54 * given value.
56 * @param value the value in question
59 public static int signedLeb128Size(int value) { argument
62 int remaining = value >>
132 writeUnsignedLeb128(ByteOutput out, int value) argument
148 writeSignedLeb128(ByteOutput out, int value) argument
[all...]
/external/elfutils/src/
H A Dunaligned.h70 /* Macros to store value at unaligned address. */
71 #define store_2ubyte_unaligned(ptr, value) \
72 (void) (((union u_2ubyte_unaligned *) (ptr))->u = target_bswap_16 (value))
73 #define store_4ubyte_unaligned(ptr, value) \
74 (void) (((union u_4ubyte_unaligned *) (ptr))->u = target_bswap_32 (value))
75 #define store_8ubyte_unaligned(ptr, value) \
76 (void) (((union u_8ubyte_unaligned *) (ptr))->u = target_bswap_64 (value))
79 /* Macros to add value to unaligned address. This is a bit more
80 complicated since the value must be read from memory and eventually
83 # define add_2ubyte_unaligned(ptr, value) \
[all...]
/external/llvm/bindings/ocaml/target/
H A Dtarget_ocaml.c22 CAMLprim LLVMTargetDataRef llvm_targetdata_create(value StringRep) {
27 CAMLprim value llvm_targetdata_add(LLVMTargetDataRef TD, LLVMPassManagerRef PM){
33 CAMLprim value llvm_targetdata_as_string(LLVMTargetDataRef TD) {
35 value Copy = copy_string(StringRep);
41 CAMLprim value llvm_targetdata_dispose(LLVMTargetDataRef TD) {
47 CAMLprim value llvm_byte_order(LLVMTargetDataRef TD) {
52 CAMLprim value llvm_pointer_size(LLVMTargetDataRef TD) {
57 CAMLprim value llvm_size_in_bits(LLVMTargetDataRef TD, LLVMTypeRef Ty) {
62 CAMLprim value llvm_store_size(LLVMTargetDataRef TD, LLVMTypeRef Ty) {
67 CAMLprim value llvm_abi_siz
[all...]
/external/guava/guava/src/com/google/common/primitives/
H A DUnsignedInteger.java47 private final int value; field in class:UnsignedInteger
49 private UnsignedInteger(int value) { argument
50 this.value = value & 0xffffffff;
55 * equal to {@code value}.
57 public static UnsignedInteger asUnsigned(int value) { argument
58 return new UnsignedInteger(value);
62 * Returns an {@code UnsignedInteger} that is equal to {@code value},
65 public static UnsignedInteger valueOf(long value) { argument
66 checkArgument((value
77 valueOf(BigInteger value) argument
[all...]
/external/chromium/net/http/
H A Dhttp_byte_range.h23 void set_first_byte_position(int64 value) { first_byte_position_ = value; } argument
26 void set_last_byte_position(int64 value) { last_byte_position_ = value; } argument
29 void set_suffix_length(int64 value) { suffix_length_ = value; } argument
/external/chromium_org/net/http/
H A Dhttp_byte_range.h23 void set_first_byte_position(int64 value) { first_byte_position_ = value; } argument
26 void set_last_byte_position(int64 value) { last_byte_position_ = value; } argument
29 void set_suffix_length(int64 value) { suffix_length_ = value; } argument
/external/chromium_org/printing/
H A Dunits.cc12 int ConvertUnit(int value, int old_unit, int new_unit) { argument
15 // With integer arithmetic, to divide a value with correct rounding, you need
16 // to add half of the divisor value to the dividend value. You need to do the
18 if (value >= 0) {
19 return ((value * new_unit) + (old_unit / 2)) / old_unit;
21 return ((value * new_unit) - (old_unit / 2)) / old_unit;
25 double ConvertUnitDouble(double value, double old_unit, double new_unit) { argument
28 return value * new_unit / old_unit;
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DPromiseResolver.idl35 [Custom] void fulfill(optional any value);
36 [Custom] void resolve(optional any value);
37 [Custom] void reject(optional any value);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGNumber.h46 SVGNumber(float value) argument
47 : m_value(value)
53 m_value += rhs.value();
57 float value() const { return m_value; } function in class:WebCore::SVGNumber
60 void setValue(float value) { m_value = value; } argument
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DPassTraits.h44 static PassType transfer(Type& value) { return value; } argument
50 static PassType transfer(Type& value) { return value.release(); } argument
56 static PassType transfer(Type& value) { return value.release(); } argument
/external/elfutils/backends/
H A Dppc_attrs.c37 ppc_check_object_attribute (ebl, vendor, tag, value, tag_name, value_name)
41 uint64_t value;
56 if (value < sizeof fp_kinds / sizeof fp_kinds[0])
57 *value_name = fp_kinds[value];
66 if (value < sizeof vector_kinds / sizeof vector_kinds[0])
67 *value_name = vector_kinds[value];
/external/guava/guava/src/com/google/common/collect/
H A DImmutableEntry.java32 private final V value; field in class:ImmutableEntry
34 ImmutableEntry(@Nullable K key, @Nullable V value) { argument
36 this.value = value;
44 return value;
47 @Override public final V setValue(V value){ argument
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/
H A DBTree.java32 private Object value; field in class:BTree
35 * Adds a leaf value to a binary path specified by path
38 * @param value
40 public void addString(String path, Object value) { argument
42 this.value = value;
56 branch.addString(path.substring(1), value);
67 return value;
/external/qemu/hw/
H A Dgoldfish_trace.c66 static void trace_dev_write(void *opaque, target_phys_addr_t offset, uint32_t value) argument
74 DPID("QEMU.trace: context switch tid=%u\n", value);
76 trace_switch(value);
77 D("QEMU.trace: kernel, context switch %u\n", value);
81 memcheck_switch(value);
84 tid = (unsigned) value;
87 DPID("QEMU.trace: tgid=%u\n", value);
88 tgid = value;
90 D("QEMU.trace: kernel, tgid %u\n", value);
94 DPID("QEMU.trace: fork (pid=%d tgid=%d value
[all...]
/external/chromium_org/tools/json_schema_compiler/test/
H A Derror_generation_unittest.cc17 std::string GetPopulateError(const base::Value& value) { argument
20 T::Populate(value, &test_type, &error);
28 scoped_ptr<DictionaryValue> value = Dictionary( local
30 EXPECT_EQ("", GetPopulateError<TestType>(*value));
33 scoped_ptr<base::BinaryValue> value(new base::BinaryValue());
35 GetPopulateError<TestType>(*value));
41 scoped_ptr<base::ListValue> value(new base::ListValue());
42 EXPECT_EQ("", GetPopulateError<ChoiceType::Integers>(*value));
45 scoped_ptr<base::BinaryValue> value(new base::BinaryValue());
47 GetPopulateError<ChoiceType::Integers>(*value));
55 scoped_ptr<DictionaryValue> value = Dictionary( local
105 scoped_ptr<DictionaryValue> value = Dictionary( local
110 scoped_ptr<DictionaryValue> value = Dictionary( local
138 scoped_ptr<DictionaryValue> value = Dictionary( local
162 scoped_ptr<DictionaryValue> value = Dictionary( local
167 scoped_ptr<DictionaryValue> value = Dictionary( local
176 scoped_ptr<DictionaryValue> value = Dictionary( local
181 scoped_ptr<DictionaryValue> value = Dictionary( local
192 scoped_ptr<DictionaryValue> value = Dictionary( local
197 scoped_ptr<DictionaryValue> value = Dictionary( local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLOutputElement.cpp65 void HTMLOutputElement::parseAttribute(const QualifiedName& name, const AtomicString& value) argument
68 setFor(value);
70 HTMLFormControlElement::parseAttribute(name, value);
78 void HTMLOutputElement::setFor(const String& value) argument
80 m_tokens->setValue(value);
99 // value mode flag to "default" and then to set the element's textContent
100 // attribute to the default value.
102 if (m_defaultValue == value())
107 String HTMLOutputElement::value() const function in class:WebCore::HTMLOutputElement
112 void HTMLOutputElement::setValue(const String& value) argument
126 setDefaultValue(const String& value) argument
137 setTextContentInternal(const String& value) argument
[all...]
H A DHTMLTablePartElement.cpp49 void HTMLTablePartElement::collectStyleForPresentationAttribute(const QualifiedName& name, const AtomicString& value, MutableStylePropertySet* style) argument
52 addHTMLColorToStyle(style, CSSPropertyBackgroundColor, value);
54 String url = stripLeadingAndTrailingHTMLSpaces(value);
58 if (equalIgnoringCase(value, "top"))
60 else if (equalIgnoringCase(value, "middle"))
62 else if (equalIgnoringCase(value, "bottom"))
64 else if (equalIgnoringCase(value, "baseline"))
67 addPropertyToPresentationAttributeStyle(style, CSSPropertyVerticalAlign, value);
69 if (equalIgnoringCase(value, "middle") || equalIgnoringCase(value, "cente
[all...]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
H A DSampleDependencyTypeBox.java45 public Entry(int value) { argument
46 this.value = value;
49 private int value; field in class:SampleDependencyTypeBox.Entry
53 return (value >> 6) & 0x03;
57 value = (res & 0x03) << 6 | value & 0x3f;
61 return (value >> 4) & 0x03;
65 value = (sdo & 0x03) << 4 | value
[all...]
/external/proguard/src/proguard/optimize/evaluation/
H A DLoadingInvocationUnit.java26 import proguard.evaluation.value.*;
44 * Creates a new LoadingInvocationUnit with the given value factory.
53 * Creates a new LoadingInvocationUnit with the given value factory, for
81 // Retrieve the stored field class value.
82 ReferenceValue value = StoringInvocationUnit.getFieldClassValue((Field)referencedMember);
83 if (value != null &&
84 value.isParticular())
86 return value;
87 // // Make sure the value is refreshed.
88 // return refresh(value);
[all...]

Completed in 2567 milliseconds

<<11121314151617181920>>