Searched refs:Function (Results 126 - 150 of 723) sorted by relevance

1234567891011>>

/external/llvm/lib/ExecutionEngine/JIT/
H A DJITEmitter.cpp64 static bool isNonGhostDeclaration(const Function *F) {
84 struct CallSiteValueMapConfig : public NoRAUWValueMapConfig<Function*> {
86 static void onDelete(JITResolverState *JRS, Function *F);
91 typedef ValueMap<Function*, void*, NoRAUWValueMapConfig<Function*> >
93 typedef std::map<void*, AssertingVH<Function> > CallSiteToFunctionMapTy;
94 typedef ValueMap<Function *, SmallPtrSet<void*, 1>,
130 std::pair<void *, Function *> LookupFunctionFromCallSite(
145 void AddCallSite(const MutexGuard &locked, void *CallSite, Function *F) {
155 void EraseAllCallSitesForPrelocked(Function *
[all...]
/external/chromium/testing/gmock/include/gmock/internal/
H A Dgmock-generated-internal-utils.h138 // Template struct Function<F>, where F must be a function type, contains
152 struct Function;
155 struct Function<R()> { struct in namespace:testing::internal
164 struct Function<R(A1)> struct in namespace:testing::internal
165 : Function<R()> {
174 struct Function<R(A1, A2)> struct in namespace:testing::internal
175 : Function<R(A1)> {
184 struct Function<R(A1, A2, A3)> struct in namespace:testing::internal
185 : Function<R(A1, A2)> {
194 struct Function< struct in namespace:testing::internal
205 struct Function<R(A1, A2, A3, A4, A5)> struct in namespace:testing::internal
216 struct Function<R(A1, A2, A3, A4, A5, A6)> struct in namespace:testing::internal
227 struct Function<R(A1, A2, A3, A4, A5, A6, A7)> struct in namespace:testing::internal
238 struct Function<R(A1, A2, A3, A4, A5, A6, A7, A8)> struct in namespace:testing::internal
249 struct Function<R(A1, A2, A3, A4, A5, A6, A7, A8, A9)> struct in namespace:testing::internal
262 struct Function<R(A1, A2, A3, A4, A5, A6, A7, A8, A9, A10)> struct in namespace:testing::internal
[all...]
/external/clang/lib/CodeGen/
H A DCGDeclCXX.cpp166 if (llvm::Function *fn = dyn_cast<llvm::Function>(atexit))
181 static llvm::Function *
193 llvm::Function *fn =
206 if (llvm::Function *dtorFn =
207 dyn_cast<llvm::Function>(dtor->stripPointerCasts()))
228 if (llvm::Function *atexitFn = dyn_cast<llvm::Function>(atexit))
268 static llvm::Function *
272 llvm::Function *F
[all...]
/external/guava/guava-tests/test/com/google/common/math/
H A DMathTesting.java31 import com.google.common.base.Function;
59 private static final Function<Integer, Long> TO_LONG = new Function<Integer, Long>() {
67 private static final Function<Long, BigInteger> TO_BIGINTEGER =
68 new Function<Long, BigInteger>() {
75 private static final Function<Integer, Integer> NEGATE_INT = new Function<Integer, Integer>() {
82 private static final Function<Long, Long> NEGATE_LONG = new Function<Long, Long>() {
89 private static final Function<BigIntege
[all...]
/external/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp54 RetOrArg(const Function *F, unsigned Idx, bool IsArg) : F(F), Idx(Idx),
56 const Function *F;
89 RetOrArg CreateRet(const Function *F, unsigned Idx) {
93 RetOrArg CreateArg(const Function *F, unsigned Idx) {
115 typedef std::set<const Function*> LiveFuncSet;
144 void SurveyFunction(const Function &F);
148 void MarkLive(const Function &F);
150 bool RemoveDeadStuffFromFunction(Function *F);
151 bool DeleteDeadVarargs(Function &Fn);
152 bool RemoveDeadArgumentsFromCallers(Function
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/extensions/
H A DExpressionVisitor.java28 import org.apache.xpath.functions.Function;
62 public boolean visitFunction(ExpressionOwner owner, Function func)
/external/apache-xml/src/main/java/org/apache/xpath/
H A DXPathVisitor.java25 import org.apache.xpath.functions.Function;
147 public boolean visitFunction(ExpressionOwner owner, Function func)
/external/guava/guava/src/com/google/common/base/
H A DEnums.java42 * Returns a {@link Function} that maps an {@link Enum} name to the associated
43 * {@code Enum} constant. The {@code Function} will return {@code null} if the
49 public static <T extends Enum<T>> Function<String, T> valueOfFunction(Class<T> enumClass) {
54 * {@link Function} that maps an {@link Enum} name to the associated
58 Function<String, T>, Serializable {
H A DFunctionalEquivalence.java41 private final Function<F, ? extends T> function;
45 Function<F, ? extends T> function, Equivalence<T> resultEquivalence) {
44 FunctionalEquivalence( Function<F, ? extends T> function, Equivalence<T> resultEquivalence) argument
/external/guava/guava/src/com/google/common/cache/
H A DCache.java21 import com.google.common.base.Function;
39 * extend {@link Function}.
51 public interface Cache<K, V> extends Function<K, V> {
176 * Discouraged. Provided to satisfy the {@code Function} interface; use {@link #get} or
H A DLoadingCache.java21 import com.google.common.base.Function;
38 * <p>When evaluated as a {@link Function}, a cache yields the same result as invoking
46 public interface LoadingCache<K, V> extends Cache<K, V>, Function<K, V> {
122 * Discouraged. Provided to satisfy the {@code Function} interface; use {@link #get} or
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DGenericMapMaker.java21 import com.google.common.base.Function;
96 Function<? super K, ? extends V> computingFunction);
/external/llvm/include/llvm/Analysis/
H A DBranchProbabilityInfo.h45 bool runOnFunction(Function &F);
111 Function *LastF;
H A DInlineCost.h17 #include "llvm/Function.h"
128 InlineCost getInlineCost(CallSite CS, Function *Callee, int Threshold);
133 bool callIsSmall(const Function *Callee);
H A DRegionPass.h23 #include "llvm/Function.h"
30 class Function;
96 bool runOnFunction(Function &F);
/external/llvm/include/llvm/CodeGen/
H A DGCStrategy.h139 GCFunctionInfo *insertFunctionInfo(const Function &F);
147 virtual bool performCustomLowering(Function &F);
H A DMachineModuleInfo.h71 const Function *Personality; // Personality function.
146 std::vector<const Function *> Personalities;
151 SmallPtrSet<const Function *, 32> UsedFunctions;
262 void takeDeletedSymbolsForFunction(const Function *F,
284 const Function *Personality);
291 const std::vector<const Function *>& getPersonalities() const {
298 bool isUsedFunction(const Function *F) {
391 const Function *getPersonality() const;
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.h157 std::vector<Function*> FunctionsWithBodies;
161 typedef std::vector<std::pair<Function*, Function*> > UpgradedIntrinsicMap;
175 DenseMap<Function*, uint64_t> DeferredFunctionInfo;
180 DenseMap<Function*, std::vector<BlockAddrRefTy> > BlockAddrFwdRefs;
280 bool ParseFunctionBody(Function *F);
290 bool FindFunctionInStream(Function *F,
291 DenseMap<Function*, uint64_t>::iterator DeferredFunctionInfoIterator);
/external/llvm/lib/Target/MBlaze/
H A DMBlazeIntrinsicInfo.cpp16 #include "llvm/Function.h"
103 Function *MBlazeIntrinsicInfo::getDeclaration(Module *M, unsigned IntrID,
108 return cast<Function>(M->getOrInsertFunction(getName(IntrID),
/external/llvm/lib/Transforms/Scalar/
H A DConstantProp.cpp43 bool runOnFunction(Function &F);
63 bool ConstantPropagation::runOnFunction(Function &F) {
/external/llvm/lib/Transforms/Utils/
H A DMem2Reg.cpp21 #include "llvm/Function.h"
37 virtual bool runOnFunction(Function &F);
57 bool PromotePass::runOnFunction(Function &F) {
/external/llvm/tools/bugpoint/
H A DMiscompilation.cpp176 class ReduceMiscompilingFunctions : public ListReducer<Function*> {
185 virtual TestResult doTest(std::vector<Function*> &Prefix,
186 std::vector<Function*> &Suffix,
205 bool TestFuncs(const std::vector<Function*> &Prefix, std::string &Error);
246 bool ReduceMiscompilingFunctions::TestFuncs(const std::vector<Function*> &Funcs,
268 std::vector<Function*> FuncsOnClone;
270 Function *F = cast<Function>(VMap[Funcs[i]]);
307 std::vector<Function*> &MiscompiledFunctions,
407 // All of the Function*'
[all...]
/external/llvm/tools/llvm-diff/
H A DDiffConsumer.h28 class Function;
60 : L(L), R(R), Differences(false), IsFunction(isa<Function>(L)) {}
/external/llvm/unittests/Bitcode/
H A DBitReaderTest.cpp30 Function* Func = Function::Create(FuncTy,GlobalValue::ExternalLinkage,
/external/llvm/unittests/VMCore/
H A DVerifierTest.cpp12 #include "llvm/Function.h"
28 OwningPtr<Function> F(Function::Create(FTy, GlobalValue::ExternalLinkage));

Completed in 3374 milliseconds

1234567891011>>