Searched defs:getFunction (Results 1 - 25 of 67) sorted by relevance

123

/external/deqp/framework/delibs/decpp/
H A DdeDynamicLibrary.hpp41 deFunctionPtr getFunction (const char* name) const { return deDynamicLibrary_getFunction(m_library, name); } function in class:de::DynamicLibrary
/external/llvm/lib/Analysis/
H A DTrace.cpp24 Function *Trace::getFunction() const { function in class:Trace
29 return getFunction()->getParent();
35 Function *F = getFunction();
H A DBlockFrequencyInfo.cpp68 return &G->getFunction()->front();
77 return G->getFunction()->begin();
80 return G->getFunction()->end();
162 return BFI->getBlockProfileCount(*getFunction(), BB);
182 const Function *BlockFrequencyInfo::getFunction() const { function in class:BlockFrequencyInfo
183 return BFI ? BFI->getFunction() : nullptr;
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DTrace.cpp25 Function *Trace::getFunction() const { function in class:Trace
30 return getFunction()->getParent();
36 Function *F = getFunction();
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemExtensionDecl.java112 public String getFunction(int i) throws ArrayIndexOutOfBoundsException method in class:ElemExtensionDecl
/external/deqp/framework/common/
H A DtcuFunctionLibrary.cpp51 deFunctionPtr StaticFunctionLibrary::getFunction (const char* funcName) const function in class:tcu::StaticFunctionLibrary
72 deFunctionPtr DynamicFunctionLibrary::getFunction (const char* funcName) const function in class:tcu::DynamicFunctionLibrary
74 return m_dynamicLibrary.getFunction(funcName);
89 deFunctionPtr CompositeFunctionLibrary::getFunction (const char* name) const function in class:tcu::CompositeFunctionLibrary
93 const deFunctionPtr ptr = m_libraries[ndx].getFunction(name);
/external/deqp/executor/
H A DxeCallQueue.hpp55 Function getFunction (void) const { return m_func; } function in class:xe::Call
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
H A DFunctionTable.java328 Function getFunction(int which) method in class:FunctionTable
/external/llvm/include/llvm/CodeGen/
H A DGCMetadata.h101 /// getFunction - Return the function to which this metadata applies.
103 const Function &getFunction() const { return F; } function in class:llvm::GCFunctionInfo
/external/llvm/lib/CodeGen/
H A DMachineBlockFrequencyInfo.cpp61 return &G->getFunction()->front();
73 return G->getFunction()->begin();
77 return G->getFunction()->end();
174 const Function *F = MBFI->getFunction()->getFunction();
178 const MachineFunction *MachineBlockFrequencyInfo::getFunction() const { function in class:MachineBlockFrequencyInfo
179 return MBFI ? MBFI->getFunction() : nullptr;
/external/skia/src/gpu/glsl/
H A DGrGLSLBlend.cpp126 SkString getFunction; local
135 &getFunction);
144 setLumBody.printf("float diff = %s(lumColor - hueSat);", getFunction.c_str());
146 setLumBody.appendf("float outLum = %s(outColor);", getFunction.c_str());
171 SkString getFunction; local
180 &getFunction);
231 getFunction.c_str(), helpFunc, helpFunc, helpFunc, helpFunc,
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
H A DCallGraph.h210 // getFunction - Return the function that this call graph node represents.
211 Function *getFunction() const { return F; } function in class:llvm::CallGraphNode
H A DProfileInfo.h86 // getFunction() - Returns the Function for an Edge, checking for validity.
87 static const FType* getFunction(Edge e) { function in class:llvm::ProfileInfoT
115 EdgeInformation.find(getFunction(e));
128 EdgeInformation[getFunction(e)][e] = w;
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DGCMetadata.h109 /// getFunction - Return the function to which this metadata applies.
111 const Function &getFunction() const { return F; } function in class:llvm::GCFunctionInfo
H A DMachineFunction.h140 /// getFunction - Return the LLVM function that this machine code represents
142 const Function *getFunction() const { return Fn; } function in class:llvm::MachineFunction
/external/llvm/include/llvm/Analysis/
H A DCallGraph.h191 Function *getFunction() const { return F; } function in class:llvm::CallGraphNode
H A DDependenceAnalysis.h340 Function *getFunction() const { return F; } function in class:llvm::DependenceInfo
/external/llvm/lib/IR/
H A DInstruction.cpp65 Function *Instruction::getFunction() { return getParent()->getParent(); } function in class:Instruction
67 const Function *Instruction::getFunction() const { function in class:Instruction
H A DModule.cpp191 // getFunction - Look up the specified function in the module symbol table.
194 Function *Module::getFunction(StringRef Name) const { function in class:Module
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_build_util.h36 inline Function *getFunction() const { return func; } function in class:nv50_ir::BuildUtil
201 func = bb->getFunction();
211 func = bb->getFunction();
/external/swiftshader/third_party/LLVM/include/llvm/
H A DConstants.h560 Function *getFunction() const { return (Function*)Op<0>().get(); } function in class:llvm::BlockAddress
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DMetadata.cpp131 return MD->getFunction();
157 // getFunction - If this metadata is function-local and recursively has a
159 // Otherwise, return null. getFunction() should not be used for performance-
161 const Function *MDNode::getFunction() const { function in class:MDNode
306 const Function *F = getFunction();
H A DModule.cpp237 // getFunction - Look up the specified function in the module symbol table.
240 Function *Module::getFunction(StringRef Name) const { function in class:Module
/external/clang/lib/Sema/
H A DCodeCompleteConsumer.cpp399 CodeCompleteConsumer::OverloadCandidate::getFunction() const { function in class:CodeCompleteConsumer::OverloadCandidate
/external/llvm/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp413 Function *getFunction(std::string Name) { function
415 if (auto *F = TheModule->getFunction(Name))
464 Function *CalleeF = getFunction(Callee);
504 Function *TheFunction = getFunction(P.getName());

Completed in 609 milliseconds

123