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

/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:__anon13262
29 Hello() : FunctionPass(ID) {} function in struct:__anon13262::Hello
33 errs() << "Hello: ";
40 char Hello::ID = 0;
41 static RegisterPass<Hello> X("hello", "Hello World Pass");
51 errs() << "Hello
[all...]
/external/swiftshader/third_party/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
25 // Hello - The first implementation, without getAnalysisUsage.
26 struct Hello : public FunctionPass { struct in namespace:__anon18883
28 Hello() : FunctionPass(ID) {} function in struct:__anon18883::Hello
32 errs() << "Hello: ";
39 char Hello::ID = 0;
40 static RegisterPass<Hello> X("hello", "Hello World Pass");
50 errs() << "Hello
[all...]
/external/xmlrpcpp/test/
H A DHelloServer.cpp13 // No arguments, result is "Hello".
14 class Hello : public XmlRpcServerMethod class in inherits:XmlRpcServerMethod
17 Hello(XmlRpcServer* s) : XmlRpcServerMethod("Hello", s) {} function in class:Hello
21 result = "Hello";
29 // One argument is passed, result is "Hello, " + arg.
37 std::string resultString = "Hello, ";

Completed in 148 milliseconds