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

1 2

  /external/webrtc/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 183 SpannableString source1 = new SpannableString(text); local
184 int midPos = source1.length() / 2;
187 source1.setSpan(urlSpan, 0, midPos, Spanned.SPAN_INCLUSIVE_INCLUSIVE);
189 source1.setSpan(bgColorSpan, midPos - 1,
190 source1.length() - 1, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
194 TextUtils.copySpansFrom(source1, 0, source1.length(), Object.class, dest1, 0);
205 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/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
move02.pass.cpp 36 source1() function
68 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/guice/core/test/com/google/inject/internal/
WeakKeySetTest.java 114 Object source1 = new Object(); local
117 set.add(key1, state1, source1);
118 assertInSet(set, key1, 1, source1);
121 assertInSet(set, key2, 2, source1, source2);
125 WeakReference<Object> weakSource1Ref = new WeakReference<Object>(source1);
133 assertSourceNotInSet(set, key, source1);
136 source1 = source2 = null;
162 Object source1 = new Object(); local
165 set.add(key1, state1, source1);
166 assertInSet(set, key1, 1, source1);
281 Object source1 = new Object(); local
    [all...]
  /libcore/support/src/test/java/tests/security/
MessageDigestTest.java 55 source1 = null;
132 protected String source1; field in class:MessageDigestTest
149 digest.update(source1.getBytes(), 0, source1.length());
  /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());
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
XEquivalenceMap.java 86 public boolean areEquivalent (K source1, K source2) {
87 Set<K> s = (Set) source_Set.get(source1);
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
XEquivalenceMap.java 85 public boolean areEquivalent (K source1, K source2) {
86 Set<K> s = (Set) source_Set.get(source1);
  /external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
move.pass.cpp 59 APtrSource1 source1() { function
132 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/protobuf/src/google/protobuf/
descriptor_database.h 339 MergedDescriptorDatabase(DescriptorDatabase* source1,
descriptor_database.cc 452 DescriptorDatabase* source1,
454 sources_.push_back(source1);
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/
descriptor_database.h 338 MergedDescriptorDatabase(DescriptorDatabase* source1,
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/
descriptor_database.h 338 MergedDescriptorDatabase(DescriptorDatabase* source1,
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/
descriptor_database.h 338 MergedDescriptorDatabase(DescriptorDatabase* source1,
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
descriptor_database.h 339 MergedDescriptorDatabase(DescriptorDatabase* source1,
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/
descriptor_database.h 338 MergedDescriptorDatabase(DescriptorDatabase* source1,
  /external/v8/test/cctest/
test-serialize.cc 680 const char* source1 = "function f() { return 42; }"; local
686 v8::StartupData data1 = v8::V8::CreateSnapshotDataBlob(source1);
736 const char* source1 = local
750 v8::StartupData data = v8::V8::CreateSnapshotDataBlob(source1);
797 const char* source1 = "function f() { return 42; }"; local
799 v8::StartupData data1 = v8::V8::CreateSnapshotDataBlob(source1);
1583 const char* source1 = "'use strict'; let x = 'X'"; local
    [all...]

Completed in 1441 milliseconds

1 2