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

1 2 3 4 5 6 7 8 91011>>

  /development/simulator/app/
executablepath_darwin.cpp 27 CFStringRef value = (CFStringRef)CFDictionaryGetValue(dict, local
29 CFStringGetCString(value, s, PATH_MAX+1, kCFStringEncodingUTF8);
  /external/chromium/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/clearsilver/cs/
test_joo.cs 2 Empty has no value assigned (ie, empty), Foo has a value, NotExist doesn't exist external variable declarations
  /external/elfutils/libdw/
dwarf_arrayorder.c 28 Dwarf_Word value; local
31 &value) == 0 ? (int) value : -1;
dwarf_bitoffset.c 28 Dwarf_Word value; local
31 &value) == 0 ? (int) value : -1;
dwarf_bitsize.c 28 Dwarf_Word value; local
31 &value) == 0 ? (int) value : -1;
dwarf_bytesize.c 28 Dwarf_Word value; local
31 &value) == 0 ? (int) value : -1;
dwarf_srclang.c 28 Dwarf_Word value; local
31 &value) == 0 ? (int) value : -1;
  /external/jsr305/sampleUses/src/main/java/
FixedLengthString.java 13 int value(); method in interface:FixedLengthString
21 if (s.length() == annotation.value())
  /external/qemu/
qbool.h 22 int value; member in struct:QBool
25 QBool *qbool_from_int(int value);
qfloat.h 22 double value; member in struct:QFloat
25 QFloat *qfloat_from_double(double value);
qint.h 9 int64_t value; member in struct:QInt
12 QInt *qint_from_int(int64_t value);
  /external/webkit/LayoutTests/fast/js/resources/
select-options-remove.js 4 var value; variable
7 value = document.createElement("DIV");
8 shouldBe("select1.options.remove(value)", "undefined");
14 value = "o";
15 shouldBe("select1.options.remove(value)", "undefined");
21 value = 3.14;
22 shouldBe("select1.options.remove(value)", "undefined");
28 value = true;
29 shouldBe("select1.options.remove(value)", "undefined");
35 value = undefined
    [all...]
  /external/webkit/LayoutTests/http/tests/appcache/resources/
counter.php 12 $value = file_get_contents($file); variable
13 file_put_contents($file, ++$value);
14 return $value;
versioned-manifest.php 18 $value = getCount($file); variable
19 file_put_contents($file, ++$value);
  /external/webkit/WebCore/bindings/v8/custom/
V8DataGridColumnListCustom.cpp 46 v8::Handle<v8::Value> value = info.Holder()->GetRealNamedPropertyInPrototypeChain(name); local
47 if (!value.IsEmpty())
48 return value;
  /frameworks/base/media/libstagefright/codecs/amrwb/src/
get_amr_wb_bits.cpp 121 int16 value = 0; local
125 value <<= 2;
129 value |= 2;
134 value |= 1;
141 value <<= 1;
145 value |= 1;
150 return (value);
156 int16 value = 0; local
160 value = 1;
162 return (value);
    [all...]
  /hardware/ti/wlan/wl1271/CUDK/configurationutility/inc/
cu_cmd.h 35 U32 value; member in struct:__anon10211
  /libcore/dalvik/src/main/java/dalvik/annotation/
AndroidOnly.java 37 String value(); method in interface:AndroidOnly
BrokenTest.java 36 String value(); method in interface:BrokenTest
KnownFailure.java 38 String value(); method in interface:KnownFailure
SideEffect.java 38 String value(); method in interface:SideEffect
TestTargetClass.java 37 Class<?> value(); method in interface:TestTargetClass
TestTargets.java 38 TestTargetNew[] value(); method in interface:TestTargets
Timeout.java 38 int value(); method in interface:Timeout

Completed in 1115 milliseconds

1 2 3 4 5 6 7 8 91011>>