Home
last modified time | relevance | path

Searched full:hello (Results 1 – 25 of 9937) sorted by relevance

12345678910>>...398

/aosp_15_r20/external/rust/android-crates-io/crates/csv/examples/data/bench/
Dgame.csv1 hello,","," ",world,1,"!"
2 hello,","," ",world,1,"!"
3 hello,","," ",world,1,"!"
4 hello,","," ",world,1,"!"
5 hello,","," ",world,1,"!"
6 hello,","," ",world,1,"!"
7 hello,","," ",world,1,"!"
8 hello,","," ",world,1,"!"
9 hello,","," ",world,1,"!"
10 hello,","," ",world,1,"!"
[all …]
/aosp_15_r20/external/elfutils/tests/
H A Drun-declfiles.sh27 cu: hello.c
29 m@/var/tmp/hello/hello.h:1:12
30 m@/var/tmp/hello/hello.c:5:5
31 foo@/var/tmp/hello/hello.c:20:1
32 f@/var/tmp/hello/hello.c:20:14
33 baz@/var/tmp/hello/hello.c:8:5
34 x@/var/tmp/hello/hello.c:8:14
35 r@/var/tmp/hello/hello.c:10:7
36 frob@/var/tmp/hello/hello.h:5:1
37 a@/var/tmp/hello/hello.h:5:11
[all …]
/aosp_15_r20/external/cronet/base/strings/
H A Dcstring_view_unittest.cc485 auto substr = cstring_view("hello").substr(1u); in TEST()
517 static_assert(!cstring_view("").starts_with("hello")); in TEST()
519 static_assert(cstring_view("hello").starts_with("hello")); in TEST()
520 static_assert(cstring_view("hello").starts_with("")); in TEST()
521 static_assert(cstring_view("hello").starts_with("he")); in TEST()
522 static_assert(!cstring_view("hello").starts_with("ello")); in TEST()
524 static_assert(!cstring_view("hello").starts_with(query)); in TEST()
526 static_assert(u16cstring_view(u"hello").starts_with(u"he")); in TEST()
527 static_assert(u32cstring_view(U"hello").starts_with(U"he")); in TEST()
529 static_assert(wcstring_view(L"hello").starts_with(L"he")); in TEST()
[all …]
/aosp_15_r20/external/apache-commons-lang/src/test/java/org/apache/commons/lang3/
H A DCharSetUtilsTest.java54 assertEquals("hello", CharSetUtils.squeeze("hello", (String) null)); in testSqueeze_StringString()
55 assertEquals("hello", CharSetUtils.squeeze("hello", "")); in testSqueeze_StringString()
56 assertEquals("hello", CharSetUtils.squeeze("hello", "a-e")); in testSqueeze_StringString()
57 assertEquals("helo", CharSetUtils.squeeze("hello", "l-p")); in testSqueeze_StringString()
59 assertEquals("hello", CharSetUtils.squeeze("helloo", "^l")); in testSqueeze_StringString()
74 assertEquals("hello", CharSetUtils.squeeze("hello", (String[]) null)); in testSqueeze_StringStringarray()
75 assertEquals("hello", CharSetUtils.squeeze("hello")); in testSqueeze_StringStringarray()
76 assertEquals("hello", CharSetUtils.squeeze("hello", null)); in testSqueeze_StringStringarray()
77 assertEquals("hello", CharSetUtils.squeeze("hello", "a-e")); in testSqueeze_StringStringarray()
79 assertEquals("helo", CharSetUtils.squeeze("hello", "el")); in testSqueeze_StringStringarray()
[all …]
/aosp_15_r20/external/openthread/third_party/mbedtls/repo/tests/opt-testcases/
H A Dtls13-kex-modes.sh1569 -c "client hello, adding pre_shared_key extension, omitting PSK binder list" \
1570 -c "client hello, adding psk_key_exchange_modes extension" \
1571 -c "client hello, adding PSK binder list" \
1583 -c "client hello, adding pre_shared_key extension, omitting PSK binder list" \
1584 -c "client hello, adding psk_key_exchange_modes extension" \
1585 -c "client hello, adding PSK binder list" \
1596 -c "client hello, adding pre_shared_key extension, omitting PSK binder list" \
1597 -c "client hello, adding psk_key_exchange_modes extension" \
1598 -c "client hello, adding PSK binder list" \
1610 -c "client hello, adding pre_shared_key extension, omitting PSK binder list" \
[all …]
/aosp_15_r20/external/mbedtls/tests/opt-testcases/
H A Dtls13-kex-modes.sh1566 -c "client hello, adding pre_shared_key extension, omitting PSK binder list" \
1567 -c "client hello, adding psk_key_exchange_modes extension" \
1568 -c "client hello, adding PSK binder list" \
1580 -c "client hello, adding pre_shared_key extension, omitting PSK binder list" \
1581 -c "client hello, adding psk_key_exchange_modes extension" \
1582 -c "client hello, adding PSK binder list" \
1593 -c "client hello, adding pre_shared_key extension, omitting PSK binder list" \
1594 -c "client hello, adding psk_key_exchange_modes extension" \
1595 -c "client hello, adding PSK binder list" \
1607 -c "client hello, adding pre_shared_key extension, omitting PSK binder list" \
[all …]
/aosp_15_r20/external/pytorch/c10/test/util/
H A Dstring_view_test.cpp61 constexpr string_view hello = "hello"; variable
62 static_assert(5 == hello.size(), "");
63 static_assert(string_equal("hello", hello.data(), hello.size()), "");
68 constexpr string_view hell("hello", 4);
78 std::string hello_str = "hello"; in TEST()
81 EXPECT_TRUE(string_equal("hello", hello_sv.data(), hello_sv.size())); in TEST()
91 string_view hello_sv = "hello"; in TEST()
94 EXPECT_EQ(std::string("hello"), hello_str); in TEST()
99 constexpr string_view hello = "hello"; variable
100 constexpr string_view copy = hello;
[all …]
/aosp_15_r20/external/truth/extensions/java8/src/test/java/com/google/common/truth/
H A DStreamSubjectTest.java43 Stream<String> stream = Stream.of("hello"); in testIsEqualToSameInstancePreviouslyConsumed()
51 Stream<String> stream = Stream.of("hello"); in testIsEqualToSameInstanceDoesNotConsume()
53 assertThat(stream).containsExactly("hello"); in testIsEqualToSameInstanceDoesNotConsume()
62 Stream<String> stream = Stream.of("hello"); in testIsEqualToFailurePreviouslyConsumed()
65 expectFailure(whenTesting -> whenTesting.that(stream).isEqualTo(Stream.of("hello"))); in testIsEqualToFailurePreviouslyConsumed()
77 Stream<String> stream = Stream.of("hello"); in testIsEqualToFailureNotPreviouslyConsumed()
79 expectFailure(whenTesting -> whenTesting.that(stream).isEqualTo(Stream.of("hello"))); in testIsEqualToFailureNotPreviouslyConsumed()
80 assertThat(failure).factValue("but was").isEqualTo("[hello]"); in testIsEqualToFailureNotPreviouslyConsumed()
92 Stream<String> stream = Stream.of("hello"); in testIsNotEqualToSameInstance()
105 Stream<String> stream = Stream.of("hello"); in testIsNotEqualToOtherInstance()
[all …]
/aosp_15_r20/external/boringssl/src/ssl/test/runner/
H A Dhandshake_client.go32 hello *clientHelloMsg member
60 // with key shares copied from |hello|. This allows sending an exact
61 // externally-specified ClientHello in tests. However, we use |hello|'s key
65 func replaceClientHello(hello *clientHelloMsg, in []byte) (*clientHelloMsg, error) {
72 // Replace |newHellos|'s key shares with those of |hello|. For simplicity,
76 hello.marshalKeyShares(bb)
86 newHello.keyShares = hello.keyShares
172 hs.hello, err = hs.createClientHello(hs.innerHello, echEnc)
178 hs.hello, err = hs.createClientHello(nil, nil)
182 earlyHello = hs.hello
[all …]
/aosp_15_r20/external/cronet/third_party/boringssl/src/ssl/test/runner/
H A Dhandshake_client.go32 hello *clientHelloMsg member
60 // with key shares copied from |hello|. This allows sending an exact
61 // externally-specified ClientHello in tests. However, we use |hello|'s key
65 func replaceClientHello(hello *clientHelloMsg, in []byte) (*clientHelloMsg, error) {
72 // Replace |newHellos|'s key shares with those of |hello|. For simplicity,
76 hello.marshalKeyShares(bb)
86 newHello.keyShares = hello.keyShares
172 hs.hello, err = hs.createClientHello(hs.innerHello, echEnc)
178 hs.hello, err = hs.createClientHello(nil, nil)
182 earlyHello = hs.hello
[all …]
/aosp_15_r20/external/cronet/third_party/re2/src/python/
H A Dre2_test.py112 Params(u'\\d+', u'Hello, world.', None, False, False, False),
113 Params(b'\\d+', b'Hello, world.', None, False, False, False),
114 Params(u'\\s+', u'Hello, world.', [(6, 7)], True, False, False),
115 Params(b'\\s+', b'Hello, world.', [(6, 7)], True, False, False),
116 Params(u'\\w+', u'Hello, world.', [(0, 5)], True, True, False),
117 Params(b'\\w+', b'Hello, world.', [(0, 5)], True, True, False),
118 Params(u'(\\d+)?', u'Hello, world.', [(0, 0), (-1, -1)], True, True, False),
119 Params(b'(\\d+)?', b'Hello, world.', [(0, 0), (-1, -1)], True, True, False),
221 (u'\\w*', u'Hello, world.', [(0, 5), (5, 5), (6, 6), (7, 12), (12, 12),
223 (b'\\w*', b'Hello, world.', [(0, 5), (5, 5), (6, 6), (7, 12), (12, 12),
[all …]
/aosp_15_r20/external/openscreen/third_party/abseil/src/absl/strings/internal/
H A Dmemutil_test.cc56 absl::strings_internal::memcat(a, 0, "hello", sizeof("hello") - 1); in TEST()
59 EXPECT_EQ(absl::strings_internal::memcasecmp(a, "heLLO there", in TEST()
60 sizeof("hello there") - 1), in TEST()
62 EXPECT_EQ(absl::strings_internal::memcasecmp(a, "heLLO therf", in TEST()
63 sizeof("hello there") - 1), in TEST()
65 EXPECT_EQ(absl::strings_internal::memcasecmp(a, "heLLO therf", in TEST()
66 sizeof("hello there") - 2), in TEST()
70 char* p = absl::strings_internal::memdup("hello", 5); in TEST()
73 p = absl::strings_internal::memrchr("hello there", 'e', in TEST()
74 sizeof("hello there") - 1); in TEST()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/strings/internal/
Dmemutil_test.cc56 absl::strings_internal::memcat(a, 0, "hello", sizeof("hello") - 1); in TEST()
59 EXPECT_EQ(absl::strings_internal::memcasecmp(a, "heLLO there", in TEST()
60 sizeof("hello there") - 1), in TEST()
62 EXPECT_EQ(absl::strings_internal::memcasecmp(a, "heLLO therf", in TEST()
63 sizeof("hello there") - 1), in TEST()
65 EXPECT_EQ(absl::strings_internal::memcasecmp(a, "heLLO therf", in TEST()
66 sizeof("hello there") - 2), in TEST()
70 char* p = absl::strings_internal::memdup("hello", 5); in TEST()
73 p = absl::strings_internal::memrchr("hello there", 'e', in TEST()
74 sizeof("hello there") - 1); in TEST()
[all …]
/aosp_15_r20/external/private-join-and-compute/third_party/abseil-cpp-20230125.2/absl/strings/internal/
H A Dmemutil_test.cc56 absl::strings_internal::memcat(a, 0, "hello", sizeof("hello") - 1); in TEST()
59 EXPECT_EQ(absl::strings_internal::memcasecmp(a, "heLLO there", in TEST()
60 sizeof("hello there") - 1), in TEST()
62 EXPECT_EQ(absl::strings_internal::memcasecmp(a, "heLLO therf", in TEST()
63 sizeof("hello there") - 1), in TEST()
65 EXPECT_EQ(absl::strings_internal::memcasecmp(a, "heLLO therf", in TEST()
66 sizeof("hello there") - 2), in TEST()
70 char* p = absl::strings_internal::memdup("hello", 5); in TEST()
73 p = absl::strings_internal::memrchr("hello there", 'e', in TEST()
74 sizeof("hello there") - 1); in TEST()
[all …]
/aosp_15_r20/external/webrtc/third_party/abseil-cpp/absl/strings/internal/
H A Dmemutil_test.cc56 absl::strings_internal::memcat(a, 0, "hello", sizeof("hello") - 1); in TEST()
59 EXPECT_EQ(absl::strings_internal::memcasecmp(a, "heLLO there", in TEST()
60 sizeof("hello there") - 1), in TEST()
62 EXPECT_EQ(absl::strings_internal::memcasecmp(a, "heLLO therf", in TEST()
63 sizeof("hello there") - 1), in TEST()
65 EXPECT_EQ(absl::strings_internal::memcasecmp(a, "heLLO therf", in TEST()
66 sizeof("hello there") - 2), in TEST()
70 char* p = absl::strings_internal::memdup("hello", 5); in TEST()
73 p = absl::strings_internal::memrchr("hello there", 'e', in TEST()
74 sizeof("hello there") - 1); in TEST()
[all …]
/aosp_15_r20/out/soong/raw-aosp_shiba/58/
D583e1b1361c2e84ceb6e3742d820858403495c70369 from: "art/test/921-hello-failure/Android.bp"
370 to: "art/test/921-hello-failure/Android.bp"
373 from: "art/test/921-hello-failure/expected-stderr.txt"
374 to: "art/test/921-hello-failure/expected-stderr.txt"
377 from: "art/test/921-hello-failure/expected-stdout.jvm.txt"
378 to: "art/test/921-hello-failure/expected-stdout.jvm.txt"
381 from: "art/test/921-hello-failure/expected-stdout.txt"
382 to: "art/test/921-hello-failure/expected-stdout.txt"
385 from: "art/test/921-hello-failure/info.txt"
386 to: "art/test/921-hello-failure/info.txt"
[all …]
/aosp_15_r20/out/soong/raw-aosp_shiba/5f/
D5fc6ecc8beff40ed96a34a35306d04b9d80a80ce369 from: "art/test/921-hello-failure/Android.bp"
370 to: "art/test/921-hello-failure/Android.bp"
373 from: "art/test/921-hello-failure/expected-stderr.txt"
374 to: "art/test/921-hello-failure/expected-stderr.txt"
377 from: "art/test/921-hello-failure/expected-stdout.jvm.txt"
378 to: "art/test/921-hello-failure/expected-stdout.jvm.txt"
381 from: "art/test/921-hello-failure/expected-stdout.txt"
382 to: "art/test/921-hello-failure/expected-stdout.txt"
385 from: "art/test/921-hello-failure/info.txt"
386 to: "art/test/921-hello-failure/info.txt"
[all …]
/aosp_15_r20/out/soong/raw-aosp_shiba/a4/
Da4804cb678bc906cdc4b112b65b947bbf45f275a369 from: "art/test/921-hello-failure/Android.bp"
370 to: "art/test/921-hello-failure/Android.bp"
373 from: "art/test/921-hello-failure/expected-stderr.txt"
374 to: "art/test/921-hello-failure/expected-stderr.txt"
377 from: "art/test/921-hello-failure/expected-stdout.jvm.txt"
378 to: "art/test/921-hello-failure/expected-stdout.jvm.txt"
381 from: "art/test/921-hello-failure/expected-stdout.txt"
382 to: "art/test/921-hello-failure/expected-stdout.txt"
385 from: "art/test/921-hello-failure/info.txt"
386 to: "art/test/921-hello-failure/info.txt"
[all …]
/aosp_15_r20/art/test/1960-obsolete-jit-multithread-native/
H A Dexpected-stdout.txt1 Thread 0: Hello - Start method sayHi
3 Thread 0: Hello - End method sayHi
4 Thread 0: Hello - Start method sayHi
6 Thread 0: Hello - End method sayHi
11 Thread 1: Hello - Start method sayHi
13 Thread 1: Hello - End method sayHi
14 Thread 1: Hello - Start method sayHi
16 Thread 1: Hello - End method sayHi
21 Thread 2: Hello - Start method sayHi
23 Thread 2: Hello - End method sayHi
[all …]
/aosp_15_r20/art/test/1961-obsolete-jit-multithread/
H A Dexpected-stdout.txt1 Thread 0: Hello - Start method sayHi
3 Thread 0: Hello - End method sayHi
4 Thread 0: Hello - Start method sayHi
6 Thread 0: Hello - End method sayHi
11 Thread 1: Hello - Start method sayHi
13 Thread 1: Hello - End method sayHi
14 Thread 1: Hello - Start method sayHi
16 Thread 1: Hello - End method sayHi
21 Thread 2: Hello - Start method sayHi
23 Thread 2: Hello - End method sayHi
[all …]
/aosp_15_r20/art/test/969-iface-super/
H A Dexpected-stdout.txt2 A-virtual A.SayHi()='Hello '
3 A-interface Iface.SayHi()='Hello '
6 B-virtual B.SayHi()='Hello Hello '
7 B-interface Iface.SayHi()='Hello Hello '
8 B-interface Iface2.SayHi()='Hello Hello '
11 C-virtual C.SayHi()='Hello and welcome '
12 C-interface Iface.SayHi()='Hello and welcome '
15 D-virtual D.SayHi()='Hello Hello and welcome '
16 D-interface Iface.SayHi()='Hello Hello and welcome '
17 D-interface Iface2.SayHi()='Hello Hello and welcome '
[all …]
/aosp_15_r20/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/message2/
H A Dicu-parser-tests.json4 "Hello",
5 "Hello world!",
6 "Hello \\t \\n \\r \\{ world!",
7 "Hello world {:datetime}",
8 "Hello world {foo}",
9 "Hello {0} world",
10 "Hello {123} world",
11 "Hello {-123} world",
12 "Hello {3.1416} world",
13 "Hello {-3.1416} world",
[all …]
/aosp_15_r20/external/icu/icu4j/main/core/src/test/resources/com/ibm/icu/dev/test/message2/
H A Dicu-parser-tests.json4 "Hello",
5 "Hello world!",
6 "Hello \\t \\n \\r \\{ world!",
7 "Hello world {:datetime}",
8 "Hello world {foo}",
9 "Hello {0} world",
10 "Hello {123} world",
11 "Hello {-123} world",
12 "Hello {3.1416} world",
13 "Hello {-3.1416} world",
[all …]
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/utilities/format/format.range/format.range.fmtstr/
H A Dformat.functions.tests.h61 check(SV("hello"), SV("{}"), input); in test_string()
62 check(SV("hello^42"), SV("{}^42"), input); in test_string()
63 check(SV("hello^42"), SV("{:}^42"), input); in test_string()
66 check(SV("hello "), SV("{:10}"), input); in test_string()
67 check(SV("hello*****"), SV("{:*<10}"), input); in test_string()
69 check(SV(":::::hello"), SV("{::>10}"), input); in test_string()
71 check(SV("hello "), SV("{:{}}"), input, 10); in test_string()
72 check(SV("hello*****"), SV("{:*<{}}"), input, 10); in test_string()
74 check(SV(":::::hello"), SV("{::>{}}"), input, 10); in test_string()
99 check(SV("hello"), SV("{:s}"), input); in test_string()
[all …]
/aosp_15_r20/external/python/cpython2/Lib/test/
Dstring_tests.py15 def __init__(self): self.seq = [7, 'hello', 123L]
94 self.checkequal(' hello ', ' hello ', 'capitalize')
95 self.checkequal('Hello ', 'Hello ','capitalize')
96 self.checkequal('Hello ', 'hello ','capitalize')
100 self.checkraises(TypeError, 'hello', 'capitalize', 42)
132 self.checkraises(TypeError, 'hello', 'count')
133 self.checkraises(TypeError, 'hello', 'count', 42)
178 self.checkraises(TypeError, 'hello', 'find')
179 self.checkraises(TypeError, 'hello', 'find', 42)
233 self.checkraises(TypeError, 'hello', 'rfind')
[all …]

12345678910>>...398