Home
last modified time | relevance | path

Searched refs:text2 (Results 1 – 25 of 114) sorted by relevance

12345

/external/cldr/tools/java/org/unicode/cldr/util/
DCharUtilities.java86 public static int compare(CharSource text1, CharSource text2) { in compare() argument
93 if (text2.hasCharAt(i2)) { in compare()
97 } else if (text2.hasCharAt(i2)) { in compare()
101 int cp2 = text2.charAt(i2++); in compare()
126 public static int compare(CharSequence text1, CharSequence text2) { in compare() argument
133 if (i2 >= text2.length()) { in compare()
137 } else if (i2 >= text2.length()) { in compare()
141 int cp2 = text2.charAt(i2++); in compare()
/external/strace/tests/
Dprctl-seccomp-strict.c44 static const char text2[] = "+++ exited with 0 +++\n"; in main() local
65 rc += write(1, text2, LENGTH_OF(text2)) != LENGTH_OF(text2); in main()
Dseccomp-strict.c43 static const char text2[] = "+++ exited with 0 +++\n"; in main() local
66 rc += write(1, text2, LENGTH_OF(text2)) != LENGTH_OF(text2); in main()
/external/strace/tests-m32/
Dprctl-seccomp-strict.c44 static const char text2[] = "+++ exited with 0 +++\n"; in main() local
65 rc += write(1, text2, LENGTH_OF(text2)) != LENGTH_OF(text2); in main()
Dseccomp-strict.c43 static const char text2[] = "+++ exited with 0 +++\n"; in main() local
66 rc += write(1, text2, LENGTH_OF(text2)) != LENGTH_OF(text2); in main()
/external/strace/tests-mx32/
Dprctl-seccomp-strict.c44 static const char text2[] = "+++ exited with 0 +++\n"; in main() local
65 rc += write(1, text2, LENGTH_OF(text2)) != LENGTH_OF(text2); in main()
Dseccomp-strict.c43 static const char text2[] = "+++ exited with 0 +++\n"; in main() local
66 rc += write(1, text2, LENGTH_OF(text2)) != LENGTH_OF(text2); in main()
/external/libcap/contrib/bug400591/
Dbug.c16 char *text1, *text2; in main() local
35 text2 = cap_to_text(caps2, NULL); in main()
36 assert(text2); in main()
38 assert(strcmp(text1, text2) == 0); in main()
/external/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/
DCollatorTest.java112 for (String text2 : data) { in checkCollation()
113 int jdkRes = jdkColl.compare(text1, text2); in checkCollation()
114 int icuRes = icuColl.compare(text1, text2); in checkCollation()
117 … errln("FAIL: Different results for [text1=" + text1 + ",text2=" + text2 + ") for locale " in checkCollation()
123 CollationKey jdkKey2 = jdkColl.getCollationKey(text2); in checkCollation()
126 com.ibm.icu.text.CollationKey icuKey2 = icuColl.getCollationKey(text2); in checkCollation()
132 … errln("FAIL: Different collationKey comparison results for [text1=" + text1 + ",text2=" + text2 in checkCollation()
/external/perfetto/ui/src/frontend/
Dtrack.ts102 text2?: string) {
108 if (text2 !== undefined) {
109 const text2Width = ctx.measureText(text2).width;
130 if (text2 !== undefined) {
131 ctx.fillText(text2, xPos + 8, this.getHeight() / 2 + 6);
/external/llvm-project/llvm/test/tools/llvm-symbolizer/
Dinvalid-input-address.test9 RUN: echo '"some text"' '"some text2"' > %t.rsp
10 RUN: echo -e 'some text\nsome text2\n' > %t.inp
14 RUN: llvm-symbolizer --obj=%p/Inputs/addr.exe "some text" "some text2" | FileCheck --check-prefix=B…
19 RUN: llvm-addr2line --obj=%p/Inputs/addr.exe "some text" "some text2" | FileCheck --check-prefix=BA…
23 BAD-INPUT-NEXT: some text2
/external/llvm-project/llvm/test/tools/llvm-objdump/X86/
Dsection-filter-relocs.test8 # RUN: | FileCheck %s --check-prefixes=DISASM,RELOC --implicit-check-not=.text2
36 - Name: .text2
56 - Name: .rela.text2
58 Info: .text2
89 # RUN: llvm-objdump -s %t.o --section=.text --section=.rela.text2 \
95 # CONTENTS: Contents of section .rela.text2:
Dstart-stop-address-relocatable-object.test15 # COMMON-NEXT: Disassembly of section .text2:
17 # COMMON-NEXT: 0000000000000000 <.text2>:
39 - Name: .text2
Delf-disassemble-symbol-labels-rel.test17 # CHECK: Disassembly of section .text2:
31 - Name: .text2
59 Section: .text2
/external/llvm-project/llvm/test/tools/llvm-objcopy/ELF/
Didentical-segments.test21 - Name: .text2
29 FirstSec: .text2
30 LastSec: .text2
34 LastSec: .text2
38 LastSec: .text2
Drename-section-and-prefix-alloc-sections.test2 # RUN: llvm-objcopy --rename-section=.text=.text2 --rename-section=.data=.data2 --prefix-alloc-sect…
29 # CHECK: Name: .prefix.text2
30 # CHECK: Name: .rel.prefix.text2
Dadjacent-segments.test20 - Name: .text2
32 FirstSec: .text2
33 LastSec: .text2
/external/icu/icu4c/source/test/cintltst/
Dreapits.c408 UChar text2[50]; in TestRegexCAPI() local
412 u_uastrncpy(text2, "abcccxd", UPRV_LENGTHOF(text2)); in TestRegexCAPI()
430 uregex_setText(re, text2, -1, &status); in TestRegexCAPI()
462 UChar text2[50]; in TestRegexCAPI() local
467 u_uastrncpy(text2, "abcccxd", UPRV_LENGTHOF(text2)); in TestRegexCAPI()
479 uregex_setText(re, text2, 7, &status); in TestRegexCAPI()
481 TEST_ASSERT(result == text2); in TestRegexCAPI()
486 uregex_setText(re, text2, 4, &status); in TestRegexCAPI()
488 TEST_ASSERT(result == text2); in TestRegexCAPI()
829 UChar text2[80]; in TestRegexCAPI() local
[all …]
/external/libbrillo/brillo/
Ddata_encoding_test.cc46 const std::string text2 = in TEST() local
66 EXPECT_EQ(encoded2, Base64Encode(text2)); in TEST()
74 const std::string text2 = in TEST() local
95 EXPECT_EQ(encoded2, Base64EncodeWrapLines(text2)); in TEST()
/external/libchrome/mojo/public/cpp/bindings/tests/
Dhandle_passing_unittest.cc85 std::string text2; in DoStuff() local
87 EXPECT_TRUE(ReadTextMessage(request->pipe.get(), &text2)); in DoStuff()
94 if (!text2.empty()) { in DoStuff()
96 EXPECT_TRUE(WriteTextMessage(pipe1_.get(), text2)); in DoStuff()
170 std::string text2; in DoStuff() local
171 EXPECT_TRUE(ReadTextMessage(response->pipe.get(), &text2)); in DoStuff()
176 EXPECT_EQ(std::string(kText2), text2); in DoStuff()
/external/llvm-project/llvm/test/MC/X86/
Drelax-offset.s4 # CHECK: .text2 00000005 00000000
10 .section .text2
Dalign-branch-section-size.s12 # CHECK: Name: text2
14 .section text2, "ax"
/external/llvm/test/MC/X86/AlignedBundling/
Dsection-alignment.s19 .section text2, "x"
21 # CHECK-LABEL: Name: text2
Ddifferent-sections.s18 .section text2, "x"
19 # CHECK: section text2
/external/llvm-project/llvm/test/MC/X86/AlignedBundling/
Dsection-alignment.s19 .section text2, "x"
21 # CHECK-LABEL: Name: text2

12345