Searched defs:hello (Results 1 - 25 of 30) sorted by relevance

12

/external/clang/test/PCH/
H A Dbuiltins.c10 void hello() { function
H A Dexprs.h20 const char *hello = "Hello" "PCH" "World"; variable
110 typedef typeof(_Generic(i, char*: 0, int: 0., default: hello))
/external/clang/test/CodeGen/
H A Dfunction-sections.c12 const int hello = 123; variable
18 // PLAIN: hello:
23 // FUNC_SECT: hello:
27 // DATA_SECT: .section .rodata.hello,
28 // DATA_SECT: hello:
/external/llvm/test/MC/ELF/
H A Dcomdat-reloc.s4 .globl hello
5 .type hello,@function
6 hello: label
/external/clang/test/Index/
H A Dcomplete-unterminated.c13 const char *hello = "Hello, world"; variable
H A Dannotate-tokens.c9 const char * hello = "Hello"; local
101 // CHECK: Keyword: "const" [9:3 - 9:8] VarDecl=hello:9:16 (Definition)
102 // CHECK: Keyword: "char" [9:9 - 9:13] VarDecl=hello:9:16 (Definition)
103 // CHECK: Punctuation: "*" [9:14 - 9:15] VarDecl=hello:9:16 (Definition)
104 // CHECK: Identifier: "hello" [9:16 - 9:21] VarDecl=hello:9:16 (Definition)
105 // CHECK: Punctuation: "=" [9:22 - 9:23] VarDecl=hello:9:16 (Definition)
/external/stlport/test/unit/
H A Dstrstream_buffer_read_test.cpp29 char hello[] = "Hello"; local
30 strstream stream(hello, sizeof(hello), ios_base::in);
/external/compiler-rt/test/asan/TestCases/
H A Dstrncpy-overflow.cc12 char *hello = (char*)malloc(6); local
13 strcpy(hello, "hello");
15 strncpy(short_buffer, hello, 10); // BOOM
/external/chromium_org/chrome/browser/extensions/api/idltest/
H A Didltest_api.cc39 std::string hello = "hello world"; local
41 BinaryValue::CreateWithCopiedBuffer(hello.c_str(), hello.size());
/external/chromium_org/third_party/cython/src/pyximport/test/
H A Dtest_reload.py18 hello_file = os.path.join(tempdir, "hello.pyx")
20 import hello namespace
21 assert hello.x == 1
23 time.sleep(1) # sleep to make sure that new "hello.pyx" has later
27 reload(hello)
28 assert hello.x == 2, "Reload should work on Python 2.3 but not 2.2"
/external/clang/test/SemaCXX/
H A Darray-bounds-ptr-arith.cpp5 const char hello[] = "Hello world!"; // expected-note 2 {{declared here}} local
6 const char *helloptr = hello;
13 swallow(hello + 6); // no-warning
14 swallow(hello - 6); // expected-warning {{refers before the beginning of the array}}
15 swallow(hello + 14); // expected-warning {{refers past the end of the array}}
16 swallow(hello + 13); // no-warning
/external/chromium_org/net/tools/flip_server/
H A Dmem_cache_test.cc39 ASSERT_FALSE(mem_cache_->AssignFileData("./hello", &mci));
44 FileData* hello; local
47 mem_cache_->data_map_["./hello"] =
53 mem_cache_->ReadAndStoreFileContents("./hello");
56 hello = mem_cache_->GetFileData("hello");
60 ASSERT_FALSE(NULL == hello);
61 ASSERT_EQ(hello, mem_cache_->GetFileData("hello"));
64 ASSERT_EQ("HTTP/1.1", hello
[all...]
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtestloadso.c15 int hello = 0; local
24 fprintf(stderr, " %s --hello <lib with puts()>\n", app);
34 if (strcmp(argv[1], "--hello") == 0) {
35 hello = 1;
56 if (hello) {
/external/llvm/test/tools/llvm-cov/Inputs/
H A Dtest.cpp7 const char * hello = "world"; variable
8 const char * world = "hello";
/external/valgrind/main/memcheck/tests/linux/
H A Dstack_changes.c18 void hello(mycontext *newc) function
20 printf("hello, world: %d\n", count);
60 makecontext(&ctx1, (void (*)()) hello, 1, &ctx2);
61 makecontext(&ctx2, (void (*)()) hello, 1, &ctx1);
/external/chromium_org/ipc/
H A Dsync_socket_unittest.cc233 // Wait for the worker thread to say hello.
234 char hello[kHelloStringLength] = {0}; local
235 pair[1].Receive(&hello[0], sizeof(hello));
236 EXPECT_EQ(0, strcmp(hello, kHelloString));
264 // Wait for the worker thread to say hello.
265 char hello[kHelloStringLength] = {0}; local
266 pair[1].Receive(&hello[0], sizeof(hello));
267 EXPECT_EQ(0, strcmp(hello, kHelloStrin
301 char hello[kHelloStringLength] = {0}; local
[all...]
/external/zlib/src/test/
H A Dexample.c29 z_const char hello[] = "hello, hello!"; variable
30 /* "hello world" would be more standard, but the repeated "hello"
34 const char dictionary[] = "hello";
93 uLong len = (uLong)strlen(hello)+1;
95 err = compress(compr, &comprLen, (const Bytef*)hello, len);
103 if (strcmp((char*)uncompr, hello)) {
123 int len = (int)strlen(hello)
[all...]
/external/chromium_org/ipc/mojo/
H A Dipc_channel_mojo_readers.cc32 std::string hello; local
33 if (!iter.ReadString(&hello)) {
38 if (hello != kHelloRequestMagic) {
39 DLOG(WARNING) << "Magic mismatch:" << hello;
62 std::string hello; local
63 if (!iter.ReadString(&hello)) {
68 if (hello != kHelloResponseMagic) {
69 DLOG(WARNING) << "Magic mismatch:" << hello;
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
H A Devent_test.cc179 const char hello[] = "Hello World."; local
195 EXPECT_EQ(0, pipe.Write_Locked(hello, sizeof(hello), &out_bytes));
196 EXPECT_EQ(sizeof(hello), out_bytes);
205 EXPECT_EQ(sizeof(hello), out_bytes);
209 EXPECT_EQ(0, strcmp(hello, tmp));
H A Dfuse_fs_test.cc258 File hello; local
259 hello.name = "hello";
260 hello.data.resize(hello_len);
261 memcpy(hello.data.data(), hello_world, hello_len);
262 g_files.push_back(hello);
269 ASSERT_EQ(0, fs_.Open(Path("/hello"), O_RDONLY, &node));
289 ASSERT_EQ(0, fs_.OpenWithMode(Path("/hello"),
318 ASSERT_EQ(0, fs_.Open(Path("/hello"), O_RDONLY, &node));
350 EXPECT_STREQ("hello", entrie
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Ditutil.cpp351 UnicodeString hello=UNICODE_STRING_SIMPLE("Hello {0}!"); local
353 umsg_open(hello.getBuffer(), hello.length(), "root", NULL, errorCode));
443 UnicodeString hello=UNICODE_STRING_SIMPLE("Hello {0}!"); local
446 umsg_open(hello.getBuffer(), hello.length(), "root", NULL, errorCode));
/external/icu/icu4c/source/test/intltest/
H A Ditutil.cpp369 UnicodeString hello=UNICODE_STRING_SIMPLE("Hello {0}!"); local
371 umsg_open(hello.getBuffer(), hello.length(), "root", NULL, errorCode));
461 UnicodeString hello=UNICODE_STRING_SIMPLE("Hello {0}!"); local
464 umsg_open(hello.getBuffer(), hello.length(), "root", NULL, errorCode));
/external/wpa_supplicant_8/hostapd/src/tls/
H A Dtlsv1_client_write.c47 u8 *hello, *end, *pos, *hs_length, *hs_start, *rhdr; local
65 hello = os_malloc(len);
66 if (hello == NULL)
68 end = hello + len;
70 rhdr = hello;
119 os_free(hello);
125 return hello;
/external/wpa_supplicant_8/src/tls/
H A Dtlsv1_client_write.c47 u8 *hello, *end, *pos, *hs_length, *hs_start, *rhdr; local
65 hello = os_malloc(len);
66 if (hello == NULL)
68 end = hello + len;
70 rhdr = hello;
119 os_free(hello);
125 return hello;
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Dtlsv1_client_write.c47 u8 *hello, *end, *pos, *hs_length, *hs_start, *rhdr; local
65 hello = os_malloc(len);
66 if (hello == NULL)
68 end = hello + len;
70 rhdr = hello;
119 os_free(hello);
125 return hello;

Completed in 2270 milliseconds

12