HomeSort by relevance Sort by last modified time
    Searched defs:getFunction (Results 151 - 175 of 285) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Analysis/
LazyCallGraph.h 165 Function &getFunction() const;
334 Function &getFunction() const { return *F; }
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/CodeGen/
MachineFunction.h 382 /// getFunction - Return the LLVM function that this machine code represents
383 const Function *getFunction() const { return Fn; }
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/IR/
Function.h 133 // FunctionT->getFunction().
134 const Function *getFunction() const { return this; }
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Object/
StackMapParser.h 336 FunctionAccessor getFunction(unsigned FunctionIndex) const {
343 return function_iterator(getFunction(0));
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Analysis/
DependenceAnalysis.h 330 Function *getFunction() const { return F; }
    [all...]
LazyCallGraph.h 165 Function &getFunction() const;
334 Function &getFunction() const { return *F; }
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/CodeGen/
MachineFunction.h 382 /// getFunction - Return the LLVM function that this machine code represents
383 const Function *getFunction() const { return Fn; }
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/IR/
Function.h 133 // FunctionT->getFunction().
134 const Function *getFunction() const { return this; }
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Object/
StackMapParser.h 336 FunctionAccessor getFunction(unsigned FunctionIndex) const {
343 return function_iterator(getFunction(0));
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Analysis/
DependenceAnalysis.h 330 Function *getFunction() const { return F; }
    [all...]
LazyCallGraph.h 165 Function &getFunction() const;
334 Function &getFunction() const { return *F; }
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/CodeGen/
MachineFunction.h 382 /// getFunction - Return the LLVM function that this machine code represents
383 const Function *getFunction() const { return Fn; }
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/IR/
Function.h 133 // FunctionT->getFunction().
134 const Function *getFunction() const { return this; }
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Object/
StackMapParser.h 336 FunctionAccessor getFunction(unsigned FunctionIndex) const {
343 return function_iterator(getFunction(0));
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 699 Function *getFunction(std::string Name) {
701 if (auto *F = TheModule->getFunction(Name))
742 Function *F = getFunction(std::string("unary") + Opcode);
795 Function *F = getFunction(std::string("binary") + Op);
804 Function *CalleeF = getFunction(Callee);
1044 Function *TheFunction = getFunction(P.getName());
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 699 Function *getFunction(std::string Name) {
701 if (auto *F = TheModule->getFunction(Name))
742 Function *F = getFunction(std::string("unary") + Opcode);
795 Function *F = getFunction(std::string("binary") + Op);
804 Function *CalleeF = getFunction(Callee);
1044 Function *TheFunction = getFunction(P.getName());
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 699 Function *getFunction(std::string Name) {
701 if (auto *F = TheModule->getFunction(Name))
742 Function *F = getFunction(std::string("unary") + Opcode);
795 Function *F = getFunction(std::string("binary") + Op);
804 Function *CalleeF = getFunction(Callee);
1044 Function *TheFunction = getFunction(P.getName());
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp 688 Function *getFunction(std::string Name) {
690 if (auto *F = TheModule->getFunction(Name))
731 Function *F = getFunction(std::string("unary") + Opcode);
784 Function *F = getFunction(std::string("binary") + Op);
793 Function *CalleeF = getFunction(Callee);
1040 Function *TheFunction = getFunction(P.getName());
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
toy.cpp 710 Function *getFunction(std::string Name) {
712 if (auto *F = TheModule->getFunction(Name))
753 Function *F = getFunction(std::string("unary") + Opcode);
806 Function *F = getFunction(std::string("binary") + Op);
815 Function *CalleeF = getFunction(Callee);
1062 Function *TheFunction = getFunction(P.getName());
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 629 Function *getFunction(std::string Name) {
631 if (auto *F = TheModule->getFunction(Name))
661 Function *F = getFunction(std::string("unary") + Opcode);
691 Function *F = getFunction(std::string("binary") + Op);
700 Function *CalleeF = getFunction(Callee);
887 Function *TheFunction = getFunction(P.getName());
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 700 Function *getFunction(std::string Name) {
702 if (auto *F = TheModule->getFunction(Name))
743 Function *F = getFunction(std::string("unary") + Opcode);
796 Function *F = getFunction(std::string("binary") + Op);
805 Function *CalleeF = getFunction(Callee);
1045 Function *TheFunction = getFunction(P.getName());
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 695 Function *getFunction(std::string Name) {
697 if (auto *F = TheModule->getFunction(Name))
738 Function *F = getFunction(std::string("unary") + Opcode);
791 Function *F = getFunction(std::string("binary") + Op);
800 Function *CalleeF = getFunction(Callee);
1040 Function *TheFunction = getFunction(P.getName());
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DebugInfo.h 559 Function *getFunction() const { return getFunctionField(16); }
  /hardware/libhardware/include/hardware/
gralloc1.h 293 /* getFunction(..., descriptor)
303 gralloc1_function_pointer_t (*getFunction)(struct gralloc1_device* device,
    [all...]
  /hardware/qcom/display/msm8909/sdm/libs/hwc2/
hwc_session.cpp 135 hwc2_device_t::getFunction = GetFunction;
330 // HWC2 functions returned in GetFunction
775 hwc2_function_pointer_t HWCSession::GetFunction(struct hwc2_device *device,
    [all...]

Completed in 931 milliseconds

1 2 3 4 5 67 8 91011>>