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

1 2 3 4 5 6 7 8 91011>>

  /external/compiler-rt/test/safestack/
overflow.c 22 int value2 = 42; local
24 return value1 != 42 || value2 != 42;
  /external/proguard/src/proguard/evaluation/value/
ComparisonValue.java 32 private final Value value2; field in class:ComparisonValue
39 Value value2)
42 this.value2 = value2;
53 this.value2.equals(((ComparisonValue)object).value2);
61 value2.hashCode();
67 return "("+value1+"~"+ value2 +")";
  /external/clang/test/SemaTemplate/
instantiate-enum.cpp 7 value2 enumerator in enum:adder::__anon9123
nested-template.cpp 30 static U value2; member in class:Outer::Inner1
85 Y Outer<X>::Inner1<Y>::value2 = Y(); member in class:Outer::Inner1
  /external/curl/tests/unit/
unit1602.c 49 int *value2; variable
67 value2 = malloc(sizeof(int));
70 *value2 = 204;
76 Curl_hash_add(&hash_static, &key2, klen, value2);
  /external/google-tv-pairing-protocol/cpp/tests/polo/util/
poloutiltest.cc 84 const std::string value2 = PoloUtil::BytesToHexString(random2, 16); local
87 ASSERT_NE(value1, value2);
  /frameworks/base/tools/aapt/
AaptXml.cpp 118 const Res_value* value2 = &value; local
119 const char16_t* str = resTable.valueToString(value2, 0, NULL, &len);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/math/
BigIntegerHashCodeTest.java 37 String value2 = "-5634562095872038262928728727834290276457386374882976782849"; local
39 BigInteger aNumber2 = new BigInteger(value2);
55 String value2 = "12378246728727834290276457386374882976782849"; local
57 BigInteger aNumber2 = new BigInteger(value2);
71 String value2 = "-5634562095872038262928728727834290276457386374882976782849"; local
73 BigInteger aNumber2 = new BigInteger(value2);
  /external/snakeyaml/src/test/java/org/pyyaml/
