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

1 2

  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/build/
NdkCommandLauncher.java 80 String[] newargs = new String[args.length + 1]; local
81 newargs[0] = commandPath.toOSString();
82 System.arraycopy(args, 0, newargs, 1, args.length);
85 args = newargs;
  /external/toybox/toys/posix/
find.c 86 char **newargs; local
108 newargs = xmalloc(sizeof(char *)*(aa->arglen+bb->namecount+1));
110 memcpy(newargs, aa->argstart, sizeof(char *)*aa->arglen);
111 newargs[aa->arglen] = 0;
117 memcpy(newargs, aa->argstart, sizeof(char *)*pos);
118 for (dl = bb->names; dl; dl = dl->next) newargs[pos++] = dl->data;
120 memcpy(newargs+pos, aa->argstart+aa->curly+1, sizeof(char *)*rest);
121 newargs[pos+rest] = 0;
124 rc = xrun(newargs);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
_struct.c 1874 PyObject *s_object, *fmt, *newargs, *result; local
1904 PyObject *s_object, *fmt, *newargs, *result; local
1954 PyObject *s_object, *fmt, *newargs, *result; local
    [all...]
_collectionsmodule.c 1588 PyObject *newargs; local
    [all...]
operator.c 787 PyObject *name, *newargs; local
800 newargs = PyTuple_GetSlice(args, 1, PyTuple_GET_SIZE(args));
801 if (newargs == NULL) {
805 mc->args = newargs;
parsermodule.c 3362 PyObject *newargs; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_struct.c 1825 PyObject *s_object, *fmt, *newargs, *result; local
1855 PyObject *s_object, *fmt, *newargs, *result; local
1905 PyObject *s_object, *fmt, *newargs, *result; local
    [all...]
_collectionsmodule.c 1518 PyObject *newargs; local
    [all...]
operator.c 659 PyObject *name, *newargs; local
672 newargs = PyTuple_GetSlice(args, 1, PyTuple_GET_SIZE(args));
673 if (newargs == NULL) {
677 mc->args = newargs;
parsermodule.c 3333 PyObject *newargs; local
    [all...]
  /external/python/cpython2/Modules/
_struct.c 1872 PyObject *s_object, *fmt, *newargs, *result; local
1902 PyObject *s_object, *fmt, *newargs, *result; local
1952 PyObject *s_object, *fmt, *newargs, *result; local
    [all...]
_collectionsmodule.c 1644 PyObject *newargs; local
    [all...]
parsermodule.c 3362 PyObject *newargs; local
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/python/
pyrun.swg 288 PyObject *newargs;
320 /* the newraw method and newargs arguments used to create a new raw instance */
323 data->newargs = obj;
333 data->newargs = PyTuple_New(1);
334 PyTuple_SetItem(data->newargs, 0, obj);
336 data->newargs = obj;
338 Py_INCREF(data->newargs);
367 Py_XDECREF(data->newargs);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_datetime.py     [all...]
  /external/python/cpython2/Lib/test/
test_datetime.py     [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_datetime.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_datetime.py     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_datetime.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_datetime.py     [all...]
  /prebuilts/go/darwin-x86/misc/cgo/testshared/
shared_test.go 48 newargs := []string{args[0], "-installsuffix=" + suffix}
50 newargs = append(newargs, "-v")
52 newargs = append(newargs, args[1:]...)
53 c := exec.Command("go", newargs...)
57 fmt.Printf("+ go %s\n", strings.Join(newargs, " "))
  /prebuilts/go/linux-x86/misc/cgo/testshared/
shared_test.go 48 newargs := []string{args[0], "-installsuffix=" + suffix}
50 newargs = append(newargs, "-v")
52 newargs = append(newargs, args[1:]...)
53 c := exec.Command("go", newargs...)
57 fmt.Printf("+ go %s\n", strings.Join(newargs, " "))
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
bltinmodule.c 2218 PyObject *newlist, *v, *seq, *compare=NULL, *keyfunc=NULL, *newargs; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
bltinmodule.c 2207 PyObject *newlist, *v, *seq, *compare=NULL, *keyfunc=NULL, *newargs; local
    [all...]
  /external/python/cpython2/Python/
bltinmodule.c 2229 PyObject *newlist, *v, *seq, *compare=NULL, *keyfunc=NULL, *newargs; local
    [all...]

Completed in 683 milliseconds

1 2