HomeSort by relevance Sort by last modified time
    Searched refs:source2 (Results 1 - 25 of 43) sorted by null

1 2

  /external/chromium_org/ash/shelf/
scoped_observer_with_duplicated_sources_unittest.cc 44 TestSource source2; local
50 EXPECT_EQ(0, source2.GetObserverCount());
51 EXPECT_FALSE(observers.IsObserving(&source2));
62 // Add |source2|.
63 observers.Add(&source2);
64 EXPECT_EQ(1, source2.GetObserverCount());
65 EXPECT_TRUE(observers.IsObserving(&source2));
72 // Remove |source2|.
73 observers.Remove(&source2);
74 EXPECT_EQ(0, source2.GetObserverCount())
    [all...]
  /external/chromium_org/net/tools/tld_cleanup/
make_dafsa_unittest.py 206 source2 = [ node3 ]
207 self.assertEqual(make_dafsa.join_labels(source1), source2)
218 source2 = [ node3 ]
219 self.assertEqual(make_dafsa.join_labels(source1), source2)
270 source2 = [ node7 ]
271 self.assertEqual(make_dafsa.join_labels(source1), source2)
292 source2 = [ node7, node8 ]
293 self.assertEqual(make_dafsa.join_labels(source1), source2)
365 source2 = make_dafsa.join_suffixes(source1)
368 self.assertEqual(source1, source2)
    [all...]
  /libcore/luni/src/test/java/tests/targets/security/
MessageDigestTestMD5.java 26 super.source2 = "abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmnhijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu";
MessageDigestTestSHA1.java 26 super.source2 = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq";
MessageDigestTestSHA256.java 26 super.source2 = "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq";
MessageDigestTestSHA384.java 26 super.source2 = "abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmnhijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu";
MessageDigestTestSHA512.java 26 super.source2 = "abcdefghbcdefghicdefghijdefghijkefghijklfghijklmghijklmnhijklmnoijklmnopjklmnopqklmnopqrlmnopqrsmnopqrstnopqrstu";
  /external/chromium_org/third_party/webrtc/base/
sigslottester_unittest.cc 36 sigslot::signal2<int, char> source2; local
39 SigslotTester2<int, char, int, char> slot2(&source2, &capture1, &capture2);
42 source2.emit(10, 'x');
47 source2.emit(20, 'y');
  /external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
move02.pass.cpp 61 source2() function
84 sink2(source2());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
move02.pass.cpp 61 source2() function
84 sink2(source2());
  /cts/tests/tests/text/src/android/text/cts/
