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

1 2 3

  /external/clang/test/PCH/
builtins.c 10 void hello() { function
11 printf("Hello, World!");
  /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:
funique-sections.c 6 const int hello = 123; variable
13 // UNIQUE: .section .rodata.hello,"a",@progbits
  /external/llvm/test/MC/ELF/
comdat-reloc.s 4 .globl hello
5 .type hello,@function
6 hello: label
  /external/syslinux/gnu-efi/gnu-efi-3.0/apps/
trivial.S 28 addl $hello-0b,%eax
41 hello: .byte 'h',0,'e',0,'l',0,'l',0,'o',0,'\n',0,'\r',0,0,0 label
  /prebuilts/go/darwin-x86/src/cmd/go/testdata/src/notest/
hello.go 3 func hello() { func
4 println("hello world")
6 Hello world
  /prebuilts/go/linux-x86/src/cmd/go/testdata/src/notest/
hello.go 3 func hello() { func
4 println("hello world")
6 Hello world
  /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
  /external/compiler-rt/test/asan/TestCases/
strncpy-overflow.cc 13 char *hello = (char*)malloc(6); local
14 strcpy(hello, "hello");
16 strncpy(short_buffer, hello, 10); // BOOM
  /external/r8/src/test/examples/hello/
Hello.java 6 // 'hello.dex' is what is run.
8 package hello; package
10 class Hello {
12 System.out.println("Hello, world");
  /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/r8/src/test/java/com/android/tools/r8/jsr45/
HelloKt.class 
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue154/
TestBean.java 19 public int hello; field in class:TestBean
  /prebuilts/go/darwin-x86/test/
slicecap.go 12 hello = "hello"
30 p2 := *(*uintptr)(unsafe.Pointer(&hello))
55 x := hello
11 hello = "hello" var
  /prebuilts/go/linux-x86/test/
slicecap.go 12 hello = "hello"
30 p2 := *(*uintptr)(unsafe.Pointer(&hello))
55 x := hello
11 hello = "hello" var
  /prebuilts/misc/windows/sdl2/test/
testloadso.c 28 int hello = 0; local
37 SDL_Log(" %s --hello <lib with puts()>\n", app);
47 if (strcmp(argv[1], "--hello") == 0) {
48 hello = 1;
69 if (hello) {
72 fn(" HELLO, WORLD!\n");
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/d30v/
reloc.s 5 add r2, r0, hello
10 hello: .ascii "Hello World\n" label
  /external/junit-params/src/test/java/junitparams/custom/
CustomParametersProviderTest.java 19 assertThat(param).isEqualTo("hello");
23 @HelloParameters(hello = "Hi")
32 String hello(); method in interface:CustomParametersProviderTest.HelloParameters
42 return new Object[]{"hello", "hello"};
48 private String hello; field in class:CustomParametersProviderTest.CustomHelloProvider
52 hello = parametersAnnotation.hello();
57 return new Object[]{hello, hello};
    [all...]
  /external/llvm/test/tools/llvm-cov/Inputs/
test.cpp 7 const char * hello = "world"; variable
8 const char * world = "hello";
  /external/robolectric/v1/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/syslinux/core/
hello.c 24 void hello(void) function
26 static char hello_str[] = "Hello, World!";
  /external/valgrind/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/valgrind/memcheck/tests/
varinforestrict.c 49 const char *hello = "World"; local
50 size_t l = strlen (hello) + 1;
52 fprintf (stderr, "Hello %s\n", cpy (earth, hello, l));

Completed in 1674 milliseconds

1 2 3