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

1 2 3

  /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/wayland/tests/
event-loop-test.c 74 struct wl_event_source *source1, *source2; member in struct:free_source_context
88 wl_event_source_remove(context->source2);
89 context->source2 = NULL;
124 context.source2 =
127 assert(context.source2);
139 if (context.source2)
140 wl_event_source_remove(context.source2);
250 struct wl_event_source *source1, *source2; member in struct:timer_update_context
260 wl_event_source_timer_update(context->source2, 1000);
293 context.source2 = wl_event_loop_add_timer(loop, timer_update_callback_2
    [all...]
  /external/webrtc/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/libmojo/mojo/public/tools/bindings/pylib/mojom_tests/parse/
parser_unittest.py 84 source2 = """\
99 parser.Parse(source2, "my_file.mojom")
215 source2 = """\
226 parser.Parse(source2, "my_file.mojom")
258 source2 = """\
270 parser.Parse(source2, "my_file.mojom")
380 source2 = "enum MyEnum { VALUE = 0.123 };"
385 parser.Parse(source2, "my_file.mojom")
388 source2 = "enum MyEnum { VALUE = true };"
393 parser.Parse(source2, "my_file.mojom"
    [all...]
  /external/guice/core/test/com/google/inject/internal/
WeakKeySetTest.java 115 Object source2 = new Object(); local
120 set.add(key2, state2, source2);
121 assertInSet(set, key2, 2, source1, source2);
126 WeakReference<Object> weakSource2Ref = new WeakReference<Object>(source2);
134 assertInSet(set, key, 1, source2);
136 source1 = source2 = null;
163 Object source2 = new Object(); local
168 set.add(key2, state2, source2);
169 assertInSet(set, key2, 2, source1, source2);
177 assertInSet(set, key, 2, source1, source2);
282 Object source2 = new Object(); local
    [all...]
  /libcore/support/src/test/java/tests/security/
MessageDigestTest.java 56 source2 = null;
133 protected String source2; field in class:MessageDigestTest
165 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);
  /frameworks/support/lifecycle/livedata/src/test/java/androidx/lifecycle/
MediatorLiveDataTest.java 167 MutableLiveData<Integer> source2 = new MutableLiveData<>(); local
169 mMediator.addSource(source2, observer2);
174 source2.setValue(1703);
180 source2.setValue(0);
202 MutableLiveData<String> source2 = new MutableLiveData<>(); local
203 source2.setValue("nana");
204 mMediator.addSource(source2, removingObserver);
  /cts/tests/tests/text/src/android/text/cts/
LoginFilterTest.java 51 String source2 = "+=source_with_invalid_char%!"; local
70 assertNull(loginFilter.filter(source2, 0, source2.length(),
84 result = loginFilter.filter(source2, 0, source2.length(), dest1, 0, dest1.length());
TextUtilsTest.java 390 SpannableString source2 = new SpannableString(text); local
391 source2.setSpan(urlSpan, 0, source2.length() - 1, Spanned.SPAN_EXCLUSIVE_INCLUSIVE);
393 TextUtils.copySpansFrom(source2, 0, source2.length(), Object.class, dest2, 0);
399 assertEquals(source2.length() - 1, dest2.getSpanEnd(urlSpan));
403 TextUtils.copySpansFrom(source2, 0, source2.length(), BackgroundColorSpan.class, dest3, 0);
406 TextUtils.copySpansFrom(source2, 0, source2.length(), URLSpan.class, dest3, 0)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
RuleBasedCollatorTest.java 87 String source2 = "abb"; local
88 CollationKey key2 = coll.getCollationKey(source2);
89 assertEquals(source2, key2.getSourceString());
91 assertTrue(coll.compare(source, source2) > 0);
  /external/swiftshader/src/Shader/
VertexRoutine.cpp 148 Pointer<Byte> source2 = source1 + (!textureSampling ? stride : 0); local
149 Pointer<Byte> source3 = source2 + (!textureSampling ? stride : 0);
167 v.x.z = *Pointer<Float>(source2);
174 v.z = *Pointer<Float4>(source2);
205 v.z = Float4(*Pointer<Byte4>(source2));
222 v.z = As<Float4>(Int4(*Pointer<Byte4>(source2)));
233 v.z = Float4(*Pointer<SByte4>(source2));
250 v.z = As<Float4>(Int4(*Pointer<SByte4>(source2)));
260 v.z = Float4(*Pointer<Byte4>(source2)) * *Pointer<Float4>(constants + OFFSET(Constants,unscaleByte));
276 v.z = Float4(*Pointer<Short4>(source2));
    [all...]
  /external/swiftshader/src/Renderer/
Surface.cpp 4043 unsigned char *source2 = source1 + slice; local
    [all...]
  /external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/
move.pass.cpp 47 std::unique_ptr<VT, Deleter<VT> > source2() { function
133 sink2<VT>(source2<VT>());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/
move.pass.cpp 47 std::unique_ptr<VT, Deleter<VT> > source2() { function
133 sink2<VT>(source2<VT>());
  /external/icu/icu4c/source/test/cintltst/
nucnvtst.c 2132 static const uint8_t source2[]={0x61}; local
2186 static const uint8_t source2[]={0x61}; local
2606 static const uint8_t source2[]={0x1a, 0x1b}; local
2657 static const uint8_t source2[]={0xa1, 0x80}; local
2776 static const uint8_t source2[]={0xa1, 0x01}; local
3912 static const uint8_t source2[]={0x0e,0x24,0x053}; local
4004 static const uint8_t source2[]={0x0e,0x24,0x053}; local
4082 static const uint8_t source2[]={0x1b,0x24,0x053}; local
4162 static const uint8_t source2[]={0x1b,0x24,0x053}; local
4569 static const uint8_t source2[]={0x0e,0x24,0x053}; local
4699 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/protobuf/src/google/protobuf/
descriptor_database.h 340 DescriptorDatabase* source2);
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/
descriptor_database.h 339 DescriptorDatabase* source2);
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/
descriptor_database.h 339 DescriptorDatabase* source2);
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/
descriptor_database.h 339 DescriptorDatabase* source2);

Completed in 426 milliseconds

1 2 3