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

1 2 3 4 5 6 7 8 91011>>

  /external/compiler-rt/test/safestack/
overflow.c 20 int value1 = 42; local
24 return value1 != 42 || value2 != 42;
  /external/clang/test/Analysis/inlining/
InlineObjCInstanceMethod.h 29 @property (readonly) int value1; variable
  /external/proguard/src/proguard/evaluation/value/
ComparisonValue.java 31 private final Value value1; field in class:ComparisonValue
38 public ComparisonValue(Value value1,
41 this.value1 = value1;
52 this.value1.equals(((ComparisonValue)object).value1) &&
60 value1.hashCode() ^
67 return "("+value1+"~"+ value2 +")";
  /external/google-tv-pairing-protocol/cpp/tests/polo/util/
poloutiltest.cc 79 const std::string value1 = PoloUtil::BytesToHexString(random1, 16); local
87 ASSERT_NE(value1, value2);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigIntegerHashCodeTest.java 36 String value1 = "12378246728727834290276457386374882976782849"; local
38 BigInteger aNumber1 = new BigInteger(value1);
54 String value1 = "12378246728727834290276457386374882976782849"; local
56 BigInteger aNumber1 = new BigInteger(value1);
70 String value1 = "12378246728727834290276457386374882976782849"; local
72 BigInteger aNumber1 = new BigInteger(value1);
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldLevelTest.java 43 int value1 = 120; local
44 Level l = new MockLevel("level1", value1);
46 value1, l.intValue());
  /system/bt/osi/test/
hash_map_utils_test.cpp 66 char params[] = "key=valu0;key=value1";
68 char value1[] = "value1"; local
71 EXPECT_EQ(0, strcmp(value1, (char *)hash_map_get(map, key)));
108 char params[] = "key0=value0;key1=value1;";
112 char value1[] = "value1"; local
116 EXPECT_EQ(0, strcmp(value1, (char *)hash_map_get(map, key1)));
  /cts/tests/tests/provider/src/android/provider/cts/
Contacts_SettingsTest.java 34 String value1 = "value 1"; local
37 Settings.setSetting(mContentResolver, "account", key1, value1);
39 assertEquals(value1, Settings.getSetting(mContentResolver, "account", key1));
  /external/deqp/framework/referencerenderer/
rrFragmentOperations.hpp 50 GenericVec4 value1; member in struct:rr::Fragment
57 , value1 ()
66 , value1 (value1_)
  /external/javassist/src/main/javassist/compiler/ast/
IntConst.java 65 long value1 = this.value; local
70 newValue = value1 + value2;
73 newValue = value1 - value2;
76 newValue = value1 * value2;
79 newValue = value1 / value2;
82 newValue = value1 % value2;
85 newValue = value1 | value2;
88 newValue = value1 ^ value2;
91 newValue = value1 & value2;
113 double value1 = (double)this.value local
    [all...]
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
CookieManagerTest.java 33 String value1 = "my cookie"; local
34 cookieManager.setCookie(url1, value1);
40 assertThat(cookieManager.getCookie("http://www.google.com"), is(value1));
  /packages/apps/ManagedProvisioning/tests/src/com/android/managedprovisioning/
TestUtils.java 97 Object value1 = bundle1.get(key); local
99 if (!Objects.equals(value1, value2)) {
  /external/clang/test/SemaTemplate/
nested-template.cpp 29 static T value1; member in class:Outer::Inner1
81 X Outer<X>::Inner1<Y>::value1 = 0; member in class:Outer::Inner1
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/types/
NullTagTest.java 69 String input = "key1: null\n~: value1";
73 Object value1 = parsed.get(null); local
74 assertEquals("value1", value1);
  /external/v8/src/compiler/
control-flow-optimizer.cc 240 int32_t value1 = m1.right().Value(); local
241 if (values.find(value1) != values.end()) break;
242 DCHECK_NE(value, value1);
253 value = value1;
  /external/webrtc/webrtc/base/
sharedexclusivelock_unittest.cc 136 int value0, value1; local
148 reader1.PostRead(&value1);
156 EXPECT_EQ(1, value1);
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
EndianUtils.java 315 int value1 = read( input ); local
318 return ( ( ( value1 & 0xff ) << 0 ) +
348 int value1 = read( input ); local
353 return ( ( value1 & 0xff ) << 0 ) +
369 int value1 = read( input ); local
374 long low = ( ( ( value1 & 0xff ) << 0 ) +
  /cts/tests/tests/util/src/android/util/cts/
ArrayMapTest.java 275 int value1 = bundle1.getInt(key); local
280 if (value1 != value2) {
281 fail("Bad Bundle: at key key " + key + " expected " + value1 + ", got " + value2);
291 int value1 = bundle1.getInt(key); local
293 if (value1 != value2) {
294 fail("Bad Bundle: at key key " + key + " expected " + value1 + ", got " + value2);
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.array/
p3.cpp 11 int value1 = sizeof(array); // expected-error {{invalid application of 'sizeof' to an incomplete type 'int []'}} member in namespace:test0
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/
DecimalFormatSymbolsTest.java 72 char value1 = (char)(value + 1); local
73 dfs.setZeroDigit(value1);
76 assertEquals(value1, result);
93 char value1 = (char)(value + 1); local
94 dfs.setGroupingSeparator(value1);
97 assertEquals(value1, result);
114 char value1 = (char)(value + 1); local
115 dfs.setDecimalSeparator(value1);
118 assertEquals(value1, result);
135 char value1 = (char)(value + 1) local
156 char value1 = (char)(value + 1); local
177 char value1 = (char)(value + 1); local
198 char value1 = (char)(value + 1); local
219 String value1 = value + "!"; local
240 String value1 = value + "!"; local
261 char value1 = (char)(value + 1); local
282 String value1 = value + "!"; local
303 String value1 = value + "!"; local
324 char value1 = (char)(value + 1); local
    [all...]
TimeZoneTest.java 51 int value1 = value + 100000; local
52 tz.setRawOffset(value1);
55 assertEquals(value1, result);
80 String value1 = tz.getID(); local
81 String value2 = value1 + "!";
84 assertNotEqual(value1, result);
  /external/iw/
coalesce.c 27 char *eptr, *value1, *value2, *sptr = NULL, *end, buf[16768]; local
104 value1 = strtok_r(cur_pat, "+", &sptr);
109 if (!value1)
111 value2 = value1;
113 pkt_offset = strtoul(value1, &eptr, 10);
114 if (eptr != value1 + strlen(value1))
wowlan.c 214 char *eptr, *value1, *value2, *sptr = NULL; local
271 value1 = strtok_r(argv[0], "+", &sptr);
276 value2 = value1;
278 pkt_offset = strtoul(value1, &eptr, 10);
279 if (eptr != value1 + strlen(value1)) {
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
Frame.java 199 Value value1, value2, value3, value4; local
243 value1 = pop();
244 push(interpreter.binaryOperation(insn, value1, value2));
251 value1 = interpreter.copyOperation(insn, pop());
253 setLocal(var, value1);
254 if (value1.getSize() == 2) {
274 value1 = pop();
275 interpreter.ternaryOperation(insn, value1, value2, value3);
290 value1 = pop();
291 if (value1.getSize() != 1) {
    [all...]
  /external/proguard/src/proguard/evaluation/
Stack.java 489 Value value1 = values[currentSize - 1].category1Value(); local
493 values[currentSize - 2] = value1;

Completed in 602 milliseconds

1 2 3 4 5 6 7 8 91011>>