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

1 2

  /external/chromium_org/chrome/browser/extensions/api/image_writer_private/
image_writer_private_apitest.cc 24 RemovableStorageDevice* expected2 = new RemovableStorageDevice(); variable
25 expected2->vendor = "Vendor 2";
26 expected2->model = "Model 2";
27 expected2->capacity = 1 << 22;
28 expected2->storage_unit_id = "/test/id/2";
32 linked_ptr<RemovableStorageDevice> device2(expected2);
  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
HelpersTest.java 55 final File expected2 = new File(getContext().getFilesDir(), "file-1.txt"); local
60 assertEquals(expected2.getAbsolutePath(), actual2);
  /cts/tests/tests/database/src/android/database/cts/
CursorIndexOutOfBoundsExceptionTest.java 28 String expected2 = "Index " + INDEX + " requested, with a size of " + SIZE; local
46 assertEquals(expected2, e.getMessage());
  /external/chromium_org/crypto/
sha2_unittest.cc 57 int expected2[] = { 0x24, 0x8d, 0x6a, 0x61, local
69 EXPECT_EQ(expected2[i], static_cast<int>(output2[i]));
75 EXPECT_EQ(expected2[i], static_cast<int>(output_truncated2[i]));
  /cts/tests/tests/os/src/android/os/cts/
PatternMatcherTest.java 70 String expected2 = "test2"; local
72 mPatternMatcher = new PatternMatcher(expected2, PatternMatcher.PATTERN_LITERAL);
73 assertEquals(expected2, mPatternMatcher.getPath());
81 String expected2 = "PatternMatcher{PREFIX: test}"; local
88 assertEquals(expected2, mPatternMatcher.toString());
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
BasicVerifier.java 191 Value expected2; local
195 expected2 = BasicValue.INT_VALUE;
203 expected2 = BasicValue.INT_VALUE;
207 expected2 = BasicValue.INT_VALUE;
211 expected2 = BasicValue.INT_VALUE;
215 expected2 = BasicValue.INT_VALUE;
219 expected2 = BasicValue.INT_VALUE;
223 expected2 = BasicValue.INT_VALUE;
227 expected2 = BasicValue.INT_VALUE;
247 expected2 = BasicValue.INT_VALUE;
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_SearchSnippetsTest.java 141 final ContentValues expected2 = new ContentValues(); local
142 expected2.put(Contacts._ID, ids[2]);
143 expected2.put(SearchSnippets.SNIPPET, "[123] Main Street Unit 3113\u2026");
145 assertCursorStoredValuesWithContactsFilter(uri, ids, expected, expected2);
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
PhoneNumberWatcherTest.java 94 final String expected2 = "(650) 145-6723"; local
100 assertEquals(expected2, number.toString());
122 final String expected2 ="(650 123"; local
130 assertEquals(expected2, number.toString());
171 final String expected2 = "650-1234"; local
178 assertEquals(expected2, number.toString());
180 assertEquals(expected2.length(), Selection.getSelectionEnd(number));
263 String expected2 = "1 650-123-4567"; local
264 testReplacement(init2, replacement2, expected2);
  /cts/tests/tests/graphics/src/android/graphics/cts/
InterpolatorTest.java 50 int expected2 = 200; local
53 interpolator.reset(expected1, expected2);
55 assertEquals(expected2, interpolator.getKeyFrameCount());
PathTest.java 80 Path.FillType expected2 = Path.FillType.INVERSE_EVEN_ODD; local
90 assertEquals(expected2, path.getFillType());
  /external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/
occlusion-query.c 14 static int expected2 = 420; variable
155 int expected2_min = (int) (expected2 * 0.95);
156 int expected2_max = (int) (expected2 * 1.05);
194 printf(" Failure: result2 should be near %d\n", expected2);
  /external/mesa3d/src/gallium/tests/graw/
occlusion-query.c 14 static int expected2 = 420; variable
155 int expected2_min = (int) (expected2 * 0.95);
156 int expected2_max = (int) (expected2 * 1.05);
194 printf(" Failure: result2 should be near %d\n", expected2);
  /cts/tests/tests/util/src/android/util/cts/
TypedValueTest.java 108 final float expected2 = 0.013092041f; local
110 assertEquals(expected2, TypedValue.complexToFraction(data2, base2, pbase2));
186 final float expected2 = 0.0f; local
190 assertEquals(expected2, TypedValue.complexToFloat(complex2));
  /external/chromium_org/chrome/browser/extensions/api/storage/
settings_sync_unittest.cc 388 base::DictionaryValue expected1, expected2; local
405 expected2.Set("bar", value2.DeepCopy());
414 EXPECT_PRED_FORMAT2(SettingsEq, expected2, storage2->Get());
429 base::DictionaryValue expected1, expected2; local
447 expected2.Set("bar", value2.DeepCopy());
457 expected2.Set("foo", value1.DeepCopy());
460 EXPECT_PRED_FORMAT2(SettingsEq, expected2, storage2->Get());
471 expected2.Set("bar", value1.DeepCopy());
474 EXPECT_PRED_FORMAT2(SettingsEq, expected2, storage2->Get());
485 expected2.Remove("foo", NULL)
    [all...]
  /external/chromium_org/chrome/browser/spellchecker/
spellcheck_custom_dictionary_unittest.cc 203 WordSet expected2; local
212 expected2.insert("hoge");
213 expected2.insert("fuga");
219 EXPECT_EQ(actual2, expected2);
    [all...]
  /external/chromium_org/third_party/skia/tests/
WArrayTest.cpp 23 static const char* expected2 = "3 9 100"; variable
178 TestWData(reporter, data2, SK_ARRAY_COUNT(data2), NULL, 0, expected2);
  /external/guava/guava-tests/test/com/google/common/base/
ToStringHelperTest.java 274 final String expected2 = "TestClass{field1=1, value1, field2=value2, 2}"; local
276 assertEquals(expected2, helper.toString());
  /external/skia/tests/
WArrayTest.cpp 23 static const char* expected2 = "3 9 100"; variable
178 TestWData(reporter, data2, SK_ARRAY_COUNT(data2), NULL, 0, expected2);
  /libcore/support/src/test/java/tests/security/
MessageDigestTest.java 60 expected2 = null;
158 protected String expected2; field in class:MessageDigestTest
198 assertEquals("computed and check digest differ", expected2, sb.toString());
  /external/chromium_org/v8/test/mjsunit/harmony/
proxies-json.js 82 var expected2 = '{"a":"delete","b":{"a":"A","b":"B","c":"C"}}'; variable
83 assertEquals(expected2, JSON.stringify(parent2));
85 assertEquals(expected2, JSON.stringify(parent2, undefined, 0));
  /external/chromium_org/chrome/browser/autocomplete/
history_url_provider_unittest.cc 720 const UrlAndLegalDefault expected2[] = { local
725 false, expected2, arraysize(expected2))); local
    [all...]
  /external/chromium_org/ui/gfx/
