/external/clang/test/PCH/ |
H A D | builtins.c | 10 void hello() { function
|
H A D | exprs.h | 20 const char *hello = "Hello" "PCH" "World"; variable 106 typedef typeof(_Generic(i, char*: 0, int: 0., default: hello))
|
/external/llvm/test/MC/ELF/ |
H A D | comdat-reloc.s | 4 .globl hello 5 .type hello,@function 6 hello: label
|
/external/clang/test/Index/ |
H A D | complete-unterminated.c | 13 const char *hello = "Hello, world"; variable
|
H A D | annotate-tokens.c | 9 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 D | strstream_buffer_read_test.cpp | 29 char hello[] = "Hello"; local 30 strstream stream(hello, sizeof(hello), ios_base::in);
|
/external/compiler-rt/lib/asan/lit_tests/TestCases/ |
H A D | strncpy-overflow.cc | 13 char *hello = (char*)malloc(6); local 14 strcpy(hello, "hello"); 16 strncpy(short_buffer, hello, 10); // BOOM
|
/external/chromium_org/chrome/browser/extensions/api/idltest/ |
H A D | idltest_api.cc | 39 std::string hello = "hello world"; local 41 BinaryValue::CreateWithCopiedBuffer(hello.c_str(), hello.size());
|
/external/chromium_org/mojo/public/tests/ |
H A D | system_core_unittest.cc | 67 static const char hello[] = "hello"; local 68 memcpy(buffer, hello, sizeof(hello)); 69 buffer_size = static_cast<uint32_t>(sizeof(hello)); 72 hello, buffer_size, 89 EXPECT_EQ(static_cast<uint32_t>(sizeof(hello)), buffer_size); 90 EXPECT_EQ(0, memcmp(hello, buffer, sizeof(hello)));
|
/external/clang/test/SemaCXX/ |
H A D | array-bounds-ptr-arith.cpp | 5 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 D | mem_cache_test.cc | 39 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 D | testloadso.c | 15 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/valgrind/main/memcheck/tests/linux/ |
H A D | stack_changes.c | 18 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 D | sync_socket_unittest.cc | 233 // 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/chromium_org/mojo/system/ |
H A D | remote_message_pipe_posix_unittest.cc | 169 const char hello[] = "hello"; local 198 hello, sizeof(hello), 212 EXPECT_EQ(sizeof(hello), static_cast<size_t>(buffer_size)); 213 EXPECT_EQ(0, strcmp(buffer, hello)); 260 const char hello[] = "hello"; local 294 hello, sizeof(hello), 377 const char hello[] = "hello"; local [all...] |
/external/chromium_org/third_party/icu/source/test/intltest/ |
H A D | itutil.cpp | 324 UnicodeString hello=UNICODE_STRING_SIMPLE("Hello {0}!"); local 326 umsg_open(hello.getBuffer(), hello.length(), "root", NULL, errorCode)); 416 UnicodeString hello=UNICODE_STRING_SIMPLE("Hello {0}!"); local 419 umsg_open(hello.getBuffer(), hello.length(), "root", NULL, errorCode));
|
/external/zlib/src/test/ |
H A D | example.c | 29 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/native_client_sdk/src/tests/nacl_io_test/ |
H A D | event_test.cc | 176 const char hello[] = "Hello World."; local 191 EXPECT_EQ(sizeof(hello), pipe.Write_Locked(hello, sizeof(hello))); 198 EXPECT_EQ(sizeof(hello), pipe.Read_Locked(tmp, sizeof(tmp))); 202 EXPECT_EQ(0, strcmp(hello, tmp));
|
H A D | mount_fuse_test.cc | 199 File hello; local 200 hello.name = "hello"; 201 hello.data.resize(hello_len); 202 memcpy(hello.data.data(), hello_world, hello_len); 203 g_files.push_back(hello); 210 ASSERT_EQ(0, mnt_.Open(Path("/hello"), O_RDONLY, &node)); 244 ASSERT_EQ(0, mnt_.Open(Path("/hello"), O_RDONLY, &node)); 276 EXPECT_STREQ("hello", entries[2].d_name); 284 EXPECT_STREQ("hello", entrie [all...] |
/external/icu4c/test/intltest/ |
H A D | itutil.cpp | 351 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/tcpdump/ |
H A D | print-olsr.c | 210 const struct olsr_hello *hello; member in union:__anon27214 281 ptr.hello = (struct olsr_hello *)msg_data; 282 printf("\n\t hello-time %.3lfs, MPR willingness %u", 283 ME_TO_DOUBLE(ptr.hello->htime), ptr.hello->will);
|
/external/wpa_supplicant_8/hostapd/src/tls/ |
H A D | tlsv1_client_write.c | 47 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 D | tlsv1_client_write.c | 47 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 D | tlsv1_client_write.c | 47 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/clang/test/CXX/temp/temp.arg/temp.arg.nontype/ |
H A D | p5.cpp | 33 char hello[6] = "Hello"; member in namespace:pointer_to_object_parameters 37 (void)A<hello>().get();
|