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

/external/clang/test/PCH/
H A Dbuiltins.c10 void hello() { function
H A Dexprs.h20 const char *hello = "Hello" "PCH" "World"; variable
106 typedef typeof(_Generic(i, char*: 0, int: 0., default: hello))
/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/lib/asan/lit_tests/
H A Dstrncpy-overflow.cc21 char *hello = (char*)malloc(6); local
22 strcpy(hello, "hello");
24 strncpy(short_buffer, hello, 10); // BOOM
/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/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/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/icu4c/test/intltest/
H A Ditutil.cpp342 UnicodeString hello=UNICODE_STRING_SIMPLE("Hello {0}!"); local
344 umsg_open(hello.getBuffer(), hello.length(), "root", NULL, errorCode));
434 UnicodeString hello=UNICODE_STRING_SIMPLE("Hello {0}!"); local
437 umsg_open(hello.getBuffer(), hello.length(), "root", NULL, errorCode));
/external/zlib/src/test/
H A Dexample.c29 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/tcpdump/
H A Dprint-olsr.c210 const struct olsr_hello *hello; member in union:__anon13870
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);
H A Dprint-decnet.c183 int src, dst, info, blksize, eco, ueco, hello, other, vers; local
201 hello = EXTRACT_LE_16BITS(cmp->cm_init.in_hello);
204 "src %sblksize %d vers %d eco %d ueco %d hello %d",
206 hello);
250 (void)printf("router-hello ");
263 hello = EXTRACT_LE_16BITS(cmp->cm_rhello.rh_hello);
266 "vers %d eco %d ueco %d src %s blksize %d pri %d hello %d",
268 blksize, priority, hello);
273 (void)printf("endnode-hello ");
289 hello
[all...]
/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;
/external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
H A Dp5.cpp33 char hello[6] = "Hello"; member in namespace:pointer_to_object_parameters
37 (void)A<hello>().get();
/external/robolectric/src/test/java/com/xtremelabs/robolectric/
H A DR.java61 public static final int hello = nextId++; field in class:R.string

Completed in 354 milliseconds