HomeSort by relevance Sort by last modified time
    Searched refs:Function (Results 1 - 25 of 3150) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/compile/slang/StripUnkAttr/
strip_unknown_attributes.h 18 class Function;
23 // Remove any readnone/readonly attributes from function parameters,
27 // other than function attributes, so it will fail verification otherwise.
31 // Similarly, older LLVM versions don't support argmemonly as a function
34 bool stripUnknownAttributes(llvm::Function &F);
  /external/parameter-framework/asio-1.10.6/include/asio/
handler_invoke_hook.hpp 23 * @brief Default invoke function for handlers.
37 * hooking function ensures that the invoked method used for the final handler
43 * This default implementation invokes the function object like so:
44 * @code function(); @endcode
45 * If necessary, the default implementation makes a copy of the function object
52 * template <typename Function>
53 * void asio_handler_invoke(Function function, my_handler* context)
55 * context->strand_.dispatch(function);
61 /// Default handler invocation hook used for non-const function objects
    [all...]
  /external/llvm/include/llvm/Transforms/Scalar/
GuardWidening.h 24 class Function;
27 PreservedAnalyses run(Function &F, AnalysisManager<Function> &AM);
DCE.h 17 #include "llvm/IR/Function.h"
25 PreservedAnalyses run(Function &F, AnalysisManager<Function> &AM);
DeadStoreElimination.h 21 #include "llvm/IR/Function.h"
30 PreservedAnalyses run(Function &F, AnalysisManager<Function> &FAM);
EarlyCSE.h 17 #include "llvm/IR/Function.h"
30 /// \brief Run the pass over the function.
31 PreservedAnalyses run(Function &F, AnalysisManager<Function> &AM);
MergedLoadStoreMotion.h 34 PreservedAnalyses run(Function &F, AnalysisManager<Function> &AM);
PartiallyInlineLibCalls.h 26 PreservedAnalyses run(Function &F, AnalysisManager<Function> &AM);
SCCP.h 24 #include "llvm/IR/Function.h"
29 /// This pass performs function-level constant propagation and merging.
32 PreservedAnalyses run(Function &F, AnalysisManager<Function> &AM);
Sink.h 18 #include "llvm/IR/Function.h"
26 PreservedAnalyses run(Function &F, AnalysisManager<Function> &AM);
  /external/clang/test/PCH/
typo.cpp 12 Function<int(int)> f;
13 // expected-error@-1{{no template named 'Function'; did you mean 'boost::function'?}}
14 // expected-note@Inputs/typo.hpp:2{{'boost::function' declared here}}
  /external/libcxxabi/test/
catch_function_02.pass.cpp 19 typedef void Function();
25 catch (Function b) // equivalent to void (*)()
  /prebuilts/ndk/r11/sources/cxx-stl/gabi++/tests/
catch_function_01.cpp 18 typedef void Function();
24 catch (Function& b) // can't catch void (*)()
catch_function_02.cpp 18 typedef void Function();
24 catch (Function b) // equivalent to void (*)()
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/
catch_function_01.pass.cpp 18 typedef void Function();
24 catch (Function& b) // can't catch void (*)()
catch_function_02.pass.cpp 18 typedef void Function();
24 catch (Function b) // equivalent to void (*)()
  /prebuilts/ndk/r13/sources/cxx-stl/gabi++/tests/
catch_function_01.cpp 18 typedef void Function();
24 catch (Function& b) // can't catch void (*)()
catch_function_02.cpp 18 typedef void Function();
24 catch (Function b) // equivalent to void (*)()
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++abi/test/
catch_function_02.pass.cpp 18 typedef void Function();
24 catch (Function b) // equivalent to void (*)()
  /external/swiftshader/third_party/LLVM/include/llvm/
AutoUpgrade.h 20 class Function;
23 /// This is a more granular function that simply checks an intrinsic function
25 /// null in NewFn if the all calls to the original intrinsic function
26 /// should be transformed to non-function-call instructions.
27 bool UpgradeIntrinsicFunction(Function *F, Function *&NewFn);
30 /// intrinsic function with a call to the specified new function.
31 void UpgradeIntrinsicCall(CallInst *CI, Function *NewFn)
    [all...]
  /external/llvm/lib/IR/
PassManager.cpp 19 template class PassManager<Function>;
21 template class AnalysisManager<Function>;
23 template class OuterAnalysisManagerProxy<ModuleAnalysisManager, Function>;
  /external/llvm/tools/llvm-cov/
CoverageFilters.cpp 1 //===- CoverageFilters.cpp - Function coverage mapping filters ------------===//
10 // These classes provide filtering for function coverage mapping records.
20 bool NameCoverageFilter::matches(const coverage::FunctionRecord &Function) {
21 StringRef FuncName = Function.Name;
26 NameRegexCoverageFilter::matches(const coverage::FunctionRecord &Function) {
27 return llvm::Regex(Regex).match(Function.Name);
30 bool RegionCoverageFilter::matches(const coverage::FunctionRecord &Function) {
31 return PassesThreshold(FunctionCoverageSummary::get(Function)
35 bool LineCoverageFilter::matches(const coverage::FunctionRecord &Function) {
37 FunctionCoverageSummary::get(Function).LineCoverage.getPercentCovered())
    [all...]
  /external/llvm/include/llvm/Analysis/
Lint.h 27 class Function;
31 /// Check a module or function.
42 // lintFunction - Check a function.
44 const Function &F ///< The function to be checked
  /external/llvm/include/llvm/Transforms/Utils/
AddDiscriminators.h 25 PreservedAnalyses run(Function &F, AnalysisManager<Function> &AM);
CtorUtils.h 22 class Function;
28 function_ref<bool(Function *)> ShouldRemove);

Completed in 351 milliseconds

1 2 3 4 5 6 7 8 91011>>