HomeSort by relevance Sort by last modified time
    Searched refs:hello (Results 1 - 25 of 167) sorted by null

1 2 3 4 5 6 7

  /external/valgrind/main/none/tests/
fdleak_ipv4.stdout.exp 0 hello
  /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/PCH/
builtins.c 10 void hello() { function
11 printf("Hello, World!");
  /external/valgrind/main/memcheck/tests/linux/
stack_changes.stdout.exp 0 hello, world: 0
2 hello, world: 1
3 hello, world: 2
  /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/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/tcpdump/tests/
mpls-ldp-hello.sh 3 uudecode mpls-ldp-hello.puu
5 echo -n test mpls-ldp-hello ...
6 ../tcpdump -t -n -v -r mpls-ldp-hello.pcap >mpls-ldp-hello.new
7 if diff mpls-ldp-hello.new mpls-ldp-hello.out
  /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"] = "HTTP/1.0 200 OK\r\n"
52 mem_cache_->ReadAndStoreFileContents("./hello");
55 hello = mem_cache_->GetFileData("hello");
59 ASSERT_FALSE(NULL == hello);
60 ASSERT_EQ(hello, mem_cache_->GetFileData("hello"));
63 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/valgrind/main/memcheck/tests/
xml1.stdout.exp 0 hello from frame3(). The answer is not 42.
  /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/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/clang/test/Index/
complete-unterminated.c 13 const char *hello = "Hello, world"; variable
  /ndk/tests/build/multi-abi/jni/
Android.mk 4 LOCAL_MODULE := multi-hello
  /ndk/tests/device/test-gnustl-1/jni/
Android.mk 5 LOCAL_SRC_FILES := hello.cpp
  /ndk/tests/device/test-gnustl-2/jni/
Android.mk 5 LOCAL_SRC_FILES := hello.cpp
  /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'}}
  /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/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);

Completed in 753 milliseconds

1 2 3 4 5 6 7