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

1 2 3 4 5 6 7 8 91011>>

  /dalvik/dx/src/com/android/multidex/
MainDexListBuilder.java 73 int argIndex = 0;
75 while (argIndex < args.length -2) {
76 if (args[argIndex].equals(DISABLE_ANNOTATION_RESOLUTION_WORKAROUND)) {
79 System.err.println("Invalid option " + args[argIndex]);
83 argIndex++;
85 if (args.length - argIndex != 2) {
91 MainDexListBuilder builder = new MainDexListBuilder(keepAnnotated, args[argIndex],
92 args[argIndex + 1]);
  /external/jline/src/src/main/java/jline/
ArgumentCompletor.java 139 int argIndex = list.getCursorArgumentIndex();
141 if (argIndex < 0) {
148 if (argIndex >= completors.length) {
151 comp = completors[argIndex];
156 for (int i = 0; getStrict() && (i < argIndex); i++) {
  /external/clang/lib/Analysis/
FormatStringParsing.h 30 unsigned &argIndex);
39 unsigned *argIndex);
PrintfFormatString.cpp 39 unsigned *argIndex) {
40 if (argIndex) {
41 FS.setPrecision(ParseNonPositionAmount(Beg, E, *argIndex));
73 unsigned &argIndex,
150 FS.usesPositionalArg() ? nullptr : &argIndex))
170 FS.usesPositionalArg() ? nullptr : &argIndex))
308 FS.setArgIndex(argIndex++);
312 argIndex++;
333 unsigned argIndex = 0;
337 const PrintfSpecifierResult &FSR = ParsePrintfSpecifier(H, I, E, argIndex,
    [all...]
FormatString.cpp 66 unsigned &argIndex) {
69 return OptionalAmount(OptionalAmount::Arg, argIndex++, Beg, 0, false);
127 unsigned *argIndex) {
129 if (argIndex) {
130 CS.setFieldWidth(ParseNonPositionAmount(Beg, E, *argIndex));
ScanfFormatString.cpp 79 unsigned &argIndex,
209 FS.setArgIndex(argIndex++);
536 unsigned argIndex = 0;
540 const ScanfSpecifierResult &FSR = ParseScanfSpecifier(H, I, E, argIndex,
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
CallbackArgExpr.java 43 public CallbackArgExpr(int argIndex, String name) {
45 mArgIndex = argIndex;
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/
gnu.go 37 // gnuArg formats arg (which is the argIndex's arg in inst) according to GNU rules.
40 func gnuArg(inst *Inst, argIndex int, arg Arg) string {
43 if argIndex+1 == len(inst.Args) || inst.Args[argIndex+1] == nil {
49 if isLoadStoreOp(inst.Op) && argIndex == 1 && arg == R0 {
73 reg := inst.Args[argIndex+1].(Reg)
74 removeArg(inst, argIndex+1)
plan9.go 85 // plan9Arg formats arg (which is the argIndex's arg in inst) according to Plan 9 rules.
88 func plan9Arg(inst *Inst, argIndex int, pc uint64, arg Arg, symname func(uint64) (string, uint64)) string {
91 if argIndex+1 == len(inst.Args) || inst.Args[argIndex+1] == nil {
97 if isLoadStoreOp(inst.Op) && argIndex == 1 && arg == R0 {
134 reg := inst.Args[argIndex+1].(Reg)
135 removeArg(inst, argIndex+1)
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/
gnu.go 37 // gnuArg formats arg (which is the argIndex's arg in inst) according to GNU rules.
40 func gnuArg(inst *Inst, argIndex int, arg Arg) string {
43 if argIndex+1 == len(inst.Args) || inst.Args[argIndex+1] == nil {
49 if isLoadStoreOp(inst.Op) && argIndex == 1 && arg == R0 {
73 reg := inst.Args[argIndex+1].(Reg)
74 removeArg(inst, argIndex+1)
plan9.go 85 // plan9Arg formats arg (which is the argIndex's arg in inst) according to Plan 9 rules.
88 func plan9Arg(inst *Inst, argIndex int, pc uint64, arg Arg, symname func(uint64) (string, uint64)) string {
91 if argIndex+1 == len(inst.Args) || inst.Args[argIndex+1] == nil {
97 if isLoadStoreOp(inst.Op) && argIndex == 1 && arg == R0 {
134 reg := inst.Args[argIndex+1].(Reg)
135 removeArg(inst, argIndex+1)
  /development/tools/idegen/src/com/android/idegen/
IntellijProject.java 197 int argIndex = 0;
198 String arg = args[argIndex];
203 argIndex++;
204 arg = args[argIndex];
207 String indexFile = args[argIndex++];
208 String projectPath = args[argIndex++];
211 for (int i = argIndex; i < args.length; i++) {
  /prebuilts/go/darwin-x86/src/cmd/vendor/golang.org/x/arch/arm/armasm/
gnu.go 50 func gnuArg(inst *Inst, argIndex int, arg Arg) string {
53 if argIndex == 1 {
58 if argIndex == 2 {
124 if argIndex == 0 {
  /prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/arm/armasm/
gnu.go 50 func gnuArg(inst *Inst, argIndex int, arg Arg) string {
53 if argIndex == 1 {
58 if argIndex == 2 {
124 if argIndex == 0 {
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vs_emit.c 1053 GLuint argIndex)
1055 const struct prog_src_register *src = &inst->SrcReg[argIndex];
1057 struct brw_reg const_reg = c->current_const[argIndex].reg;
1059 assert(argIndex < 3);
1061 if (c->current_const[argIndex].index != src->Index) {
1063 c->current_const[argIndex].index = src->Index;
1067 src->Index, argIndex, c->current_const[argIndex].reg.nr);
1087 GLuint argIndex)
1089 const struct prog_src_register *src = &inst->SrcReg[argIndex];
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
FormatString.h 350 unsigned argIndex;
353 : CS(isPrintf), UsesPositionalArg(false), argIndex(0) {}
362 argIndex = i;
366 return argIndex;
370 return argIndex + 1;
  /external/clang/lib/Basic/
IdentifierTable.cpp 410 IdentifierInfo *Selector::getIdentifierInfoForSlot(unsigned argIndex) const {
412 assert(argIndex == 0 && "illegal keyword index");
417 return SI->getIdentifierInfoForSlot(argIndex);
420 StringRef Selector::getNameForSlot(unsigned int argIndex) const {
421 IdentifierInfo *II = getIdentifierInfoForSlot(argIndex);
  /external/owasp/sanitizer/tools/findbugs/lib/
jFormatString.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/jFormatString/2.0.1/
jFormatString-2.0.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/findbugs/jFormatString/3.0.0/
jFormatString-3.0.0.jar 
  /external/proguard/src/proguard/gui/
ProGuardGUI.java     [all...]
  /external/clang/include/clang/CodeGen/
CGFunctionInfo.h 601 ExtParameterInfo getExtParameterInfo(unsigned argIndex) const {
602 assert(argIndex <= NumArgs);
604 return getExtParameterInfos()[argIndex];
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
ProducerFactoryGenerator.java 424 int argIndex = 0;
432 argIndex));
433 argIndex++;
  /external/clang/include/clang/Basic/
IdentifierTable.h 709 /// \param argIndex The index for which we want to retrieve the identifier.
715 IdentifierInfo *getIdentifierInfoForSlot(unsigned argIndex) const;
719 /// \param argIndex The index for which we want to retrieve the name.
725 StringRef getNameForSlot(unsigned argIndex) const;
  /external/clang/lib/Sema/
SemaChecking.cpp     [all...]

Completed in 588 milliseconds

1 2 3 4 5 6 7 8 91011>>