Searched defs:value (Results 1 - 25 of 7729) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/ocmock/OCMock/
H A DOCMPassByRefSetter.h10 id value; variable
13 - (id)initWithValue:(id)value;
15 - (id)value;
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-1491.js36 var value = "asdf"; variable
37 o.length = value;
38 assertEquals(value, o.length);
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/public/
H A DRTCPair.h30 // A class to hold a key and value.
34 @property(nonatomic, strong, readonly) NSString *value; variable
36 // Initialize a RTCPair object with a key and value.
37 - (id)initWithKey:(NSString *)key value:(NSString *)value;
/external/clang/test/Index/
H A Dload-classes.cpp4 X(int value);
23 X::X(int value) { argument
30 // CHECK: load-classes.cpp:4:9: ParmDecl=value:4:9 (Definition) Extent=[4:5 - 4:14]
51 // CHECK: load-classes.cpp:23:10: ParmDecl=value:23:10 (Definition) Extent=[23:6 - 23:15]
/external/clang/test/PCH/
H A Dobjc_property.h4 int value; variable
10 @property int value; variable
/external/aac/libFDK/include/mips/
H A Dclz_mips.h96 inline INT fixnormz_D(LONG value) argument
99 __asm__ ("clz %0,%1" : "=d" (result) : "d" (value));
107 INT inline fixnormz_D(LONG value) argument
110 __asm__ ("clz %[result], %[value]" : [result] "=r" (result) : [value] "r" (value)) ;
/external/chromium_org/base/
H A Dbits_unittest.cc20 unsigned int value = 1U << i; local
21 EXPECT_EQ(i, Log2Floor(value));
22 EXPECT_EQ(i, Log2Floor(value + 1));
23 EXPECT_EQ(i, Log2Floor(value + 2));
24 EXPECT_EQ(i - 1, Log2Floor(value - 1));
25 EXPECT_EQ(i - 1, Log2Floor(value - 2));
37 unsigned int value = 1U << i; local
38 EXPECT_EQ(i, Log2Ceiling(value));
39 EXPECT_EQ(i + 1, Log2Ceiling(value + 1));
40 EXPECT_EQ(i + 1, Log2Ceiling(value
[all...]
/external/chromium_org/base/strings/
H A Dnullable_string16.cc13 std::ostream& operator<<(std::ostream& out, const NullableString16& value) { argument
14 return value.is_null() ? out << "(null)" : out << UTF16ToUTF8(value.string());
/external/chromium_org/cc/animation/
H A Dscroll_offset_animation_curve_unittest.cc80 gfx::Vector2dF value = curve->GetValue(duration/4.0); local
81 EXPECT_NEAR(3.0333f, value.x(), 0.00015f);
82 EXPECT_NEAR(37.4168f, value.y(), 0.00015f);
116 gfx::Vector2dF value = local
118 EXPECT_NEAR(3.0333f, value.x(), 0.00015f);
119 EXPECT_NEAR(37.4168f, value.y(), 0.00015f);
/external/chromium_org/chrome/browser/mac/
H A Dobsolete_system.cc17 int value; local
18 size_t valueSize = sizeof(value);
19 if (sysctlbyname("hw.cpu64bit_capable", &value, &valueSize, NULL, 0) != 0) {
22 return value == 0;
/external/chromium_org/chrome/browser/policy/
H A Djavascript_policy_handler_unittest.cc40 const base::Value* value = NULL; local
42 &value));
43 EXPECT_TRUE(base::FundamentalValue(CONTENT_SETTING_BLOCK).Equals(value));
55 const base::Value* value = NULL; local
57 &value));
58 EXPECT_TRUE(base::FundamentalValue(CONTENT_SETTING_BLOCK).Equals(value));
67 &value));
68 EXPECT_TRUE(base::FundamentalValue(CONTENT_SETTING_ALLOW).Equals(value));
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Dutil.cc10 std::string SerializeValue(const base::Value* value) { argument
12 base::JSONWriter::Write(value, &json);
/external/chromium_org/gpu/command_buffer/common/
H A Dbitfield_helpers_test.cc14 unsigned int value = 0x12345678u; local
15 EXPECT_EQ(0x8u, (BitField<0, 4>::Get(value)));
16 EXPECT_EQ(0x45u, (BitField<12, 8>::Get(value)));
17 EXPECT_EQ(0x12345678u, (BitField<0, 32>::Get(value)));
29 unsigned int value = 0x12345678u; local
30 BitField<0, 4>::Set(&value, 0x9);
31 EXPECT_EQ(0x12345679u, value);
32 BitField<12, 8>::Set(&value, 0x123);
33 EXPECT_EQ(0x12323679u, value);
34 BitField<0, 32>::Set(&value,
[all...]
/external/chromium_org/net/base/
H A Durl_util_unittest.cc14 // Appending a name-value pair to a URL without a query component.
15 EXPECT_EQ("http://example.com/path?name=value",
17 "name", "value").spec());
19 // Appending a name-value pair to a URL with a query component.
22 EXPECT_EQ("http://example.com/path?existing=one&name=value",
24 "name", "value").spec());
26 // Appending a name-value pair with unsafe characters included. The
35 // Appending a name-value pair to a URL without a query component.
36 EXPECT_EQ("http://example.com/path?name=value",
38 "name", "value")
87 std::string value; local
105 std::string value; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSParserValuesTest.cpp91 CSSParserValue value; local
92 value.setFromNumber(3);
93 list.addValue(value);
/external/chromium_org/third_party/WebKit/Source/platform/animation/
H A DKeyframeValueList.cpp32 void KeyframeValueList::insert(PassOwnPtr<const AnimationValue> value) argument
36 if (curValue->keyTime() == value->keyTime()) {
39 m_values.insert(i + 1, value);
42 if (curValue->keyTime() > value->keyTime()) {
44 m_values.insert(i, value);
49 m_values.append(value);
/external/chromium_org/third_party/brotli/src/brotli/dec/
H A Dhuffman.h30 uint16_t value; /* symbol value or table offset */ member in struct:__anon10872
/external/chromium_org/third_party/brotli/src/woff2/
H A Dround.h22 // Round a value up to the nearest multiple of 4. Don't round the value in the
24 template<typename T> T Round4(T value) { argument
25 if (std::numeric_limits<T>::max() - value < 3) {
26 return value;
28 return (value + 3) & ~3;
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dlocalaudiosource_unittest.cc59 bool value; local
60 EXPECT_TRUE(source->options().echo_cancellation.Get(&value));
61 EXPECT_FALSE(value);
62 EXPECT_TRUE(source->options().experimental_aec.Get(&value));
63 EXPECT_TRUE(value);
64 EXPECT_TRUE(source->options().auto_gain_control.Get(&value));
65 EXPECT_TRUE(value);
66 EXPECT_TRUE(source->options().experimental_agc.Get(&value));
67 EXPECT_TRUE(value);
68 EXPECT_TRUE(source->options().noise_suppression.Get(&value));
79 bool value; local
92 bool value; local
107 bool value; local
122 bool value; local
[all...]
/external/chromium_org/third_party/npapi/npspy/extern/nspr/obsolete/
H A Dprsem.h52 NSPR_API(PRSemaphore*) PR_NewSem(PRUintn value); variable
64 ** state of the semahore sem. The thread can proceed only if the counter value
65 ** of the semaphore sem is currently greater than 0. If the value of semaphore
67 ** allowing the calling thread to continue. If the value of semaphore sem is 0,
77 ** This routine increments the counter value of the semaphore. If other threads
84 ** Returns the value of the semaphore referenced by sem without affecting
85 ** the state of the semaphore. The value represents the semaphore vaule
86 F** at the time of the call, but may not be the actual value when the
/external/chromium_org/third_party/webrtc/system_wrappers/interface/
H A Dfix_interlocked_exchange_pointer_win.h30 inline void* InterlockedExchangePointer(void* volatile* target, void* value) { argument
33 static_cast<LONG>(reinterpret_cast<LONG_PTR>(value)))));
/external/chromium_org/ui/base/touch/
H A Dtouch_device_win.cc12 int value = GetSystemMetrics(SM_DIGITIZER); local
13 return (value & NID_READY) &&
14 ((value & NID_INTEGRATED_TOUCH) || (value & NID_EXTERNAL_TOUCH));
/external/chromium_org/v8/test/webkit/fast/js/
H A DPromise-resolve-with-then-fulfill.js30 var value = {
32 testPassed('value.then is called.');
34 shouldBe('thisValue', 'value');
40 resolve(value);
H A DPromise-resolve-with-then-reject.js30 var value = {
32 testPassed('value.then is called.');
34 shouldBe('thisValue', 'value');
40 resolve(value);
/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

Completed in 792 milliseconds

1234567891011>>