OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:curArg
(Results
1 - 4
of
4
) sorted by null
/frameworks/base/core/java/com/android/internal/os/
RuntimeInit.java
405
int
curArg
= 0;
406
for (;
curArg
< args.length;
curArg
++) {
407
String arg = args[
curArg
];
410
curArg
++;
417
if (
curArg
== args.length) {
421
startClass = args[
curArg
++];
422
startArgs = new String[args.length -
curArg
];
423
System.arraycopy(args,
curArg
, startArgs, 0, startArgs.length);
ZygoteConnection.java
386
int
curArg
= 0;
388
for ( /*
curArg
*/ ;
curArg
< args.length;
curArg
++) {
389
String arg = args[
curArg
];
392
curArg
++;
475
classpath = args[++
curArg
];
500
invokeWith = args[++
curArg
];
521
remainingArgs = new String[args.length -
curArg
];
523
System.arraycopy(args,
curArg
, remainingArgs, 0
[
all
...]
/dalvik/vm/analysis/
DexPrepare.cpp
406
int
curArg
= 0;
410
argv[
curArg
++] = (char*)kValgrinder;
411
argv[
curArg
++] = "--tool=memcheck";
412
argv[
curArg
++] = "--leak-check=yes"; // check for leaks too
413
argv[
curArg
++] = "--leak-resolution=med"; // increase from 2 to 4
414
argv[
curArg
++] = "--num-callers=16"; // default is 12
415
assert(
curArg
== kValgrindArgCount);
417
argv[
curArg
++] = execFile;
419
argv[
curArg
++] = "--dex";
422
argv[
curArg
++] = values[2]
[
all
...]
/external/webkit/Source/JavaScriptCore/runtime/
ArrayPrototype.cpp
340
JSValue
curArg
= thisValue.toThisObject(exec);
344
if (
curArg
.inherits(&JSArray::s_info)) {
345
unsigned length =
curArg
.get(exec, exec->propertyNames().length).toUInt32(exec);
346
JSObject* curObject =
curArg
.toObject(exec);
353
arr->put(exec, n,
curArg
);
358
curArg
= (exec->argument(i));
[
all
...]
Completed in 2341 milliseconds