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

<<11121314151617181920>>

  /build/soong/cc/
builder.go 203 Args: map[string]string{
224 Args: map[string]string{
262 Args: map[string]string{
273 Args: map[string]string{
345 Args: map[string]string{
371 Args: map[string]string{
388 Args: map[string]string{
401 Args: map[string]string{
  /external/clang/unittests/libclang/
LibclangTest.cpp 450 const char *Args[] = { "-fmodules", ModulesCache.c_str(),
452 int NumArgs = sizeof(Args) / sizeof(Args[0]);
453 ClangTU = clang_parseTranslationUnit(Index, MName.c_str(), Args, NumArgs,
  /external/libchrome/sandbox/win/src/
policy_engine_params.h 188 ParameterSet& operator[](typename T::Args n) {
  /prebuilts/go/darwin-x86/src/cmd/addr2line/
main.go 49 if len(os.Args) > 1 && os.Args[1] == "--help" {
  /prebuilts/go/darwin-x86/src/cmd/nm/
nm_test.go 92 cmd := exec.Command(testnmpath, os.Args[0])
95 t.Fatalf("go tool nm %v: %v\n%s", os.Args[0], err, string(out))
  /prebuilts/go/linux-x86/src/cmd/addr2line/
main.go 49 if len(os.Args) > 1 && os.Args[1] == "--help" {
  /prebuilts/go/linux-x86/src/cmd/nm/
nm_test.go 92 cmd := exec.Command(testnmpath, os.Args[0])
95 t.Fatalf("go tool nm %v: %v\n%s", os.Args[0], err, string(out))
  /art/compiler/utils/
swap_space.h 186 template <class U, class... Args>
187 void construct(U* p, Args&&... args) {
188 ::new (static_cast<void*>(p)) U(std::forward<Args>(args)...);
  /art/runtime/base/
arena_containers.h 188 template <typename U, typename... Args>
189 void construct(U* p, Args&&... args) {
190 ::new (static_cast<void*>(p)) U(std::forward<Args>(args)...);
scoped_arena_containers.h 162 template <typename U, typename... Args>
163 void construct(U* p, Args&&... args) {
165 ::new (static_cast<void*>(p)) U(std::forward<Args>(args)...);
  /build/soong/java/
builder.go 129 Args: map[string]string{
162 Args: map[string]string{
180 Args: map[string]string{
208 Args: map[string]string{
223 Args: map[string]string{
242 Args: map[string]string{
  /dalvik/dx/src/com/android/dx/command/dump/
DotDumper.java 48 private final Args args; field in class:DotDumper
50 static void dump(byte[] bytes, String filePath, Args args) {
51 new DotDumper(bytes, filePath, args).run();
54 DotDumper(byte[] bytes, String filePath, Args args) {
57 this.strictParse = args.strictParse;
58 this.optimize = args.optimize;
59 this.args = args
    [all...]
  /external/clang/lib/Analysis/
ThreadSafetyTIL.cpp 60 for (SExpr *E : Args) {
72 for (SExpr *E : Args) {
156 for (auto *Arg : Args)
  /external/clang/lib/CodeGen/
CodeGenTypes.h 244 arrangeFreeFunctionDeclaration(QualType ResTy, const FunctionArgList &Args,
255 const CGFunctionInfo &arrangeCXXConstructorCall(const CallArgList &Args,
259 const CGFunctionInfo &arrangeFreeFunctionCall(const CallArgList &Args,
263 const CallArgList &args,
266 const CGFunctionInfo &arrangeBlockFunctionCall(const CallArgList &args,
269 const CGFunctionInfo &arrangeCXXMethodCall(const CallArgList &args,
293 RequiredArgs args);
  /external/clang/tools/libclang/
Indexing.cpp 291 SourceRange Range, const MacroArgs *Args) override {}
514 std::unique_ptr<std::vector<const char *>> Args(
519 ArgsCleanup(Args.get());
521 Args->insert(Args->end(), command_line_args,
530 Args->push_back(source_filename);
533 CInvok(createInvocationFromCommandLine(*Args, Diags));
922 SmallVector<const char *, 4> Args;
923 Args.push_back("clang");
924 Args.append(command_line_args, command_line_args + num_command_line_args)
    [all...]
  /external/llvm/examples/ParallelJIT/
ParallelJIT.cpp 233 std::vector<GenericValue> Args(1);
234 Args[0].IntVal = APInt(32, p->value);
237 GenericValue gv = p->EE->runFunction(p->F, Args);
  /external/webrtc/talk/app/webrtc/java/jni/
androidvideocapturer_jni.cc 122 template <typename... Args>
125 void (webrtc::AndroidVideoCapturer::*method)(Args...),
126 typename Identity<Args>::type... args) {
132 invoker_->AsyncInvoke<void>(rtc::Bind(method, capturer_, args...));
  /external/webrtc/webrtc/modules/video_coding/
video_coding_robustness_unittest.cc 25 using ::testing::Args;
85 .With(Args<0, 1>(ElementsAre(6, 7)))
159 .With(Args<0, 1>(ElementsAre(4)))
  /frameworks/native/include/ui/
Gralloc1.h 160 template <typename ...Args>
161 typename std::result_of<PFN(Args...)>::type operator()(Args... args) {
162 return pfn(args...);
  /prebuilts/go/darwin-x86/src/cmd/vet/
print.go 149 // call.Args[formatIndex] is (well, should be) the format argument.
151 if formatIndex >= len(call.Args) {
155 lit := f.pkg.types[call.Args[formatIndex]].Value
169 if len(call.Args) > firstArg {
174 // Hard part: check formats against args.
198 if call.Ellipsis.IsValid() && argNum >= len(call.Args)-1 {
203 if !indexed && argNum != len(call.Args) {
205 numArgs := len(call.Args) - firstArg
206 f.Badf(call.Pos(), "wrong number of args for format in %s call: %d needed but %d args", name, expect, numArgs
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vet/
print.go 149 // call.Args[formatIndex] is (well, should be) the format argument.
151 if formatIndex >= len(call.Args) {
155 lit := f.pkg.types[call.Args[formatIndex]].Value
169 if len(call.Args) > firstArg {
174 // Hard part: check formats against args.
198 if call.Ellipsis.IsValid() && argNum >= len(call.Args)-1 {
203 if !indexed && argNum != len(call.Args) {
205 numArgs := len(call.Args) - firstArg
206 f.Badf(call.Pos(), "wrong number of args for format in %s call: %d needed but %d args", name, expect, numArgs
    [all...]
  /external/clang/include/clang/AST/
DeclTemplate.h 187 // a copy of the Args array. (Called by CreateCopy)
188 TemplateArgumentList(const TemplateArgument *Args, unsigned NumArgs);
198 const TemplateArgument *Args,
205 explicit TemplateArgumentList(OnStackType, const TemplateArgument *Args,
207 : Arguments(Args), NumArguments(NumArgs) {}
678 ArrayRef<TemplateArgument> Args, void *&InsertPos);
    [all...]
  /external/llvm/include/llvm/ADT/
STLExtras.h 395 /// \brief Constructs a `new T()` with the given args and returns a
402 template <class T, class... Args>
404 make_unique(Args &&... args) {
405 return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
408 /// \brief Constructs a `new T[n]` with the given args and returns a
424 template <class T, class... Args>
426 make_unique(Args &&...) = delete;
  /external/llvm/lib/TableGen/
SetTheory.cpp 152 SmallVector<RecSet, 4> Args(Expr->getNumArgs());
155 ST.evaluate(Expr->getArg(i), Args[i], Loc);
156 MaxSize = std::max(MaxSize, unsigned(Args[i].size()));
161 if (n < Args[i].size())
162 Elts.insert(Args[i][n]);
172 PrintFatalError(Loc, "Bad args to (sequence \"Format\", From, To): " +
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
aclapi.h 17 typedef VOID (*FN_PROGRESS)(LPWSTR pObjectName,DWORD Status,PPROG_INVOKE_SETTING pInvokeSetting,PVOID Args,WINBOOL SecuritySet);
60 WINADVAPI DWORD WINAPI TreeResetNamedSecurityInfoA(LPSTR pObjectName,SE_OBJECT_TYPE ObjectType,SECURITY_INFORMATION SecurityInfo,PSID pOwner,PSID pGroup,PACL pDacl,PACL pSacl,WINBOOL KeepExplicit,FN_PROGRESS fnProgress,PROG_INVOKE_SETTING ProgressInvokeSetting,PVOID Args);
61 WINADVAPI DWORD WINAPI TreeResetNamedSecurityInfoW(LPWSTR pObjectName,SE_OBJECT_TYPE ObjectType,SECURITY_INFORMATION SecurityInfo,PSID pOwner,PSID pGroup,PACL pDacl,PACL pSacl,WINBOOL KeepExplicit,FN_PROGRESS fnProgress,PROG_INVOKE_SETTING ProgressInvokeSetting,PVOID Args);
106 PVOID Args
120 PVOID Args

Completed in 2016 milliseconds

<<11121314151617181920>>