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

1234

/external/valgrind/main/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:
/external/clang/test/PCH/
H A Dbuiltins.c10 void hello() { function
/external/valgrind/main/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/chromium_org/v8/test/preparser/
H A Dstrict-octal-regexp.js32 var re = /hello\040world/;
/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/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/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/main/memcheck/tests/
H A Dxml1.stdout.exp0 hello from frame3(). The answer is not 42.
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/stlport/test/unit/
H A Dstrstream_buffer_read_test.cpp29 char hello[] = "Hello"; local
30 strstream stream(hello, sizeof(hello), ios_base::in);
/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/Index/
H A Dcomplete-unterminated.c13 const char *hello = "Hello, world"; variable
/external/chromium_org/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/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/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/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/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/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/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...]

Completed in 2071 milliseconds

1234