Searched defs:value (Results 301 - 325 of 7203) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/mesa/src/src/mesa/main/tests/
H A Denum_strings.cpp43 int value; member in struct:enum_info
54 _mesa_lookup_enum_by_nr(everything[i].value));
61 EXPECT_EQ(everything[i].value,
72 EXPECT_EQ(alternate_names[i].value,
82 /* Please type the name and the value. This makes it easier to detect
83 * enums with the same value but different names. The current list is
84 * sorted by enum value. Please keep it that way.
507 /* This should be included, but it's value collides with GL_HINT_BIT. The
1061 * accidentally assigned the same value. The generator script
1130 * assigned the same value
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/asn1/
H A Da_utf8.c67 * to the string and the length of the string. It sets 'value' to the value of
79 unsigned long value; local
84 /* Check syntax and work out the encoded value (if correct) */
86 value = *p++ & 0x7f;
91 value = (*p++ & 0x1f) << 6;
92 value |= *p++ & 0x3f;
93 if(value < 0x80) return -4;
99 value = (*p++ & 0xf) << 12;
100 value |
155 UTF8_putc(unsigned char *str, int len, unsigned long value) argument
[all...]
/external/chromium_org/third_party/opus/src/silk/
H A Dsort.c47 opus_int32 value; local
60 /* Sort vector elements by value, increasing order */
62 value = a[ i ];
63 for( j = i - 1; ( j >= 0 ) && ( value < a[ j ] ); j-- ) {
64 a[ j + 1 ] = a[ j ]; /* Shift value */
67 a[ j + 1 ] = value; /* Write value */
74 value = a[ i ];
75 if( value < a[ K - 1 ] ) {
76 for( j = K - 2; ( j >= 0 ) && ( value <
96 opus_int value; local
140 opus_int value; local
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Dgenerated_enum_reflection.h60 // enum name of the given type, returning true and filling in value on success,
61 // or returning false and leaving value unchanged on failure.
64 int* value);
69 EnumType* value) {
72 *value = static_cast<EnumType>(tmp);
76 // Just a wrapper around printing the name of a value. The main point of this
79 LIBPROTOBUF_EXPORT const string& NameOfEnum(const EnumDescriptor* descriptor, int value);
67 ParseNamedEnum(const EnumDescriptor* descriptor, const string& name, EnumType* value) argument
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
H A Dstringprintf_unittest.cc64 string value("Hello");
66 StringAppendF(&value, "%s", empty);
67 EXPECT_EQ("Hello", value);
71 string value("Hello");
72 StringAppendF(&value, "%s", "");
73 EXPECT_EQ("Hello", value);
77 string value("Hello");
78 StringAppendF(&value, " %s", "World");
79 EXPECT_EQ("Hello World", value);
83 string value("Hell
99 string value = StringPrintf("%.*s", 3, kInvalidCodePoint); local
125 string value = StringPrintf("%.*s", 3, "\\375\\067s"); local
135 string value = StringPrintf("Hello, %s!", "World"); local
145 string value = StringPrintf("%s", buf); local
[all...]
H A Dtemplate_util_unittest.cc36 // value is assigned true or false sequentially.
56 EXPECT_TRUE(true_type::value);
57 EXPECT_FALSE(false_type::value);
60 EXPECT_EQ(1, one_type::value);
65 EXPECT_TRUE(if_true::value);
68 EXPECT_FALSE(if_false::value);
73 bool value = false; local
76 value = type_equals_<int, int>::value;
77 EXPECT_TRUE(value);
91 bool value = false; local
[all...]
/external/chromium_org/third_party/re2/re2/testing/
H A Dre2_arg_test.cc17 int64 value; member in struct:re2::SuccessTable
26 // type can contain the given value.
28 // string integer value short ushort int uint int64 uint64
104 ASSERT_EQUALS(r, kSuccessTable[i].value); \
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Dspinlock_posix-inl.h44 void SpinLockDelay(volatile Atomic32 *w, int32 value, int loop) { argument
H A Dspinlock_win32-inl.h40 void SpinLockDelay(volatile Atomic32 *w, int32 value, int loop) { argument
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Dspinlock_posix-inl.h44 void SpinLockDelay(volatile Atomic32 *w, int32 value, int loop) { argument
H A Dspinlock_win32-inl.h40 void SpinLockDelay(volatile Atomic32 *w, int32 value, int loop) { argument
/external/chromium_org/tools/gn/
H A Doutput_file.h22 std::string& value() { return value_; } function in class:OutputFile
23 const std::string& value() const { return value_; } function in class:OutputFile
27 return SourceFile(build_settings->build_dir().value() + value_);
/external/chromium_org/tools/json_schema_compiler/test/
H A Denums_unittest.cc16 DictionaryValue value; local
17 value.Set("type", Value::CreateStringValue("one"));
18 EXPECT_TRUE(EnumType::Populate(value, &enum_type));
20 EXPECT_TRUE(value.Equals(enum_type.ToValue().get()));
24 DictionaryValue value; local
25 value.Set("type", Value::CreateStringValue("invalid"));
26 EXPECT_FALSE(EnumType::Populate(value, &enum_type));
45 DictionaryValue value; local
46 ASSERT_FALSE(HasEnumeration::Populate(value, &enumeration));
48 value
111 DictionaryValue value; local
119 DictionaryValue value; local
126 DictionaryValue value; local
[all...]
/external/chromium_org/ui/gfx/
H A Dsafe_integer_conversions.h15 inline int ClampToInt(float value) { argument
16 if (value != value)
18 if (value >= std::numeric_limits<int>::max())
20 if (value <= std::numeric_limits<int>::min())
22 return static_cast<int>(value);
25 inline int ToFlooredInt(float value) { argument
26 return ClampToInt(std::floor(value));
29 inline int ToCeiledInt(float value) { argument
30 return ClampToInt(std::ceil(value));
33 ToRoundedInt(float value) argument
42 IsExpressibleAsInt(float value) argument
[all...]
/external/chromium_org/v8/src/
H A Dcompiler-intrinsics.h37 // Undefined for zero value.
38 INLINE(static int CountTrailingZeros(uint32_t value));
41 // Undefined for zero value.
42 INLINE(static int CountLeadingZeros(uint32_t value));
45 INLINE(static int CountSetBits(uint32_t value));
49 int CompilerIntrinsics::CountTrailingZeros(uint32_t value) { argument
50 return __builtin_ctz(value);
53 int CompilerIntrinsics::CountLeadingZeros(uint32_t value) { argument
54 return __builtin_clz(value);
57 int CompilerIntrinsics::CountSetBits(uint32_t value) { argument
66 CountTrailingZeros(uint32_t value) argument
72 CountLeadingZeros(uint32_t value) argument
78 CountSetBits(uint32_t value) argument
[all...]
H A Dhydrogen-dehoist.cc53 int32_t value = constant->Integer32Value() * sign; local
56 if (value >= 1 << 30 || value < 0) return;
61 array_operation->SetIndexOffset(static_cast<uint32_t>(value));
H A Dhydrogen-minus-zero.cc42 Representation from = change->value()->representation();
49 PropagateMinusZeroChecks(change->value());
58 void HComputeMinusZeroChecksPhase::PropagateMinusZeroChecks(HValue* value) { argument
59 for (HValue* current = value;
H A Dhydrogen-redundant-phi.cc53 HValue* value = it.value(); local
54 value->SetOperandAt(it.index(), replacement);
55 need_another_iteration |= value->IsPhi();
H A Dv8conversions.h38 if (number->IsSmi()) return Smi::cast(number)->value();
44 if (number->IsSmi()) return Smi::cast(number)->value();
49 // Converts a string into a double value according to ECMA-262 9.3.1
63 return Smi::cast(number)->value();
66 double value = HeapNumber::cast(number)->value(); local
67 return static_cast<size_t>(value);
/external/chromium_org/v8/test/mjsunit/
H A Darray-iteration.js46 var o = { value: 42 }
48 assertArrayEquals([42,42], a.filter(function(n) { return this.value == n }, o))
85 var o = { value: 42 }
87 a.forEach(function(n) { result.push(this.value); }, o);
127 var o = { value: 42 }
129 assertFalse(a.every(function(n) { return this.value == n; }, o));
131 assertTrue(a.every(function(n) { return this.value == n; }, o));
H A Ddefine-property-gc.js38 var descElementNonWritable = { value: 'foofoo', writable: false };
/external/chromium_org/v8/test/webkit/fast/js/
H A Dread-modify-eval.js25 'Tests whether eval() works inside statements that read and modify a value.'
107 var x = { value: 0 };
108 ++eval('x').value;
109 return x.value == 1;
114 var x = { value: 0 };
115 --eval('x').value;
116 return x.value == -1;
121 var x = { value: 0 };
122 eval('x').value++;
123 return x.value
[all...]
/external/clang/test/Analysis/
H A Dcomparison-implicit-casts.cpp9 // constrained, it should cast the value to the result type in a binary
27 // Create a value that requires more bits to store than a comparison result.
28 int value = 1; local
29 value <<= 8 * comparisonSize;
30 value += 1;
32 // Constrain the value of x.
33 if (x != value) return;
52 // Constrain the value of x.
59 // Construct a value that cannot be represented by 'char',
61 signed int value local
82 size_t value = 1UL; local
[all...]
/external/clang/test/CXX/basic/basic.link/
H A Dp6.cpp17 int value = sizeof(test0_array); // expected-error {{invalid application of 'sizeof' to an incomplete type 'int []'}} member in namespace:test0
32 int value = sizeof(test2_array); // expected-error {{invalid application of 'sizeof' to an incomplete type 'int []'}} member in namespace:test2
/external/clang/test/CXX/basic/basic.scope/basic.scope.pdecl/
H A Dp9.cpp7 template<> struct X0<unsigned char> { static const bool value = true; }; member in struct:X0
8 int array0[X0<>::value? 1 : -1];
13 template<> struct X1<17> { static const bool value = true; }; member in struct:X1
14 int array1[X1<>::value? 1 : -1];
18 template<> struct X2<X0> { static const bool value = true; }; member in struct:X2
19 int array2[X2<>::value? 1 : -1];

Completed in 785 milliseconds

<<11121314151617181920>>