Searched defs:Hello (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/tools/gn/tutorial/
H A Dhello.cc9 void Hello(const char* who) { function
10 printf("Hello, %s.\n", who);
14 void Hello(const char* one, const char* two) { function
15 printf("Hello, %s and %s.\n", one, two);
/external/llvm/lib/Transforms/Hello/
H A DHello.cpp1 //===- Hello.cpp - Example code from "Writing an LLVM Pass" ---------------===//
10 // This file implements two versions of the LLVM "Hello World" pass described
26 // Hello - The first implementation, without getAnalysisUsage.
27 struct Hello : public FunctionPass { struct in namespace:__anon26216
29 Hello() : FunctionPass(ID) {} function in struct:__anon26216::Hello
33 errs() << "Hello: ";
40 char Hello::ID = 0;
41 static RegisterPass<Hello> X("hello", "Hello World Pass");
51 errs() << "Hello
[all...]

Completed in 2718 milliseconds