/dalvik/dx/tests/042-dex-ignore-result/ |
Blort.java | 19 static public int hello() { method in class:Blort 24 hello(); method 25 hello(); method
|
/external/clang/test/CodeGen/ |
function-sections.c | 12 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/ |
builtins.c | 10 void hello() { function 11 printf("Hello, World!");
|
/dalvik/dx/tests/119-merge-conflict/testdata/ |
A.java | 4 String hello() { method in class:A 5 return "hello from A";
|
B.java | 5 System.out.println(new A().hello());
|
/external/compiler-rt/test/asan/TestCases/ |
strncpy-overflow.cc | 12 char *hello = (char*)malloc(6); local 13 strcpy(hello, "hello"); 15 strncpy(short_buffer, hello, 10); // BOOM
|
/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/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/clang/test/CodeGenCXX/ |
cxx-block-objects.cpp | 15 void hello() const; 22 void (^c)(void) = ((__typeof(^{ a.hello(); }))_Block_copy((const void *)(^{ a.hello(); })));
|
/external/llvm/test/MC/ELF/ |
comdat-reloc.s | 4 .globl hello 5 .type hello,@function 6 hello: label
|
/external/chromium_org/third_party/cython/src/pyximport/test/ |
test_reload.py | 18 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/ |
complete-unterminated.c | 13 const char *hello = "Hello, world"; variable
|
/external/clang/test/CXX/lex/lex.literal/lex.ext/ |
p10.cpp | 13 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/ |
idltest_api.cc | 39 std::string hello = "hello world"; local 41 BinaryValue::CreateWithCopiedBuffer(hello.c_str(), hello.size());
|
/external/clang/test/Parser/ |
recovery.c | 26 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'}}
|
pragma-pack.c | 10 /*expected-warning {{unknown action for '#pragma pack'}}*/ #pragma pack(hello)
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
chroot_file_system.py | 14 |fs|, so ChrootFileSystem(fs, 'hello').Read(['world']) is equivalent to 15 fs.Read(['hello/world']) with the 'hello' prefix stripped from the result.
|
/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...] |
/external/chromium_org/tools/grit/grit/node/ |
misc_unittest.py | 67 <if expr="'hello' in defs"> 69 Hello! 95 grd.SetDefines({'hello': '1'}) 170 <if expr="lang == 'fr' or 'hello' in defs"> 197 grd.SetDefines({'hello': '1'}) 212 grd.SetDefines({'hello': '1'}) 238 <if expr="'hello' in defs"> 248 <if expr="'hello' in defs"> 258 <if expr="'hello' in defs"> 269 <if expr="'hello' in defs" [all...] |
/development/ndk/samples/hello-jni/jni/ |
Android.mk | 19 LOCAL_MODULE := hello-jni 20 LOCAL_SRC_FILES := hello-jni.c
|
/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/ipc/mojo/ |
ipc_channel_mojo_readers.cc | 32 std::string hello; local 33 if (!iter.ReadString(&hello)) { 38 if (hello != kHelloRequestMagic) { 39 DLOG(WARNING) << "Magic mismatch:" << hello; 62 std::string hello; local 63 if (!iter.ReadString(&hello)) { 68 if (hello != kHelloResponseMagic) { 69 DLOG(WARNING) << "Magic mismatch:" << hello; 231 DLOG(WARNING) << "Writing Hello request failed: " << create_result; 246 DLOG(ERROR) << "Failed to parse Hello response." [all...] |
/external/chromium_org/v8/test/webkit/fast/js/ |
primitive-property-access-edge-cases.js | 103 shouldBeTrue("checkGet('hello', String)"); 106 shouldBeTrue("checkSet('hello', String)"); 109 shouldBeTrue("checkGetStrict('hello', String)"); 112 shouldBeTrue("checkSetStrict('hello', String)"); 140 shouldBeTrue("checkRead('hello', String)"); 143 shouldBeTrue("checkWrite('hello', String)"); 146 shouldBeTrue("checkReadStrict('hello', String)"); 149 shouldThrow("checkWriteStrict('hello', String)"); 189 shouldBeTrue("checkNumericGet('hello', String)"); 192 shouldBeTrue("checkNumericSet('hello', String)") [all...] |
/external/deqp/framework/delibs/deutil/ |
deCommandLine.c | 164 const char* cmdLine = "hello"; 165 const char* ref[] = { "hello" }; 169 const char* cmdLine = "hello world"; 170 const char* ref[] = { "hello", "world" }; 174 const char* cmdLine = "hello/world"; 175 const char* ref[] = { "hello/world" }; 179 const char* cmdLine = "hello/world --help"; 180 const char* ref[] = { "hello/world", "--help" }; 184 const char* cmdLine = "hello/world --help foo"; 185 const char* ref[] = { "hello/world", "--help", "foo" } [all...] |
/external/chromium_org/net/data/websocket/ |
websocket_worker_simple.js | 22 var greeting = "hello"; 29 // Receive echoed "hello".
|