HomeSort by relevance Sort by last modified time
    Searched defs:args (Results 2251 - 2275 of 5214) sorted by null

<<919293949596979899100>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/cjkcodecs/
multibytecodec.c 94 PyObject *args, *cb, *r; local
101 args = PyTuple_New(1);
102 if (args == NULL) {
107 PyTuple_SET_ITEM(args, 0, exc);
110 r = PyObject_CallObject(cb, args);
111 Py_DECREF(args);
545 PyObject *args, PyObject *kwargs)
553 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|z:encode",
601 PyObject *args, PyObject *kwargs)
610 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s*|z:decode",
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
exceptions.c 30 BaseException_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
40 self->args = PyTuple_New(0);
41 if (!self->args) {
56 BaseException_init(PyBaseExceptionObject *self, PyObject *args, PyObject *kwds)
61 Py_DECREF(self->args);
62 self->args = args;
63 Py_INCREF(self->args);
65 if (PyTuple_GET_SIZE(self->args) == 1) {
67 self->message = PyTuple_GET_ITEM(self->args, 0);
769 PyObject *args = self->args; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
sysmodule.c 133 sys_excepthook(PyObject* self, PyObject* args)
136 if (!PyArg_UnpackTuple(args, "excepthook", 3, 3, &exc, &value, &tb))
207 sys_exit(PyObject *self, PyObject *args)
210 if (!PyArg_UnpackTuple(args, "exit", 0, 1, &exit_code))
243 sys_setdefaultencoding(PyObject *self, PyObject *args)
246 if (!PyArg_ParseTuple(args, "s:setdefaultencoding", &encoding))
307 PyObject *args = PyTuple_New(3); local
311 if (args == NULL)
319 PyTuple_SET_ITEM(args, 0, (PyObject *)frame);
320 PyTuple_SET_ITEM(args, 1, whatstr);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_collectionsmodule.c 130 deque_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
451 deque_rotate(dequeobject *deque, PyObject *args)
455 if (!PyArg_ParseTuple(args, "|n:rotate", &n))
964 deque_init(dequeobject *deque, PyObject *args, PyObject *kwdargs)
971 if (!PyArg_ParseTupleAndKeywords(args, kwdargs, "|OO:deque", kwlist, &iterable, &maxlenobj))
1392 PyObject *args; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
connection.c 60 int pysqlite_connection_init(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
77 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|diOiOi", kwlist,
322 PyObject* pysqlite_connection_cursor(pysqlite_Connection* self, PyObject* args, PyObject* kwargs)
328 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "|O", kwlist,
354 PyObject* pysqlite_connection_close(pysqlite_Connection* self, PyObject* args)
449 PyObject* pysqlite_connection_commit(pysqlite_Connection* self, PyObject* args)
495 PyObject* pysqlite_connection_rollback(pysqlite_Connection* self, PyObject* args)
578 PyObject* args; local
587 args = PyTuple_New(argc);
588 if (!args) {
645 PyObject* args; local
682 PyObject* args; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/cjkcodecs/
multibytecodec.c 94 PyObject *args, *cb, *r; local
101 args = PyTuple_New(1);
102 if (args == NULL) {
107 PyTuple_SET_ITEM(args, 0, exc);
110 r = PyObject_CallObject(cb, args);
111 Py_DECREF(args);
542 PyObject *args, PyObject *kwargs)
550 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "O|z:encode",
598 PyObject *args, PyObject *kwargs)
607 if (!PyArg_ParseTupleAndKeywords(args, kwargs, "s*|z:decode",
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
exceptions.c 30 BaseException_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
40 self->args = PyTuple_New(0);
41 if (!self->args) {
56 BaseException_init(PyBaseExceptionObject *self, PyObject *args, PyObject *kwds)
61 Py_DECREF(self->args);
62 self->args = args;
63 Py_INCREF(self->args);
65 if (PyTuple_GET_SIZE(self->args) == 1) {
67 self->message = PyTuple_GET_ITEM(self->args, 0);
769 PyObject *args = self->args; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
sysmodule.c 133 sys_excepthook(PyObject* self, PyObject* args)
136 if (!PyArg_UnpackTuple(args, "excepthook", 3, 3, &exc, &value, &tb))
207 sys_exit(PyObject *self, PyObject *args)
210 if (!PyArg_UnpackTuple(args, "exit", 0, 1, &exit_code))
243 sys_setdefaultencoding(PyObject *self, PyObject *args)
246 if (!PyArg_ParseTuple(args, "s:setdefaultencoding", &encoding))
307 PyObject *args = PyTuple_New(3); local
311 if (args == NULL)
319 PyTuple_SET_ITEM(args, 0, (PyObject *)frame);
320 PyTuple_SET_ITEM(args, 1, whatstr);
    [all...]
  /external/ImageMagick/MagickCore/
morphology.c 167 % "name:args[[@><]"
239 args;
270 SetGeometryInfo(&args);
271 flags = ParseGeometry(token, &args);
275 args.rho = args.sigma; /* then width = height */
276 if ( args.rho < 1.0 ) /* if width too small */
277 args.rho = 1.0; /* then width = 1 */
278 if ( args.sigma < 1.0 ) /* if height too small */
279 args.sigma = args.rho; /* then height = width *
236 args; local
384 args; local
4444 args; local
    [all...]
  /external/ImageMagick/MagickWand/
operation.c 423 const char /* percent escaped versions of the args */
2216 *args; local
2395 *args; local
2409 (void) FunctionImage(_image,(MagickFunction)parse,(size_t) count,args, local
4317 *args; local
    [all...]
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
BaseTest.java 97 protected Tool newTool(String[] args) {
98 Tool tool = new Tool(args);
112 String[] args = new String[] { local
365 String[] args = new String[] { local
372 Runtime.getRuntime().exec(args, null, new File(tmpdir));
581 " public static void main(String[] args) throws Exception {\n" +
582 " CharStream input = new ANTLRFileStream(args[0]);\n" +
617 " public static void main(String[] args) throws Exception {\n" +
618 " CharStream input = new ANTLRFileStream(args[0]);\n" +
645 " public static void main(String[] args) throws Exception {\n"
    [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
DriverManagerTest.java 114 Object[] args = { aDriver }; local
115 theMethod.invoke(null, args);
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
XSLTAttributeDef.java 1583 Object[] args; local
    [all...]
  /external/autotest/frontend/client/src/autotest/afe/create/
CreateJobViewDisplay.java 129 private TextBoxImpl args = new TextBoxImpl(); field in class:CreateJobViewDisplay
133 "Separate multiple args with commas.");
287 argsPanel.add(args);
289 advancedOptionsLayout.setWidget(15, 0, new Label("Args: (optional)"));
415 return args;
  /external/clang/lib/Sema/
SemaPseudoObject.cpp 784 Expr *args[] = { op }; local
794 MultiExprArg(args, 1));
799 MultiExprArg(args, 1));
1386 Expr *args[] = { Index }; local
1412 Expr *args[] = { op, Index }; local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/rasterization/
vktRasterizationTests.cpp 1068 RasterizationArguments args; local
    [all...]
  /external/deqp/framework/qphelper/
qpTestLog.c 563 va_list args; local
567 va_start(args, format);
569 vsnprintf(buffer, sizeof(buffer), format, args);
570 va_end(args);
    [all...]
  /external/deqp/modules/gles31/functional/
es31fDrawBuffersIndexedTests.cpp 874 map<string, string> args; local
875 args["GLSL_VERSION_DECL"] = isES32 ? getGLSLVersionDeclaration(glu::GLSL_VERSION_320_ES) : getGLSLVersionDeclaration(glu::GLSL_VERSION_310_ES);
877 return glu::VertexSource(tcu::StringTemplate(vertexSource).specialize(args));
974 map<string, string> args; local
975 args["GLSL_VERSION_DECL"] = isES32 ? getGLSLVersionDeclaration(glu::GLSL_VERSION_320_ES) : getGLSLVersionDeclaration(glu::GLSL_VERSION_310_ES);
976 args["GLSL_EXTENSION"] = isES32 ? "\n" : "#extension GL_KHR_blend_equation_advanced : require\n";
978 return glu::FragmentSource(tcu::StringTemplate(stream.str()).specialize(args));
    [all...]
  /external/dng_sdk/source/
dng_pthread.cpp 219 trampoline_args args = *args_ptr; local
225 void *result = args.func(args.arg);
316 std::auto_ptr<trampoline_args> args(new (std::nothrow) trampoline_args);
319 if (args.get() == NULL || resultHolder.get () == NULL)
322 args->func = func;
323 args->arg = arg;
333 result = _beginthreadex(NULL, (unsigned)stacksize, trampoline, args.get(), 0, &threadID);
336 args.release();
  /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/e2fsprogs/misc/
fsck.c 101 static char *args[MAX_ARGS]; variable
453 argv[argc++] = string_copy(args[i]);
1157 args[num_args++] = string_copy(arg);
1243 args[num_args++] = string_copy(options);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/93/1/.cp/
convert.jar 
  /external/freetype/src/truetype/
ttinterp.h 164 FT_Long args; member in struct:TT_ExecContextRec_
  /external/google-breakpad/src/testing/gtest/src/
gtest-death-test.cc 879 ::std::vector<testing::internal::string> args = GetInjectableArgvs(); local
947 ExecDeathTestArgs* const args = static_cast<ExecDeathTestArgs*>(child_arg); local
1007 ExecDeathTestArgs args = { argv, close_fd }; local
1120 Arguments args; local
    [all...]
  /external/googletest/googletest/src/
gtest-death-test.cc 888 ::std::vector<testing::internal::string> args = GetInjectableArgvs(); local
961 ExecDeathTestArgs* const args = static_cast<ExecDeathTestArgs*>(child_arg); local
1021 ExecDeathTestArgs args = { argv, close_fd }; local
1144 Arguments args; local
    [all...]

Completed in 1012 milliseconds

<<919293949596979899100>>