transform_unittest.cc 766 Transform expected2; local
767 expected2.RotateAbout(axes[index], 140.0 + 45.0 * t);
770 EXPECT_TRUE(MatricesAreNearlyEqual(expected2, to2));
795 Transform expected2; local
796 expected2.RotateAbout(axes[index], -180.0 * t);
799 MatricesAreNearlyEqual(expected2, to))
    [all...]
  /external/chromium_org/net/websockets/
websocket_channel_test.cc 2721 static const InitFrame expected2[] = { local
2761 static const InitFrame expected2[] = { local
2798 static const InitFrame expected2[] = { local
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
ncnvtst.c 339 static const uint8_t expected2[] = { 0x31, 0x1a, 0x32}; local
350 expected2, sizeof(expected2), "ibm-920", 0, TRUE, U_ZERO_ERROR))
363 expected2, sizeof(expected2), "LATIN_1", 0, TRUE, U_ZERO_ERROR))
377 static const uint8_t expected2[] = { 0xa2, 0xae, 0xa1, 0xe0, 0xa2, 0xb4}; local
405 expected2, sizeof(expected2), "ibm-1363", 0, TRUE, U_ZERO_ERROR))
408 expected2, sizeof(expected2), "ibm-1363", offsets2, TRUE, U_ZERO_ERROR)
453 static const uint8_t expected2[] = { 0x31,0x1A,0x32}; local
493 static const uint8_t expected2[] = { 0x31, 0x1A,0x32}; local
544 static const uint8_t expected2[] = { 0x1b, 0x24, 0x29, 0x43, 0x31, 0x1A, 0x32}; local
585 static const uint8_t expected2[] = { 0x7e, 0x7d, 0x31, 0x1A, 0x32 }; local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
ncnvtst.c 345 static const uint8_t expected2[] = { 0x31, 0x1a, 0x32}; local
356 expected2, sizeof(expected2), "ibm-920", 0, TRUE, U_ZERO_ERROR))
369 expected2, sizeof(expected2), "LATIN_1", 0, TRUE, U_ZERO_ERROR))
383 static const uint8_t expected2[] = { 0xa2, 0xae, 0xa1, 0xe0, 0xa2, 0xb4}; local
411 expected2, sizeof(expected2), "ibm-1363", 0, TRUE, U_ZERO_ERROR))
414 expected2, sizeof(expected2), "ibm-1363", offsets2, TRUE, U_ZERO_ERROR)
459 static const uint8_t expected2[] = { 0x31,0x1A,0x32}; local
562 static const uint8_t expected2[] = { 0x1b, 0x24, 0x29, 0x43, 0x31, 0x1A, 0x32}; local
603 static const uint8_t expected2[] = { 0x7e, 0x7d, 0x31, 0x1A, 0x32 }; local
    [all...]

Completed in 791 milliseconds

1 2