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

1 2 3 4

  /external/chromium_org/tools/gn/tutorial/
say_hello.cc 5 #include "tools/gn/tutorial/hello.h"
9 Hello("Bill", "Ted");
11 Hello("you guys");
hello.h 8 void Hello(const char* who);
11 void Hello(const char* one, const char* two);
hello.cc 7 #include "tools/gn/tutorial/hello.h"
9 void Hello(const char* who) {
10 printf("Hello, %s.\n", who);
14 void Hello(const char* one, const char* two) {
15 printf("Hello, %s and %s.\n", one, two);
  /external/valgrind/main/none/tests/linux/
mremap3.stdout.exp 4 Hello World
  /external/chromium_org/tools/gyp/test/actions/src/subdir3/
generate_main.py 14 printf("Hello from generate_main.py\\n");
  /external/chromium_org/tools/gyp/test/hello/
gyptest-default.py 8 Verifies simplest-possible build of a "Hello, world!" program
16 test.run_gyp('hello.gyp')
18 test.build('hello.gyp')
20 test.run_built_executable('hello', stdout="Hello, world!\n")
22 test.up_to_date('hello.gyp', test.DEFAULT)
gyptest-target.py 8 Verifies simplest-possible build of a "Hello, world!" program
9 using an explicit build target of 'hello'.
16 test.run_gyp('hello.gyp')
18 test.build('hello.gyp', 'hello')
20 test.run_built_executable('hello', stdout="Hello, world!\n")
22 test.up_to_date('hello.gyp', 'hello')
gyptest-all.py 8 Verifies simplest-possible build of a "Hello, world!" program
16 test.run_gyp('hello.gyp')
18 test.build('hello.gyp', test.ALL)
20 test.run_built_executable('hello', stdout="Hello, world!\n")
22 test.up_to_date('hello.gyp', test.ALL)
  /external/chromium_org/tools/gyp/test/rules/src/
rule.py 13 puts("Hello %s");
  /external/llvm/lib/Transforms/Hello/
Hello.cpp 1 //===- Hello.cpp - Example code from "Writing an LLVM Pass" ---------------===//
10 // This file implements two versions of the LLVM "Hello World" pass described
21 #define DEBUG_TYPE "hello"
26 // Hello - The first implementation, without getAnalysisUsage.
27 struct Hello : public FunctionPass {
29 Hello() : FunctionPass(ID) {}
33 errs() << "Hello: ";
40 char Hello::ID = 0;
41 static RegisterPass<Hello> X("hello", "Hello World Pass")
    [all...]
Makefile 1 ##===- lib/Transforms/Hello/Makefile -----------------------*- Makefile -*-===##
16 # from the hello plugin.
19 EXPORTED_SYMBOL_FILE = $(PROJ_SRC_DIR)/Hello.exports
  /external/llvm/lib/Transforms/
Makefile 11 PARALLEL_DIRS = Utils Instrumentation Scalar InstCombine IPO Vectorize Hello ObjCARC
17 PARALLEL_DIRS := $(filter-out Hello, $(PARALLEL_DIRS))
  /ndk/tests/build/c++-stl-source-extensions/jni/
main.cp 4 std::cout << "Hello World!" << std::endl;
  /external/chromium_org/tools/gyp/test/actions/src/subdir1/
make-prog1.py 14 printf("Hello from make-prog1.py\n");
make-prog2.py 14 printf("Hello from make-prog2.py\n");
  /external/chromium_org/tools/gyp/test/build-option/
gyptest-build.py 8 Verifies simplest-possible build of a "Hello, world!" program
22 test.run_gyp('hello.gyp', '--build=Default')
24 test.run_built_executable('hello', stdout="Hello, world!\n")
26 test.up_to_date('hello.gyp', test.DEFAULT)
  /external/chromium_org/tools/gyp/test/generator-output/actions/subdir1/
make-prog1.py 14 printf("Hello from make-prog1.py\n");
make-prog2.py 14 printf("Hello from make-prog2.py\n");
  /external/chromium_org/tools/gyp/test/module/
gyptest-default.py 8 Verifies simple build of a "Hello, world!" program with loadable modules. The
23 Hello from program.c
24 Hello from lib1.c
25 Hello from lib2.c
  /external/valgrind/main/drd/tests/
tc21_pthonce.stdout.exp 1 main: Hello
  /external/valgrind/main/helgrind/tests/
tc21_pthonce.stdout.exp 1 main: Hello
  /libcore/luni/src/test/java/libcore/java/util/
ObjectsTest.java 23 public static final class Hello {
24 public String toString() { return "hello"; }
38 String[] o1 = new String[] { "hello" };
40 String[] o3 = new String[] { "hello" };
50 assertTrue(Objects.deepEquals("hello", "hello"));
51 assertFalse(Objects.deepEquals("hello", "world"));
55 Hello h1 = new Hello();
56 Hello h2 = new Hello()
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
editable_text_test.js 177 var obj = new cvox.ChromeVoxEditableTextBase('Hello', 0, 0, false, tts);
179 obj.changed(new cvox.TextChangeEvent('Hello', 1, 1));
180 obj.changed(new cvox.TextChangeEvent('Hello', 2, 2));
181 obj.changed(new cvox.TextChangeEvent('Hello', 3, 3));
182 obj.changed(new cvox.TextChangeEvent('Hello', 4, 4));
183 obj.changed(new cvox.TextChangeEvent('Hello', 5, 5));
184 obj.changed(new cvox.TextChangeEvent('Hello', 4, 4));
185 obj.changed(new cvox.TextChangeEvent('Hello', 3, 3));
188 obj.changed(new cvox.TextChangeEvent('Hello', 0, 0));
189 obj.changed(new cvox.TextChangeEvent('Hello', 5, 5))
    [all...]
  /external/chromium_org/tools/gyp/test/relative/
gyptest-default.py 8 Verifies simplest-possible build of a "Hello, world!" program
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/tests/
ifcritical-err.asm 3 teststring db "Hello, world"

Completed in 498 milliseconds

1 2 3 4