PyRecursiveTest.java 47 Map<AnInstance, AnInstance> value2 = (Map<AnInstance, AnInstance>) yaml.load(output1); local
48 assertEquals(value.size(), value2.size());
49 for (AnInstance tmpInstance : value2.values()) {
51 assertSame(tmpInstance.getBar(), value2); local
52 assertSame(tmpInstance, value2.get(tmpInstance));
64 Map value2 = (Map) yaml.load(output1); local
65 assertEquals(2, value2.size());
66 assertEquals("www", value2.get("abc"));
67 assertTrue(value2.get("qwerty") instanceof Map);
68 Map value3 = (Map) value2.get("qwerty")
82 List value2 = (List) yaml.load(output1); local
104 List value2 = (List) yaml.load(output1); local
122 Set<AnInstance> value2 = (Set<AnInstance>) yaml.load(output1); local
127 assertSame(tmpInstance.getBar(), value2); local
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
Contacts_SettingsTest.java 36 String value2 = "value 2"; local
38 Settings.setSetting(mContentResolver, "account", key2, value2);
40 assertEquals(value2, Settings.getSetting(mContentResolver, "account", key2));
43 Settings.setSetting(mContentResolver, "account", key1, value2);
44 assertEquals(value2, Settings.getSetting(mContentResolver, "account", key1));
  /frameworks/compile/mclinker/unittests/
LEB128Test.cpp 458 uint64_t value2 = value * value; local
472 encode_size = leb128::encode<uint64_t>(result, value2);
474 ASSERT_EQ(leb128::decode<uint64_t>(buffer, decode_size), value2); local
  /external/javassist/src/main/javassist/compiler/ast/
IntConst.java 66 long value2 = right.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;
94 newValue = value << (int)value2;
114 double value2 = right.value; local
    [all...]
  /external/libmicrohttpd/src/testspdy/
test_struct_namevalue.c 96 const char *const*value2; local
321 value2 = SPDY_name_value_lookup(container3,pairs_with_dups[i], &ret2);
322 if(NULL == value2)
326 if(0 != strcmp(value2[j], value[j]))
334 value2 = SPDY_name_value_lookup(container3,pairs_different[i], &ret2);
335 if(NULL == value2)
339 if(0 != strcmp(value2[j], value[j]))
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
CookieManagerTest.java 37 String value2 = "some special value: thing"; local
38 cookieManager.setCookie(url2, value2);
41 assertThat(cookieManager.getCookie(url2), is(value2));
  /packages/apps/ManagedProvisioning/tests/src/com/android/managedprovisioning/
TestUtils.java 98 Object value2 = bundle2.get(key); local
99 if (!Objects.equals(value1, value2)) {
  /external/clang/test/PCH/
chain-cxx.cpp 46 static const int value2; member in struct:TS3
51 const int TS3<T>::value2 = 1; member in class:TS3
109 extern int arr[TS3<int>::value2];
144 int arr[TS3<int>::value2];
  /external/libchrome/base/
command_line_unittest.cc 264 std::string value2 = "value"; local
275 cl.AppendSwitchASCII(switch2, value2);
283 EXPECT_EQ(value2, cl.GetSwitchValueASCII(switch2));
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
EndianUtils.java 316 int value2 = read( input ); local
319 ( ( value2 & 0xff ) << 8 ) );
349 int value2 = read( input ); local
354 ( ( value2 & 0xff ) << 8 ) +
370 int value2 = read( input ); local
375 ( ( value2 & 0xff ) << 8 ) +
  /cts/tests/tests/util/src/android/util/cts/
ArrayMapTest.java 279 int value2 = bundle2.getInt(key); local
280 if (value1 != value2) {
281 fail("Bad Bundle: at key key " + key + " expected " + value1 + ", got " + value2);
292 int value2 = bundle2.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 13 int value2 = sizeof(array); // expected-error {{invalid application of 'sizeof' to an incomplete type 'int []'}} member in namespace:test0
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
TrieTest.java 287 int value2 = trie.getBMPValue((char)start); local
288 if (value != value2) {
291 + Integer.toHexString(value2) + " instead of 0x"
295 value2 = trie.getLeadValue((char)start);
296 if (value != value2) {
299 + Integer.toHexString(value2) + " instead of 0x"
304 int value2 = trie.getCodePointValue(start); local
305 if (value != value2) {
308 + Integer.toHexString(value2) + " instead of 0x"
  /external/icu/icu4c/source/test/cintltst/
trietest.c 264 uint32_t value, value2; local
380 value2=UTRIE_GET32_FROM_BMP(&trie, start);
382 value2=UTRIE_GET16_FROM_BMP(&trie, start);
384 if(value!=value2) {
386 testName, start, value2, value);
390 value2=UTRIE_GET32_FROM_LEAD(&trie, start);
392 value2=UTRIE_GET16_FROM_LEAD(&trie, start);
394 if(value!=value2) {
396 testName, start, value2, value);
401 UTRIE_GET32(&trie, start, value2);
458 uint32_t value, value2; local
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base.tests/src/com/ibm/icu/tests/
TimeZoneTest.java 81 String value2 = value1 + "!"; local
82 tz.setID(value2);
85 assertEquals(value2, result);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
TrieTest.java 283 int value2 = trie.getBMPValue((char)start); local
284 if (value != value2) {
287 + Integer.toHexString(value2) + " instead of 0x"
291 value2 = trie.getLeadValue((char)start);
292 if (value != value2) {
295 + Integer.toHexString(value2) + " instead of 0x"
300 int value2 = trie.getCodePointValue(start); local
301 if (value != value2) {
304 + Integer.toHexString(value2) + " instead of 0x"
  /external/iw/
coalesce.c 27 char *eptr, *value1, *value2, *sptr = NULL, *end, buf[16768]; local
105 value2 = strtok_r(NULL, "+", &sptr);
107 if (!value2) {
111 value2 = value1;
118 if (parse_hex_mask(value2, &pat, &patlen, &mask))

Completed in 933 milliseconds

1 2 3 4 5 6 7 8 91011>>