OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Hello
(Results
1 - 2
of
2
) sorted by null
/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
...]
/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
...]
Completed in 64 milliseconds