Searched refs:value (Results 201 - 225 of 7546) sorted by relevance

1234567891011>>

/external/chromium/chrome/common/net/gaia/
H A Dgoogle_service_auth_error_unittest.cc23 scoped_ptr<DictionaryValue> value(error.ToValue());
24 EXPECT_EQ(1u, value->size());
26 EXPECT_TRUE(value->GetString("state", &state_str));
41 scoped_ptr<DictionaryValue> value(error.ToValue());
42 EXPECT_EQ(1u, value->size());
43 ExpectStringValue("NONE", *value, "state");
49 scoped_ptr<DictionaryValue> value(error.ToValue());
50 EXPECT_EQ(2u, value->size());
51 ExpectStringValue("CONNECTION_FAILED", *value, "state");
52 ExpectStringValue("net::OK", *value, "networkErro
[all...]
/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...]
H A DStringIdItem.java29 /** {@code non-null;} the string value */
30 private final CstString value; field in class:StringIdItem
38 * @param value {@code non-null;} the string value
40 public StringIdItem(CstString value) { argument
41 if (value == null) {
42 throw new NullPointerException("value == null");
45 this.value = value;
57 return value
[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/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/clang/test/Index/
H A Dget-cursor.cpp10 X getX(int value) { argument
11 switch (value) {
12 case 1: return X(value);
13 case 2: return X(value, value);
14 case 3: return (X)value;
62 // CHECK-VALUE-REF: DeclRefExpr=value:10:12
/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.c65 static void trace_dev_write(void *opaque, target_phys_addr_t offset, uint32_t value) argument
73 DPID("QEMU.trace: context switch tid=%u\n", value);
75 trace_switch(value);
76 D("QEMU.trace: kernel, context switch %u\n", value);
80 memcheck_switch(value);
83 tid = (unsigned) value;
86 DPID("QEMU.trace: tgid=%u\n", value);
87 tgid = value;
89 D("QEMU.trace: kernel, tgid %u\n", value);
93 DPID("QEMU.trace: fork (pid=%d tgid=%d value
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
H A Dexpression-003.js7 Try to access properties of an object whose value is undefined.
31 result = OBJECT.value.toString();
40 "Get the toString value of an object whose value is undefined "+
47 function Property( object, value, string, number ) {
49 this.string = String(value);
50 this.number = Number(value);
51 this.value = value;
H A Dexpression-004.js26 result = OBJECT.value.toString();
34 "Get the toString value of an object whose value is null "+
41 function Property( object, value, string, number ) {
43 this.string = String(value);
44 this.number = Number(value);
45 this.value = value;
/external/webkit/Source/WebKit/chromium/src/
H A DWebIDBDatabaseError.cpp43 void WebIDBDatabaseError::assign(const WebIDBDatabaseError& value) argument
45 m_private = value.m_private;
68 WebIDBDatabaseError::WebIDBDatabaseError(const PassRefPtr<IDBDatabaseError>& value) argument
69 : m_private(value)
73 WebIDBDatabaseError& WebIDBDatabaseError::operator=(const PassRefPtr<IDBDatabaseError>& value) argument
75 m_private = value;
/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...]
/external/v8/test/mjsunit/
H A Ddebug-evaluate-locals.js48 var value = frame.localValue(i).value();
50 assertEquals(1, value);
53 assertEquals(2, value);
71 var value = frame.localValue(i).value();
73 assertEquals(3, value);
95 var value = frame.localValue(i).value();
97 assertEquals(5, value);
[all...]
/external/webkit/Source/WebCore/css/
H A DMediaQueryExp.cpp46 CSSParserValue* value = valueList->current(); local
48 if (value->id != 0)
49 m_value = CSSPrimitiveValue::createIdentifier(value->id);
50 else if (value->unit == CSSPrimitiveValue::CSS_STRING)
51 m_value = CSSPrimitiveValue::create(value->string, (CSSPrimitiveValue::UnitTypes) value->unit);
52 else if (value->unit >= CSSPrimitiveValue::CSS_NUMBER &&
53 value->unit <= CSSPrimitiveValue::CSS_KHZ)
54 m_value = CSSPrimitiveValue::create(value->fValue, (CSSPrimitiveValue::UnitTypes) value
62 CSSParserValue* value = 0; local
[all...]
/external/kernel-headers/original/asm-arm/arch/
H A Dmcbsp.h140 #define RINTM(value) ((value)<<4) /* bits 4:5 */
143 #define CLKSTP(value) ((value)<<11) /* bits 11:12 */
144 #define RJUST(value) ((value)<<13) /* bits 13:14 */
152 #define XINTM(value) ((value)<<4) /* bits 4:5 */
176 #define RWDLEN1(value) ((value)<<
[all...]
/external/webkit/Source/WebCore/bindings/scripts/
H A DInFilesParser.pm77 # - the commonParameterHandler called when parsing the first part of the file with the parameter and the value.
78 # - the perTagHandler called for each optional parameter with the element name, the parameter and its value.
79 # If no parameter were provided, it is called once with an empty parameter and value.
113 my ($name, $value) = split '=', $_;
116 if (defined($value)) {
117 $value = trimQuoteAndWS($value);
120 $value = "1";
123 &$commonParameterHandler($name, $value);
133 my ($option, $value);
[all...]

Completed in 3008 milliseconds

1234567891011>>