HomeSort by relevance Sort by last modified time
    Searched refs:Args (Results 326 - 350 of 513) sorted by null

<<11121314151617181920>>

  /external/clang/lib/Sema/
TreeTransform.h     [all...]
SemaTemplateInstantiate.cpp     [all...]
  /external/lldb/source/Interpreter/
CommandInterpreter.cpp 54 #include "lldb/Interpreter/Args.h"
800 Args cmd_words (cmd_cstr); // Break up the command string into words, in case it's a multi-word command.
    [all...]
  /external/llvm/lib/IR/
DIBuilder.cpp     [all...]
  /external/clang/include/clang/Sema/
AttributeList.h 67 /// 1: __attribute__(( const )). ParmName/Args/NumArgs will all be unused.
68 /// 2: __attribute__(( mode(byte) )). ParmName used, Args/NumArgs unused.
69 /// 3: __attribute__(( format(printf, 1, 2) )). ParmName/Args/NumArgs all used.
70 /// 4: __attribute__(( aligned(16) )). ParmName is unused, Args/Num used.
217 ArgsUnion *args, unsigned numArgs,
224 if (numArgs) memcpy(getArgsBuffer(), args, numArgs * sizeof(ArgsUnion)); local
263 ArgsVector Args;
264 Args.push_back(Parm1);
265 Args.push_back(Parm2);
266 Args.push_back(Parm3)
    [all...]
  /external/llvm/include/llvm/ADT/
STLExtras.h 384 /// \brief Constructs a `new T()` with the given args and returns a
391 template <class T, class... Args>
393 make_unique(Args &&... args) {
394 return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
397 /// \brief Constructs a `new T[n]` with the given args and returns a
413 template <class T, class... Args>
415 make_unique(Args &&...) LLVM_DELETED_FUNCTION;
  /external/clang/lib/CodeGen/
CGBuiltin.cpp 97 llvm::Value *Args[2];
98 Args[0] = CGF.Builder.CreateBitCast(DestPtr, IntPtrType);
99 Args[1] = CGF.EmitScalarExpr(E->getArg(1));
100 llvm::Type *ValueType = Args[1]->getType();
101 Args[1] = EmitToInt(CGF, Args[1], T, IntType);
104 CGF.Builder.CreateAtomicRMW(Kind, Args[0], Args[1],
131 llvm::Value *Args[2];
132 Args[1] = CGF.EmitScalarExpr(E->getArg(1))
    [all...]
  /external/bison/data/
glr.c 70 # Optional effective arguments passed to yyerror: user args plus yylloc, and
512 # define YYDPRINTF(Args) \
515 YYFPRINTF Args; \
536 # define YYDPRINTF(Args)
    [all...]
  /external/clang/lib/Index/
USRGeneration.cpp 465 const TemplateArgumentList &Args = Spec->getTemplateInstantiationArgs();
467 for (unsigned I = 0, N = Args.size(); I != N; ++I) {
469 VisitTemplateArgument(Args.get(I));
  /external/clang/unittests/Tooling/
CompilationDatabaseTest.cpp 395 std::vector<std::string> Args = unescapeJsonCommandLine("a'\\\\b \\\"c\\\"'");
396 ASSERT_EQ(1ul, Args.size());
397 EXPECT_EQ("a\\b \"c\"", Args[0]);
  /external/e2fsprogs/intl/
plural.c 84 new_exp (int nargs, enum operator op, struct expression * const *args)
91 if (args[i] == NULL)
101 newp->val.args[i] = args[i];
107 FREE_EXPRESSION (args[i]);
121 struct expression *args[1]; local
123 args[0] = right;
124 return new_exp (1, op, args);
130 struct expression *args[2]; local
132 args[0] = left
141 struct expression *args[3]; local
    [all...]
  /external/elfutils/0.153/src/
ldscript.c     [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
parse-events-bison.c 756 # define YYDPRINTF(Args) \
759 YYFPRINTF Args; \
913 # define YYDPRINTF(Args)
    [all...]
  /external/lldb/include/lldb/Target/
Target.h 30 #include "lldb/Interpreter/Args.h"
106 GetRunArguments (Args &args) const;
109 SetRunArguments (const Args &args);
112 GetEnvironmentAsArgs (Args &env) const;
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp 354 SmallVector<Value*, 8> Args;
388 Args.push_back(C);
391 CallInst *TheCall = CallInst::Create(F, Args, "", StubBB);
  /external/llvm/lib/MC/MCParser/
DarwinAsmParser.cpp 490 SmallVector<std::string, 4> Args;
499 Args.push_back(Data);
510 getStreamer().EmitLinkerOptions(Args);
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
DebugIR.cpp 435 const Function::ArgumentListType &Args(Func->getArgumentList());
436 for (Function::ArgumentListType::const_iterator i = Args.begin(),
437 e = Args.end();
  /bionic/libc/
crt.mk 15 # Args:
45 $(call transform-d-to-p-args,$(@:%.s=%.d),$(@:%.s=%.P))
  /external/chromium_org/native_client_sdk/src/tools/
host_vc.mk 94 # $6 = Other Linker Args
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
fec_receiver_unittest.cc 23 using ::testing::Args;
68 .With(Args<0, 1>(ElementsAreArray(packet->data,
  /external/lldb/source/Host/linux/
Host.cpp 395 Args &info_env = process_info.GetEnvironmentEntries();
412 Args &info_args = process_info.GetArguments();
  /external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
DynamicLoaderPOSIXDYLD.cpp 194 DynamicLoaderPOSIXDYLD::ExecutePluginCommand(Args &command, Stream *strm)
200 DynamicLoaderPOSIXDYLD::EnablePluginLogging(Stream *strm, Args &command)
  /external/llvm/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 264 LLVMGenericValueRef *Args) {
270 ArgVec.push_back(*unwrap(Args[I]));
  /external/llvm/lib/MC/
MCMachOStreamer.cpp 107 void EmitLOHDirective(MCLOHType Kind, const MCLOHArgs &Args) override {
108 getAssembler().getLOHContainer().addDirective(Kind, Args);
  /external/chromium_org/media/tools/layout_tests/
layouttest_analyzer.py 125 Args:
195 Args:
276 Args:
352 Args:

Completed in 8365 milliseconds

<<11121314151617181920>>