/external/clang/test/PCH/ |
builtins.c | 10 void hello() { function 11 printf("Hello, World!");
|
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/ |
comdat-reloc.s | 4 .globl hello 5 .type hello,@function 6 hello: label
|
/dalvik/dx/tests/042-dex-ignore-result/ |
Blort.java | 19 static public int hello() { method in class:Blort 24 hello(); method 25 hello(); method
|
/dalvik/dx/tests/119-merge-conflict/testdata/ |
A.java | 4 String hello() { method in class:A 5 return "hello from A";
|
/external/clang/test/Index/ |
complete-unterminated.c | 13 const char *hello = "Hello, world"; variable
|
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) 106 // CHECK: Literal: ""Hello"" [9:24 - 9:31] StringLiteral=
|
/external/compiler-rt/lib/asan/lit_tests/TestCases/ |
strncpy-overflow.cc | 13 char *hello = (char*)malloc(6); local 14 strcpy(hello, "hello"); 16 strncpy(short_buffer, hello, 10); // BOOM
|
/external/stlport/test/unit/ |
strstream_buffer_read_test.cpp | 29 char hello[] = "Hello"; local 30 strstream stream(hello, sizeof(hello), ios_base::in);
|
/ndk/tests/device/test-gnustl-full/unit/ |
strstream_buffer_read_test.cpp | 29 char hello[] = "Hello"; local 30 strstream stream(hello, sizeof(hello), ios_base::in);
|
/ndk/tests/device/test-stlport/unit/ |
strstream_buffer_read_test.cpp | 29 char hello[] = "Hello"; local 30 strstream stream(hello, sizeof(hello), ios_base::in);
|
/external/chromium_org/chrome/browser/extensions/api/idltest/ |
idltest_api.cc | 39 std::string hello = "hello world"; local 41 BinaryValue::CreateWithCopiedBuffer(hello.c_str(), hello.size());
|
/external/clang/test/SemaCXX/ |
array-bounds-ptr-arith.cpp | 5 const char hello[] = "Hello world!"; // expected-note 2 {{declared here}} local 6 const char *helloptr = hello; 8 swallow("Hello world!" + 6); // no-warning 9 swallow("Hello world!" - 6); // expected-warning {{refers before the beginning of the array}} 10 swallow("Hello world!" + 14); // expected-warning {{refers past the end of the array}} 11 swallow("Hello world!" + 13); // no-warning 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} [all...] |
/external/chromium_org/mojo/public/tests/ |
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/qemu/distrib/sdl-1.2.15/test/ |
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) { 59 fn(" HELLO, WORLD!\n");
|
/external/chromium_org/net/tools/flip_server/ |
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->headers()->response_version()) [all...] |
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
FragmentTest.java | 27 int id = fragment.getResources().getIdentifier("hello", "string", "com.xtremelabs.robolectric"); 30 String hello = fragment.getResources().getString(id); local 31 assertEquals("Hello", hello); 33 hello = fragment.getString(id); 34 assertEquals("Hello", hello);
|
/external/valgrind/main/memcheck/tests/linux/ |
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/ |
sync_socket_unittest.cc | 47 const char kHelloString[] = "Hello, SyncSocket Client"; 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)); 301 char hello[kHelloStringLength] = {0}; local [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/app/ |
TextToSpeechActivity.java | 119 "Hello", 128 // Select a random hello. 130 String hello = HELLOS[RANDOM.nextInt(helloLength)]; local 131 mTts.speak(hello,
|
/external/chromium_org/mojo/system/ |
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/native_client_sdk/src/tests/nacl_io_test/ |
mount_fuse_test.cc | 152 const char hello_world[] = "Hello, World!\n"; 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) [all...] |
/external/chromium_org/third_party/icu/source/test/intltest/ |
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/dexmaker/src/test/java/com/google/dexmaker/examples/ |
HelloWorldMaker.java | 46 helloWorldClass.getMethod("hello").invoke(null); 51 * public static void hello() { 65 // Identify the 'hello()' method on declaringType. 66 MethodId hello = declaringType.getMethod(TypeId.VOID, "hello"); local 70 Code code = dexMaker.declare(hello, Modifier.STATIC | Modifier.PUBLIC);
|
/external/icu4c/test/intltest/ |
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));
|