HomeSort by relevance Sort by last modified time
    Searched refs:Args (Results 251 - 275 of 2185) sorted by null

<<11121314151617181920>>

  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/
gnu.go 22 for i, arg := range inst.Args[:] {
39 // of inst, it's ok to modify inst.Args here.
43 if argIndex+1 == len(inst.Args) || inst.Args[argIndex+1] == nil {
73 reg := inst.Args[argIndex+1].(Reg)
83 // removeArg removes the arg in inst.Args[index].
85 for i := index; i < len(inst.Args); i++ {
86 if i+1 < len(inst.Args) {
87 inst.Args[i] = inst.Args[i+1
    [all...]
  /external/llvm/tools/bugpoint/
ToolRunner.cpp 60 const char **Args,
68 return sys::ExecuteAndWait(ProgramPath, Args, nullptr, Redirects,
79 const char **Args,
88 int ReturnCode = sys::ExecuteAndWait(RemoteClientPath, Args, nullptr,
95 for (const char **Arg = Args; *Arg; ++Arg)
115 static std::string ProcessFailure(StringRef ProgPath, const char** Args,
120 for (const char **Arg = Args; *Arg; ++Arg)
133 RunProgramWithTimeout(ProgPath, Args, "", ErrorFilename.str(),
156 std::vector<std::string> ToolArgs; // Args to pass to LLI
158 LLI(const std::string &Path, const std::vector<std::string> *Args)
    [all...]
  /bionic/benchmarks/
string_benchmark.cpp 33 Args({(8), AT_SRC_ALIGN, AT_DST_ALIGN})->Args({(64), AT_SRC_ALIGN, AT_DST_ALIGN})-> \
34 Args({(512), AT_SRC_ALIGN, AT_DST_ALIGN})->Args({(1*KB), AT_SRC_ALIGN, AT_DST_ALIGN})-> \
35 Args({(8*KB), AT_SRC_ALIGN, AT_DST_ALIGN})->Args({(16*KB), AT_SRC_ALIGN, AT_DST_ALIGN})-> \
36 Args({(32*KB), AT_SRC_ALIGN, AT_DST_ALIGN})->Args({(64*KB), AT_SRC_ALIGN, AT_DST_ALIGN})
39 Args({(8), AT_SRC_ALIGN})->Args({(64), AT_SRC_ALIGN})->Args({(512), AT_SRC_ALIGN})->
    [all...]
  /external/clang/lib/Frontend/
CreateInvocationFromCommandLine.cpp 1 //===--- CreateInvocationFromCommandLine.cpp - CompilerInvocation from Args ==//
42 SmallVector<const char *, 16> Args(ArgList.begin(), ArgList.end());
45 Args.push_back("-fsyntax-only");
48 driver::Driver TheDriver(Args[0], llvm::sys::getDefaultTargetTriple(),
54 std::unique_ptr<driver::Compilation> C(TheDriver.BuildCompilation(Args));
  /external/compiler-rt/lib/scudo/
scudo_utils.cpp 29 va_list args);
39 va_list Args;
40 va_start(Args, Format);
41 __sanitizer::VSNPrintf(Message, sizeof(Message), Format, Args);
42 va_end(Args);
  /external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
F.pass.cpp 55 template <class ...Args>
56 void operator()(Args&&...) && {}
59 template <class ...Args>
60 void operator()(Args&&...) & {}
F_assign.pass.cpp 58 template <class ...Args>
59 void operator()(Args&&...) && {}
62 template <class ...Args>
63 void operator()(Args&&...) & {}
  /external/libcxx/test/std/utilities/variant/variant.variant/variant.mod/
emplace_index_init_list_args.pass.cpp 17 // template <size_t I, class U, class ...Args>
18 // void emplace(initializer_list<U> il,Args&&... args);
41 template <class Var, size_t I, class... Args>
43 std::declval<Var>().template emplace<I>(std::declval<Args>()...), true) {
52 template <class Var, size_t I, class... Args> constexpr bool emplace_exists() {
53 return test_emplace_exists_imp<Var, I, Args...>(0);
62 static_assert(!emplace_exists<V, 2, int>(), "args don't match");
63 static_assert(!emplace_exists<V, 2, IL, int>(), "too many args");
65 static_assert(!emplace_exists<V, 3, int>(), "args don't match")
    [all...]
emplace_type_init_list_args.pass.cpp 17 // template <class T, class U, class ...Args>
18 // void emplace(initializer_list<U> il,Args&&... args);
41 template <class Var, class T, class... Args>
43 std::declval<Var>().template emplace<T>(std::declval<Args>()...), true) {
52 template <class... Args> constexpr bool emplace_exists() {
53 return test_emplace_exists_imp<Args...>(0);
61 static_assert(!emplace_exists<V, InitList, int>(), "args don't match");
62 static_assert(!emplace_exists<V, InitList, IL, int>(), "too many args");
64 static_assert(!emplace_exists<V, InitListArg, int>(), "args don't match")
    [all...]
  /external/llvm/include/llvm/CodeGen/GlobalISel/
CallLowering.h 55 /// arguments, described by \p Args, for GlobalISel. Each argument
65 const Function::ArgumentListType &Args,
  /external/llvm/lib/Target/AArch64/
AArch64SelectionDAGInfo.cpp 37 TargetLowering::ArgListTy Args;
41 Args.push_back(Entry);
43 Args.push_back(Entry);
47 DAG.getExternalSymbol(bzeroEntry, IntPtr), std::move(Args))
  /external/clang/unittests/AST/
EvaluateAsRValueTest.cpp 90 std::vector<std::string> Args(1, Mode);
91 Args.push_back("-fno-delayed-template-parsing");
109 Args));
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorDeviceThreadPool.h 78 template <typename Function, typename... Args> struct FunctionWrapperWithNotification
80 static void run(Notification* n, Function f, Args... args) {
81 f(args...);
88 template <typename Function, typename... Args> struct FunctionWrapperWithBarrier
90 static void run(Barrier* b, Function f, Args... args) {
91 f(args...);
151 template <class Function, class... Args>
152 EIGEN_STRONG_INLINE Notification* enqueue(Function&& f, Args&&... args) const
    [all...]
  /external/libcxx/test/support/
type_id.h 67 template <class ...Args>
72 template <class ...Args>
74 return makeTypeIDImp<ArgumentListID<Args...>>();
  /external/llvm/include/llvm/Option/
Arg.h 107 void render(const ArgList &Args, ArgStringList &Output) const;
114 void renderAsInput(const ArgList &Args, ArgStringList &Output) const;
121 std::string getAsString(const ArgList &Args) const;
  /external/pcre/pcrecpp/include/
pcrecpp.h 556 template<typename ... ARGS>
557 bool FullMatch(const StringPiece & text, ARGS && ...a) const {
559 Arg args[Args<ARGS...>::count()]; local
561 Args<ARGS...>::arrayify(args, a...);
563 return DoMatchImpl(text, ANCHOR_BOTH, NULL, args, Args<ARGS...>::count())
569 Arg args[Args<ARGS...>::count()]; local
579 Arg args[Args<ARGS...>::count()]; local
595 Arg args[Args<ARGS...>::count()]; local
    [all...]
  /external/skia/tools/gpu/gl/
GLTestContext.h 62 template<typename Ret, typename... Args>
63 void getGLProcAddress(Ret(GR_GL_FUNCTION_TYPE** out)(Args...),
65 using Proc = Ret(GR_GL_FUNCTION_TYPE*)(Args...);
  /external/webrtc/talk/app/webrtc/java/jni/
androidvideocapturer_jni.h 77 // To avoid deducing Args from the 3rd parameter of AsyncCapturerInvoke.
85 template <typename... Args>
88 void (webrtc::AndroidVideoCapturer::*method)(Args...),
89 typename Identity<Args>::type... args);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Option/
Arg.h 107 void render(const ArgList &Args, ArgStringList &Output) const;
114 void renderAsInput(const ArgList &Args, ArgStringList &Output) const;
121 std::string getAsString(const ArgList &Args) const;
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/
ThreadPool.h 62 template <typename Function, typename... Args>
63 inline std::shared_future<VoidTy> async(Function &&F, Args &&... ArgList) {
65 std::bind(std::forward<Function>(F), std::forward<Args>(ArgList)...);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Option/
Arg.h 107 void render(const ArgList &Args, ArgStringList &Output) const;
114 void renderAsInput(const ArgList &Args, ArgStringList &Output) const;
121 std::string getAsString(const ArgList &Args) const;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/
ThreadPool.h 62 template <typename Function, typename... Args>
63 inline std::shared_future<VoidTy> async(Function &&F, Args &&... ArgList) {
65 std::bind(std::forward<Function>(F), std::forward<Args>(ArgList)...);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Option/
Arg.h 107 void render(const ArgList &Args, ArgStringList &Output) const;
114 void renderAsInput(const ArgList &Args, ArgStringList &Output) const;
121 std::string getAsString(const ArgList &Args) const;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/
ThreadPool.h 62 template <typename Function, typename... Args>
63 inline std::shared_future<VoidTy> async(Function &&F, Args &&... ArgList) {
65 std::bind(std::forward<Function>(F), std::forward<Args>(ArgList)...);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Option/
Arg.h 107 void render(const ArgList &Args, ArgStringList &Output) const;
114 void renderAsInput(const ArgList &Args, ArgStringList &Output) const;
121 std::string getAsString(const ArgList &Args) const;

Completed in 500 milliseconds

<<11121314151617181920>>