HomeSort by relevance Sort by last modified time
    Searched defs:Hello (Results 1 - 3 of 3) sorted by null

  /development/pdk/pndk/samples/sample/
hello_cpp.h 4 class Hello
7 Hello();
8 ~Hello();
hello_cpp.cpp 4 Hello::Hello()
8 Hello::~Hello()
12 void Hello::printMessage(char* msg)
19 Hello hello_obj;
20 hello_obj.printMessage("Hello world!\n");
  /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
15 #define DEBUG_TYPE "hello"
25 // Hello - The first implementation, without getAnalysisUsage.
26 struct Hello : public FunctionPass {
28 Hello() : FunctionPass(ID) {}
32 errs() << "Hello: ";
39 char Hello::ID = 0;
40 static RegisterPass<Hello> X("hello", "Hello World Pass")
    [all...]

Completed in 96 milliseconds