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

1 2

  /external/chromium_org/ash/shelf/
scoped_observer_with_duplicated_sources_unittest.cc 43 TestSource source1; local
48 EXPECT_EQ(0, source1.GetObserverCount());
49 EXPECT_FALSE(observers.IsObserving(&source1));
53 // Add |source1|.
54 observers.Add(&source1);
55 EXPECT_EQ(1, source1.GetObserverCount());
56 EXPECT_TRUE(observers.IsObserving(&source1));
58 observers.Add(&source1);
59 EXPECT_EQ(1, source1.GetObserverCount());
60 EXPECT_TRUE(observers.IsObserving(&source1));
    [all...]
  /external/chromium_org/third_party/webrtc/base/
sigslottester_unittest.cc 21 sigslot::signal1<int> source1; local
23 SigslotTester1<int, int> slot1(&source1, &capture1);
26 source1.emit(10);
30 source1.emit(20);
56 sigslot::signal1<const std::string&> source1; local
58 SigslotTester1<const std::string&, std::string> slot1(&source1, &capture1);
60 source1.emit("hello");
66 sigslot::signal1<const std::string*> source1; local
68 SigslotTester1<const std::string*, const std::string*> slot1(&source1,
71 source1.emit(NULL)
77 sigslot::signal1<std::string* const> source1; local
    [all...]
  /cts/tests/tests/text/src/android/text/cts/
LoginFilterTest.java 37 String source1 = "source_without_invalid_char"; local
45 assertNull(loginFilter.filter(source1, 0, source1.length(), dest1, 0, dest1.length()));
51 assertNull(loginFilter.filter(source1, 0, source1.length(), dest2, 5, 6));
87 loginFilter.filter(null, 0, source1.length(), dest1, 0, dest1.length());
94 loginFilter.filter(source1, -1, source1.length() + 1, dest1, 0, dest1.length());
102 loginFilter.filter(source1, source1.length(), 0, dest1, 0, dest1.length()))
    [all...]
TextUtilsTest.java 186 SpannableString source1 = new SpannableString(text); local
187 int midPos = source1.length() / 2;
190 source1.setSpan(urlSpan, 0, midPos, Spanned.SPAN_INCLUSIVE_INCLUSIVE);
192 source1.setSpan(bgColorSpan, midPos - 1,
193 source1.length() - 1, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
197 TextUtils.copySpansFrom(source1, 0, source1.length(), Object.class, dest1, 0);
208 assertEquals(source1.length() - 1, dest1.getSpanEnd(bgColorSpan));
    [all...]
  /libcore/luni/src/test/java/tests/targets/security/
MessageDigestTestMD5.java 25 super.source1 = "abc";
MessageDigestTestSHA1.java 25 super.source1 = "abc";
MessageDigestTestSHA256.java 25 super.source1 = "abc";
MessageDigestTestSHA384.java 25 super.source1 = "abc";
MessageDigestTestSHA512.java 25 super.source1 = "abc";
  /external/chromium_org/net/tools/tld_cleanup/
make_dafsa_unittest.py 204 source1 = [ node1 ]
207 self.assertEqual(make_dafsa.join_labels(source1), source2)
216 source1 = [ node1 ]
219 self.assertEqual(make_dafsa.join_labels(source1), source2)
266 source1 = [ node1 ]
271 self.assertEqual(make_dafsa.join_labels(source1), source2)
288 source1 = [ node1, node3 ]
293 self.assertEqual(make_dafsa.join_labels(source1), source2)
364 source1 = [ node1, node2, node3 ]
365 source2 = make_dafsa.join_suffixes(source1)
    [all...]
  /external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
move02.pass.cpp 51 source1() function
83 sink1(source1());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
move02.pass.cpp 51 source1() function
83 sink1(source1());
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom_tests/parse/
parser_unittest.py 74 source1 = """\
83 parser.Parse(source1, "my_file.mojom")
205 source1 = """\
214 parser.Parse(source1, "my_file.mojom")
245 source1 = """\
256 parser.Parse(source1, "my_file.mojom")
312 source1 = """\
320 parser.Parse(source1, "my_file.mojom")
422 source1 = """\
434 parser.Parse(source1, "my_file.mojom"
    [all...]
  /libcore/support/src/test/java/tests/security/
MessageDigestTest.java 55 source1 = null;
154 protected String source1; field in class:MessageDigestTest
171 digest.update(source1.getBytes(), 0, source1.length());
  /external/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
move02.pass.cpp 107 source1() function
139 sink1(source1());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
move02.pass.cpp 107 source1() function
139 sink1(source1());
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
SystemTest.java 86 String[] source1 = new String[] { "element1" }; local
88 System.arraycopy(source1, 0, dest1, 0, dest1.length);
89 assertTrue("Invalid copy 1", dest1[0] == source1[0]);
  /external/chromium_org/net/disk_cache/blockfile/
block_files_unittest.cc 101 int source1 = rand() % kNumEntries; local
103 CacheAddr temp = entries[source1];
104 entries[source1] = entries[source2];
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
VectorMath.cpp 367 float32x4_t source1 = vld1q_f32(source1P);
369 vst1q_f32(destP, vaddq_f32(source1, source2));
444 float32x4_t source1 = vld1q_f32(source1P);
446 vst1q_f32(destP, vmulq_f32(source1, source2));
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
descriptor_database.h 338 MergedDescriptorDatabase(DescriptorDatabase* source1,
descriptor_database.cc 451 DescriptorDatabase* source1,
453 sources_.push_back(source1);
  /external/protobuf/src/google/protobuf/
descriptor_database.h 337 MergedDescriptorDatabase(DescriptorDatabase* source1,
descriptor_database.cc 451 DescriptorDatabase* source1,
453 sources_.push_back(source1);
  /external/chromium_org/chrome/browser/apps/
web_view_browsertest.cc 383 content::Source<content::NavigationController> source1 = observer1.source(); local
384 EXPECT_TRUE(source1->GetWebContents()->GetRenderProcessHost()->
407 EXPECT_EQ(source1->GetWebContents()->GetRenderProcessHost()->GetID(),
411 EXPECT_NE(source1->GetWebContents()->GetRenderProcessHost()->GetID(),
415 EXPECT_NE(source1->GetWebContents()->GetRenderProcessHost()->GetID(),
425 source1->GetWebContents()->GetRenderProcessHost()->
435 source1->GetWebContents()->GetRenderProcessHost()->
452 source1->GetWebContents()->GetRenderProcessHost()->
457 source1->GetWebContents()->GetRenderProcessHost()->
462 *default_tag_contents1 = source1->GetWebContents()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationPlayerTest.cpp 638 RefPtrWillBeRawPtr<AnimationNode> source1 = makeAnimation(); local
640 player->setSource(source1.get());
641 EXPECT_EQ(source1, player->source());
646 EXPECT_EQ(0, source1->player());

Completed in 1293 milliseconds

1 2