HomeSort by relevance Sort by last modified time
    Searched defs:value (Results 1 - 25 of 7778) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/ocmock/OCMock/
OCMPassByRefSetter.h 10 id value; variable
13 - (id)initWithValue:(id)value;
15 - (id)value;
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1491.js 36 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/
RTCPair.h 30 // 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/CodeGenCXX/
catch-undef-behavior2.cpp 3 bool GetOptionalBool(bool *value);
7 bool value; local
8 return GetOptionalBool(&value) ? value : default_value;
debug-info-ctor.cpp 6 int value; member in struct:X
12 value = v;
  /external/clang/test/PCH/
objc_property.h 4 int value; variable
10 @property int value; variable
  /external/compiler-rt/test/asan/TestCases/Helpers/
echo-env.cc 12 const char *value = getenv(argv[1]); local
13 if (value) {
14 printf("%s = %s\n", argv[1], value);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm/
h264bsdCountLeadingZeros.s 25 value RN 0 label
45 CLZ value, value
  /external/aac/libSBRdec/src/
huff_dec.cpp 99 \return decoded value
109 int value, bit; local
116 value = index+64; /* Add offset */
119 return value;
  /external/arduino/hardware/arduino/cores/arduino/
wiring_shift.c 28 uint8_t value = 0; local
34 value |= digitalRead(dataPin) << i;
36 value |= digitalRead(dataPin) << (7 - i);
39 return value;
  /external/chromium_org/base/
bits_unittest.cc 20 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 + 2))
    [all...]
  /external/chromium_org/base/memory/
singleton.cc 15 // We know value != NULL. It could be kBeingCreatedMarker, or a valid ptr.
19 subtle::AtomicWord value; local
24 value = subtle::Acquire_Load(instance);
25 if (value != kBeingCreatedMarker)
29 return value;
  /external/chromium_org/cc/animation/
scroll_offset_animation_curve_unittest.cc 80 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/
obsolete_system.cc 17 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/
javascript_policy_handler_unittest.cc 30 base::Value::CreateBooleanValue(true),
37 base::Value::CreateBooleanValue(false),
40 const base::Value* value = NULL; local
42 &value));
43 EXPECT_TRUE(base::FundamentalValue(CONTENT_SETTING_BLOCK).Equals(value));
52 base::Value::CreateBooleanValue(false),
55 const base::Value* value = NULL; local
57 &value));
    [all...]
  /external/chromium_org/components/storage_monitor/
udev_util_linux.cc 14 const char* value = udev_device_get_property_value(udev_device, key); local
15 return value ? value : std::string();
25 udev.get(), device_path.value().c_str()));
  /external/chromium_org/gpu/command_buffer/common/
bitfield_helpers_test.cc 14 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, 0x87654321)
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
sem_getvalue.c 54 * This function stores the current count value of the
58 * Return value
76 * This function stores the current count value of the semaphore
87 long value; local
102 value = s->value;
104 *sval = value;
  /external/chromium_org/net/base/
url_util_unittest.cc 14 // 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").spec())
87 std::string value; local
105 std::string value; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSParserValuesTest.cpp 91 CSSParserValue value; local
92 value.setFromNumber(3);
93 list.addValue(value);
  /external/chromium_org/third_party/brotli/src/brotli/dec/
huffman.h 30 uint16_t value; /* symbol value or table offset */ member in struct:__anon15492
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
localaudiosource_unittest.cc 59 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/
prsem.h 52 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/opus/src/silk/float/
sort_FLP.c 46 silk_float value; local
59 /* Sort vector elements by value, decreasing order */
61 value = a[ i ];
62 for( j = i - 1; ( j >= 0 ) && ( value > a[ j ] ); j-- ) {
63 a[ j + 1 ] = a[ j ]; /* Shift value */
66 a[ j + 1 ] = value; /* Write value */
73 value = a[ i ];
74 if( value > a[ K - 1 ] ) {
75 for( j = K - 2; ( j >= 0 ) && ( value > a[ j ] ); j-- )
    [all...]
  /external/chromium_org/ui/base/touch/
touch_device_win.cc 12 int value = GetSystemMetrics(SM_DIGITIZER); local
13 return (value & NID_READY) &&
14 ((value & NID_INTEGRATED_TOUCH) || (value & NID_EXTERNAL_TOUCH));

Completed in 851 milliseconds

1 2 3 4 5 6 7 8 91011>>