LoginFilterTest.java 38 String source2 = "+=source_with_invalid_char%!"; local
57 assertNull(loginFilter.filter(source2, 0, source2.length(),
71 result = loginFilter.filter(source2, 0, source2.length(), dest1, 0, dest1.length());
TextUtilsTest.java 211 SpannableString source2 = new SpannableString(text); local
212 source2.setSpan(urlSpan, 0, source2.length() - 1, Spanned.SPAN_EXCLUSIVE_INCLUSIVE);
214 TextUtils.copySpansFrom(source2, 0, source2.length(), Object.class, dest2, 0);
220 assertEquals(source2.length() - 1, dest2.getSpanEnd(urlSpan));
224 TextUtils.copySpansFrom(source2, 0, source2.length(), BackgroundColorSpan.class, dest3, 0);
227 TextUtils.copySpansFrom(source2, 0, source2.length(), URLSpan.class, dest3, 0)
    [all...]
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom_tests/parse/
parser_unittest.py 85 source2 = """\
100 parser.Parse(source2, "my_file.mojom")
216 source2 = """\
227 parser.Parse(source2, "my_file.mojom")
260 source2 = """\
270 parser.Parse(source2, "my_file.mojom")
323 source2 = "enum MyEnum { VALUE = 0.123 };"
328 parser.Parse(source2, "my_file.mojom")
331 source2 = "enum MyEnum { VALUE = true };"
336 parser.Parse(source2, "my_file.mojom"
    [all...]
  /libcore/support/src/test/java/tests/security/
MessageDigestTest.java 56 source2 = null;
155 protected String source2; field in class:MessageDigestTest
187 digest.update(source2.getBytes(), 0, source2.length());
  /frameworks/base/tools/aapt/tests/
CrunchCache_test.cpp 88 String8 source2("ApiDemos/res");
94 CrunchCache scc(source2,dest2,sff);
  /external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
move02.pass.cpp 117 source2() function
140 sink2(source2());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
move02.pass.cpp 117 source2() function
140 sink2(source2());
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
VectorMath.cpp 297 __m128 source2;
315 } else if (source2Aligned && !destAligned) { // source2 aligned but dest not aligned
327 } else if (!source2Aligned && destAligned) { // source2 not aligned but dest aligned
330 source2 = _mm_loadu_ps(source2P);
332 *pDest = _mm_add_ps(*pSource1, source2);
338 } else if (!source2Aligned && !destAligned) { // both source2 and dest not aligned
341 source2 = _mm_loadu_ps(source2P);
342 dest = _mm_add_ps(*pSource1, source2);
368 float32x4_t source2 = vld1q_f32(source2P);
369 vst1q_f32(destP, vaddq_f32(source1, source2));
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
RuleBasedCollatorTest.java 93 String source2 = "abb"; local
94 CollationKey key2 = coll.getCollationKey(source2);
95 assertEquals(source2, key2.getSourceString());
97 assertTrue(coll.compare(source, source2) > 0);
  /external/chromium_org/net/disk_cache/blockfile/
block_files_unittest.cc 102 int source2 = rand() % kNumEntries; local
104 entries[source1] = entries[source2];
105 entries[source2] = temp;
  /external/chromium_org/third_party/icu/source/test/cintltst/
nucnvtst.c 2117 static const uint8_t source2[]={0x61}; local
2171 static const uint8_t source2[]={0x61}; local
2591 static const uint8_t source2[]={0x1a, 0x1b}; local
2642 static const uint8_t source2[]={0xa1, 0x80}; local
2761 static const uint8_t source2[]={0xa1, 0x01}; local
3897 static const uint8_t source2[]={0x0e,0x24,0x053}; local
3989 static const uint8_t source2[]={0x0e,0x24,0x053}; local
4067 static const uint8_t source2[]={0x1b,0x24,0x053}; local
4147 static const uint8_t source2[]={0x1b,0x24,0x053}; local
4554 static const uint8_t source2[]={0x0e,0x24,0x053}; local
4684 static const uint8_t source2[]={0x0e, 0x7F, 0xFF}; local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
nucnvtst.c 2122 static const uint8_t source2[]={0x61}; local
2176 static const uint8_t source2[]={0x61}; local
2596 static const uint8_t source2[]={0x1a, 0x1b}; local
2647 static const uint8_t source2[]={0xa1, 0x80}; local
2766 static const uint8_t source2[]={0xa1, 0x01}; local
3902 static const uint8_t source2[]={0x0e,0x24,0x053}; local
3994 static const uint8_t source2[]={0x0e,0x24,0x053}; local
4072 static const uint8_t source2[]={0x1b,0x24,0x053}; local
4152 static const uint8_t source2[]={0x1b,0x24,0x053}; local
4559 static const uint8_t source2[]={0x0e,0x24,0x053}; local
4689 static const uint8_t source2[]={0x0e, 0x7F, 0xFF}; local
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-streams.rb 263 @source2 = MockSource.new
264 @source2.tokens << new_token( 10, :channel => ANTLR3::HIDDEN ) << new_token( 11 )
270 @stream.rebuild( @source2 )
271 @stream.token_source.should == @source2
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
descriptor_database.h 339 DescriptorDatabase* source2);
  /external/protobuf/src/google/protobuf/
descriptor_database.h 338 DescriptorDatabase* source2);

Completed in 1465 milliseconds

1 2