HomeSort by relevance Sort by last modified time
    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
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...]
  /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 596 milliseconds