Searched refs:hello (Results 1 - 25 of 63) sorted by relevance

123

/external/valgrind/none/tests/
H A Dfdleak_ipv4.stdout.exp0 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:
H A Dfunique-sections.c6 const int hello = 123; variable
13 // UNIQUE: .section .rodata.hello,"a",@progbits
/external/clang/test/PCH/
H A Dbuiltins.c10 void hello() { function
/external/valgrind/memcheck/tests/linux/
H A Dstack_changes.stdout.exp0 hello, world: 0
2 hello, world: 1
3 hello, world: 2
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/v8/test/preparser/
H A Dstrict-octal-regexp.js32 var re = /hello\040world/;
/external/compiler-rt/test/asan/TestCases/
H A Dstrncpy-overflow.cc13 char *hello = (char*)malloc(6); local
14 strcpy(hello, "hello");
16 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/valgrind/memcheck/tests/
H A Dxml1.stdout.exp0 hello from frame3(). The answer is not 42.
H A Dvarinforestrict.c49 const char *hello = "World"; local
50 size_t l = strlen (hello) + 1;
52 fprintf (stderr, "Hello %s\n", cpy (earth, hello, l));
H A Dclient-msg.stderr.exp0 hello <> <&>%s world
/external/clang/test/CodeGenCXX/
H A Dcxx-block-objects.cpp15 void hello() const;
22 void (^c)(void) = ((__typeof(^{ a.hello(); }))_Block_copy((const void *)(^{ a.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
/external/chromium-trace/trace-viewer/third_party/webapp2/tests/resources/
H A Dprotorpc_services.py8 hello = messages.StringField(1, required=True) variable in class:BonjourResponse
13 return BonjourResponse(hello='Bonjour, %s!' %
20 hello = messages.StringField(1, required=True) variable in class:CiaoResponse
25 return CiaoResponse(hello='Ciao, %s!' %
/external/clang/test/CXX/lex/lex.literal/lex.ext/
H A Dp10.cpp13 const char *q = R"x("hello")x"wibble; // expected-error {{invalid suffix on literal; C++11 requires a space between literal and identifier}} expected-error {{expected ';'}}
/external/v8/test/mjsunit/
H A Dthis-in-callbacks.js46 assertEquals('id', 'hello'.replace('hello', r));
47 assertEquals('id', 'hello'.replace(/hello/, r));
/external/clang/test/Parser/
H A Drecovery.c26 if (x.hello) // expected-error {{no member named 'hello'}}
31 if (x.hello == 0) // expected-error {{no member named 'hello'}}
36 if ((x.hello == 0)) // expected-error {{no member named 'hello'}}
H A Dpragma-pack.c10 /*expected-warning {{unknown action for '#pragma pack'}}*/ #pragma pack(hello)
/external/clang/test/Sema/
H A Dtypo-correction.c34 _Generic(hello, int : banana)(); // expected-error-re {{use of undeclared identifier 'hello'{{$}}}}
/external/lldb/test/lang/c/strings/
H A DTestCStrings.py47 self.expect("expression -- (int)strlen(\"hello\")",
56 self.expect("expr --raw -- \"hello\"",
60 self.expect("p \"hello\"",
61 substrs = ['[6]) $', 'hello'])
63 self.expect("p (char*)\"hello\"",
65 'hello'])
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DFragmentTest.java27 int id = fragment.getResources().getIdentifier("hello", "string", "com.xtremelabs.robolectric");
30 String hello = fragment.getResources().getString(id);
31 assertEquals("Hello", hello);
33 hello = fragment.getString(id);
34 assertEquals("Hello", hello);
/external/deqp/framework/delibs/deutil/
H A DdeCommandLine.c163 const char* cmdLine = "hello";
164 const char* ref[] = { "hello" };
168 const char* cmdLine = "hello world";
169 const char* ref[] = { "hello", "world" };
173 const char* cmdLine = "hello/world";
174 const char* ref[] = { "hello/world" };
178 const char* cmdLine = "hello/world --help";
179 const char* ref[] = { "hello/world", "--help" };
183 const char* cmdLine = "hello/world --help foo";
184 const char* ref[] = { "hello/worl
[all...]
/external/elfutils/src/tests/
H A Drun-readelf-gdb_index.sh29 # hello.c
32 # static char *hello = "Hello";
38 # global = hello;
48 # static int hello (const char *bar)
56 # return hello (prefix->bar);
59 # gcc -g -fdebug-types-section -c hello.c
61 # gcc -g -fdebug-types-section -o testfilegdbindex7 hello.o world.o
87 [ 1] 0x00000000004004d4 <hello>..0x000000000040050b <say+0x1c>, CU index: 1
94 [ 741] symbol: hello, CUs: 0, 1
118 [ 1] 0x00000000004004d4 <hello>
[all...]

Completed in 7360 milliseconds

123