Searched defs:value (Results 1 - 25 of 7203) 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/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);
12 X::X(int value) { argument
19 // CHECK: load-classes.cpp:4:9: ParmDecl=value:4:9 (Definition) Extent=[4:5 - 4:14]
30 // CHECK: load-classes.cpp:12:10: ParmDecl=value:12:10 (Definition) Extent=[12:6 - 12:15]
/external/clang/test/PCH/
H A Dobjc_property.h4 int value; variable
10 @property int value; variable
H A Dmultiple_decls.h3 struct wide { int value; }; member in struct:wide
/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/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/chrome/browser/chromeos/
H A Dcros_settings_provider.cc14 void CrosSettingsProvider::Set(const std::string& path, Value* value) { argument
23 DoSet(path, value);
/external/chromium/chrome/browser/policy/
H A Dconfiguration_policy_store_interface.cc25 Value* value) {
26 next_->Apply(policy, value);
33 Value* value) {
34 // Apply() takes ownership of |value|.
36 next_->Apply(policy, value);
38 delete value;
24 Apply(ConfigurationPolicyType policy, Value* value) argument
32 Apply(ConfigurationPolicyType policy, Value* value) argument
/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/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/bindings/v8/
H A DScriptString.h43 explicit ScriptString(v8::Handle<v8::String> value) : ScriptValue(value) { } argument
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dlocalaudiosource_unittest.cc57 bool value; local
58 EXPECT_TRUE(source->options().echo_cancellation.Get(&value));
59 EXPECT_FALSE(value);
60 EXPECT_TRUE(source->options().experimental_aec.Get(&value));
61 EXPECT_TRUE(value);
62 EXPECT_TRUE(source->options().auto_gain_control.Get(&value));
63 EXPECT_TRUE(value);
64 EXPECT_TRUE(source->options().experimental_agc.Get(&value));
65 EXPECT_TRUE(value);
66 EXPECT_TRUE(source->options().noise_suppression.Get(&value));
76 bool value; local
88 bool value; local
102 bool value; local
116 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/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/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];
H A Dp5-0x.cpp8 static const bool value = false; member in struct:has_nondeduced_pack_test
14 static const bool value = true; member in struct:has_nondeduced_pack_test
21 int(float, double)>::value? 1 : -1];
H A Dp8-0x.cpp8 static const unsigned value = 0; member in struct:member_pointer_kind
13 static const unsigned value = 1; member in struct:member_pointer_kind
18 static const unsigned value = 2; member in struct:member_pointer_kind
23 static const unsigned value = 3; member in struct:member_pointer_kind
28 static const unsigned value = 4; member in struct:member_pointer_kind
33 static const unsigned value = 5; member in struct:member_pointer_kind
38 static const unsigned value = 6; member in struct:member_pointer_kind
43 static_assert(member_pointer_kind<int (X::*)(int)>::value == 1, "");
44 static_assert(member_pointer_kind<int (X::*)(int) &>::value == 2, "");
45 static_assert(member_pointer_kind<int (X::*)(int) &&>::value
[all...]
/external/clang/test/CodeGenCXX/
H A Ddebug-info-ctor.cpp6 int value; member in struct:X
12 value = v;
H A Dforward-enum.cpp4 void bar(MyEnum value) { } argument
7 void foo(MyEnum value) argument
10 bar(value);

Completed in 828 milliseconds

1234567891011>>