HomeSort by relevance Sort by last modified time
    Searched defs:value (Results 1 - 25 of 6482) 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/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/
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/lib/asan/lit_tests/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
  /bionic/tests/
eventfd_test.cpp 28 eventfd_t value = 123; local
29 ASSERT_EQ(0, eventfd_read(fd, &value));
30 ASSERT_EQ(initial_value, value);
33 ASSERT_EQ(-1, eventfd_read(fd, &value));
41 ASSERT_EQ(0, eventfd_read(fd, &value));
42 ASSERT_EQ(3U, value);