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

1 2

  /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";
  /ndk/sources/cxx-stl/llvm-libc++/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...]
  /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);
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/memory/unique.ptr/unique.ptr.single/unique.ptr.single.ctor/
move02.pass.cpp 117 source2() function
140 sink2(source2());
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
RuleBasedCollatorTest.java 107 String source2 = "abb"; local
108 CollationKey key2 = coll.getCollationKey(source2);
109 assertEquals(source2, key2.getSourceString());
111 assertTrue(coll.compare(source, source2) > 0);
  /external/chromium/chrome/browser/resources/net_internals/
eventsview.js 142 EventsView.compareActive_ = function(source1, source2) {
143 if (source1.isActive() && !source2.isActive())
145 if (!source1.isActive() && source2.isActive())
148 var deltaEndTime = source1.getEndTime() - source2.getEndTime();
157 return -EventsView.compareSourceId_(source1, source2);
159 return EventsView.compareSourceId_(source1, source2);
162 EventsView.compareDescription_ = function(source1, source2) {
164 var source2Text = source2.getDescription().toLowerCase();
168 return EventsView.compareSourceId_(source1, source2);
171 EventsView.compareDuration_ = function(source1, source2) {
    [all...]
  /external/chromium/net/disk_cache/
block_files_unittest.cc 103 int source2 = rand() % kNumEntries; local
105 entries[source1] = entries[source2];
106 entries[source2] = temp;
backend_unittest.cc 449 int source2 = rand() % 100; local
451 entries[source1] = entries[source2];
452 entries[source2] = temp;
678 int source2 = rand() % kNumEntries; local
680 entries[source1] = entries[source2];
681 entries[source2] = temp;
    [all...]
  /external/icu4c/test/cintltst/
nucnvtst.c 2137 static const uint8_t source2[]={0x61}; local
2191 static const uint8_t source2[]={0x61}; local
2611 static const uint8_t source2[]={0x1a, 0x1b}; local
2662 static const uint8_t source2[]={0xa1, 0x80}; local
2781 static const uint8_t source2[]={0xa1, 0x01}; local
3917 static const uint8_t source2[]={0x0e,0x24,0x053}; local
4009 static const uint8_t source2[]={0x0e,0x24,0x053}; local
4087 static const uint8_t source2[]={0x1b,0x24,0x053}; local
4167 static const uint8_t source2[]={0x1b,0x24,0x053}; local
4574 static const uint8_t source2[]={0x0e,0x24,0x053}; local
4704 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 338 DescriptorDatabase* source2);
descriptor_database.cc 452 DescriptorDatabase* source2) {
454 sources_.push_back(source2);
  /external/webkit/Source/WebCore/platform/graphics/filters/arm/
FELightingNEON.cpp 159 #define DOT_PRODUCT(destination, source1, source2) \
160 "vmul.f32 " destination##_Q ", " source1##_Q ", " source2##_Q NL \
  /external/icu4c/i18n/
uregex.cpp 284 uregex_clone(const URegularExpression *source2, UErrorCode *status) {
285 RegularExpression *source = (RegularExpression*)source2;
    [all...]
usearch.cpp     [all...]
  /external/bison/lib/
vasnprintf.c 759 mp_limb_t source2 = *destptr; local
760 *destptr++ = source1 + source2 + carry;
763 ? source1 >= (mp_limb_t) ~source2
764 : source1 > (mp_limb_t) ~source2);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 
  /prebuilts/tools/common/m2/internal/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 

Completed in 928 milliseconds

1 2