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

<<51525354555657585960>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
threadmodule.c 44 lock_PyThread_acquire_lock(lockobject *self, PyObject *args)
48 if (!PyArg_ParseTuple(args, "|i:acquire", &i))
266 PyObject *args; member in struct:__anon5842
328 local_new(PyTypeObject *type, PyObject *args, PyObject *kw)
337 && ((args && PyObject_IsTrue(args))
348 Py_XINCREF(args);
349 self->args = args;
383 Py_VISIT(self->args);
597 PyObject *args; member in struct:bootstate
647 PyObject *func, *args, *keyw = NULL; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
codecs.c 97 PyObject *result, *args = NULL, *v; local
126 args = PyTuple_New(1);
127 if (args == NULL)
129 PyTuple_SET_ITEM(args,0,v);
147 result = PyEval_CallObject(func, args);
171 Py_DECREF(args);
175 Py_XDECREF(args);
183 PyObject *args; local
185 args = PyTuple_New(1 + (errors != NULL));
186 if (args == NULL)
319 PyObject *args = NULL, *result = NULL; local
366 PyObject *args = NULL, *result = NULL; local
    [all...]
errors.c 177 PyObject *args, *res; local
180 args = PyTuple_New(0);
183 args = value;
186 args = PyTuple_Pack(1, value);
188 if (args == NULL)
190 res = PyEval_CallObject(type, args);
191 Py_DECREF(args);
341 NULL); /* no args */
426 NULL); /* no args */
  /device/linaro/bootloader/edk2/DuetPkg/FvbRuntimeService/
FWBlockService.c 974 VA_LIST args; local
986 VA_START (args, This);
989 StartingLba = VA_ARG (args, EFI_LBA);
994 NumOfLba = VA_ARG (args, UINT32);
1000 VA_END (args);
1005 VA_END (args);
1007 VA_START (args, This);
1009 StartingLba = VA_ARG (args, EFI_LBA);
1014 NumOfLba = VA_ARG (args, UINT32);
1019 VA_END (args);
    [all...]
  /external/autotest/frontend/client/src/autotest/tko/
ExistingGraphsFrontend.java 125 public void addToHistory(Map<String, String> args) {
126 args.put("normalize", String.valueOf(normalize.getValue()));
127 args.put("hostname", hostname.getText());
139 args.put("benchmark", benchmarks.toString());
140 args.put("kernel", kernel.getText());
144 public void handleHistoryArguments(final Map<String, String> args) {
145 hostname.setText(args.get("hostname"));
146 normalize.setValue(Boolean.parseBoolean(args.get("normalize")));
148 kernel.setText(args.get("kernel"));
156 new HashSet<String>(Arrays.asList(args.get("benchmark").split(",")))
245 HashMap<String, String> args = new HashMap<String, String>(); local
    [all...]
  /external/boringssl/src/crypto/err/
err.c 640 static void err_add_error_vdata(unsigned num, va_list args) {
653 substr = va_arg(args, const char *);
687 va_list args; local
688 va_start(args, count);
689 err_add_error_vdata(count, args);
690 va_end(args);
  /external/clang/include/clang/Lex/
MacroInfo.h 180 ArrayRef<const IdentifierInfo *> args() const { function in class:clang::MacroInfo
  /external/clang/lib/CodeGen/
CGDeclCXX.cpp 135 llvm::Value *Args[2] = { llvm::ConstantInt::getSigned(CGF.Int64Ty, Width),
137 CGF.Builder.CreateCall(InvariantStart, Args);
604 FunctionArgList args; local
607 args.push_back(&dst);
610 CGM.getTypes().arrangeBuiltinFunctionDeclaration(getContext().VoidTy, args);
617 StartFunction(VD, getContext().VoidTy, fn, FI, args);
  /external/clang/test/Analysis/
temporaries.cpp 445 const A* args[] = { &a }; local
446 escape(args);
460 const A* args[] = { &a }; local
461 set(args);
  /external/clang/tools/scan-build-py/libear/
ear.c 211 va_list args; local
212 va_start(args, arg);
213 char const **argv = bear_strings_build(arg, &args);
214 va_end(args);
230 va_list args; local
231 va_start(args, arg);
232 char const **argv = bear_strings_build(arg, &args);
233 va_end(args);
249 va_list args; local
250 va_start(args, arg)
    [all...]
  /external/compiler-rt/lib/asan/
asan_thread.cc 36 CreateThreadContextArgs *args = static_cast<CreateThreadContextArgs*>(arg); local
37 if (args->stack)
38 stack_id = StackDepotPut(*args->stack);
39 thread = args->thread;
91 CreateThreadContextArgs args = { thread, stack }; local
93 parent_tid, &args); local
  /external/curl/lib/
ldap.c 689 va_list args; local
698 va_start (args, fmt);
699 vfprintf (stderr, fmt, args);
700 va_end (args);
  /external/deqp/external/vulkancts/modules/vulkan/compute/
vktComputeIndirectComputeDispatchTests.cpp 419 std::map<std::string, std::string> args; local
421 args["LOCAL_SIZE_X"] = de::toString(m_workGroupSize.x());
422 args["LOCAL_SIZE_Y"] = de::toString(m_workGroupSize.y());
423 args["LOCAL_SIZE_Z"] = de::toString(m_workGroupSize.z());
425 std::string verifyProgramString = tcu::StringTemplate(verifyBuffer.str()).specialize(args);
  /external/deqp/modules/gles2/functional/
es2fRasterizationTests.cpp 266 RasterizationArguments args; local
269 args.numSamples = m_numSamples;
270 args.subpixelBits = m_subpixelBits;
271 args.redBits = m_context.getRenderTarget().getPixelFormat().redBits;
272 args.greenBits = m_context.getRenderTarget().getPixelFormat().greenBits;
273 args.blueBits = m_context.getRenderTarget().getPixelFormat().blueBits;
277 compareOk = verifyTriangleGroupRasterization(resultImage, scene, args, m_testCtx.getLog());
363 RasterizationArguments args;
366 args.numSamples = m_numSamples;
367 args.subpixelBits = m_subpixelBits
465 RasterizationArguments args; local
    [all...]
  /external/deqp/modules/gles31/functional/
es31fIndirectComputeDispatchTests.cpp 103 map<string, string> args; local
105 args["LOCAL_SIZE_X"] = de::toString(workGroupSize.x());
106 args["LOCAL_SIZE_Y"] = de::toString(workGroupSize.y());
107 args["LOCAL_SIZE_Z"] = de::toString(workGroupSize.z());
109 return glu::ProgramSources() << glu::ComputeSource(tcu::StringTemplate(s_verifyDispatchTmpl).specialize(args));
es31fNegativeSSBOBlockTests.cpp 43 namespace args namespace in namespace:deqp::gles31::Functional::NegativeTestShared::__anon17356
164 message = "set of args does not match the number of args struct changeable members.";
265 } // args
267 std::string generateVaryingSSBOShader(const glw::GLenum shaderType, const args::SsboArgs& args, tcu::TestLog& log)
275 if (args.getMemberReorder())
290 argsMap = args.populateArgsMap();
417 args::SsboArgs ssboArgs(versionString, log);
423 const args::SsboArgData argDataArrayFrag[] = { args::SsboArgData(args::ARGMEMBER_FORMAT, "std140")
    [all...]
  /external/deqp/scripts/
make_release.py 532 args = parseArgs() variable
533 config = ReleaseConfig(args.name, args.version, RELEASE_CONFIGS[args.config])
  /external/dhcpcd-6.8.2/dbus/
rpc-dbus.c 283 va_list args; local
285 va_start(args, fmt);
286 vsnprintf(buffer, sizeof(buffer), fmt, args);
287 va_end(args);
300 DBusMessageIter args, dict; local
314 dbus_message_iter_init_append(msg, &args);
315 dbus_message_iter_append_basic(&args, DBUS_TYPE_UINT32, &pid);
316 dbus_message_iter_append_basic(&args, DBUS_TYPE_STRING, &reason);
317 dbus_message_iter_open_container(&args, DBUS_TYPE_ARRAY,
357 dbus_message_iter_close_container(&args, &dict)
376 DBusMessageIter args, dict; local
706 DBusMessageIter args; local
    [all...]
  /external/doclava/test/doclava/
ApiCheckTest.java 41 String[] args = { "test/api/medium.xml", "test/api/medium.xml" }; local
43 Report report = apiCheck.checkApi(args);
48 String[] args = { "test/api/return-type-changed-1.xml", "test/api/return-type-changed-2.xml" }; local
50 Report report = apiCheck.checkApi(args);
56 String[] args = { "test/api/parameter-changed-1.xml", "test/api/parameter-changed-2.xml" }; local
58 Report report = apiCheck.checkApi(args);
70 String[] args = { "test/api/parameter-changed-1.xml", "test/api/parameter-changed-3.xml" }; local
72 Report report = apiCheck.checkApi(args);
83 String[] args = { "test/api/simple.xml", "test/api/added-class.xml" }; local
85 Report report = apiCheck.checkApi(args);
91 String[] args = { "test\/api\/added-class.xml", "test\/api\/simple.xml" }; local
99 String[] args = { "test\/api\/added-deprecated-class.xml", "test\/api\/simple.xml" }; local
107 String[] args = { "test\/api\/simple.xml", "test\/api\/changed-super.xml" }; local
115 String[] args = { "test\/api\/changed-assignable-return-1.xml", "test\/api\/changed-assignable-return-2.xml" }; local
122 String[] args = { "test\/api\/inserted-super-1.xml", "test\/api\/inserted-super-2.xml" }; local
129 String[] args = { "test\/api\/removed-interface.xml", "test\/api\/medium.xml" }; local
137 String[] args = { "test\/api\/medium.xml", "test\/api\/removed-interface.xml" }; local
145 String[] args = { "test\/api\/medium.xml", "test\/api\/changed-abstract.xml" }; local
153 String[] args = { "test\/api\/changed-abstract.xml", "test\/api\/medium.xml" }; local
161 String[] args = { "test\/api\/medium.xml", "test\/api\/changed-abstract2.xml" }; local
169 String[] args = { "test\/api\/changed-abstract2.xml", "test\/api\/medium.xml" }; local
177 String[] args = { "test\/api\/medium.xml", "test\/api\/added-package.xml" }; local
185 String[] args = { "test\/api\/added-package.xml", "test\/api\/medium.xml" }; local
193 String[] args = { "test\/api\/constants.xml", "test\/api\/changed-value.xml" }; local
201 String[] args = { "test\/api\/constants.xml", "test\/api\/changed-value2.xml" }; local
209 String[] args = { "test\/api\/constants.xml", "test\/api\/changed-type.xml" }; local
217 String[] args = { "test\/api\/constants.xml", "test\/api\/changed-final.xml" }; local
225 String[] args = { "test\/api\/constants.xml", "test\/api\/changed-final2.xml" }; local
233 String[] args = { "test\/api\/constants.xml", "test\/api\/changed-final3.xml" }; local
241 String[] args = { "test\/api\/changed-final3.xml", "test\/api\/constants.xml" }; local
249 String[] args = { "test\/api\/constants.xml", "test\/api\/added-field.xml" }; local
257 String[] args = { "test\/api\/added-field.xml", "test\/api\/constants.xml" }; local
265 String[] args = { "test\/api\/added-deprecated-field.xml", "test\/api\/constants.xml" }; local
273 String[] args = { "test\/api\/constants.xml", "test\/api\/added-method.xml" }; local
281 String[] args = { "test\/api\/added-method.xml", "test\/api\/constants.xml" }; local
289 String[] args = { "test\/api\/added-deprecated-method.xml", "test\/api\/constants.xml" }; local
297 String[] args = { "test\/api\/constants.xml", "test\/api\/changed-static.xml" }; local
305 String[] args = { "test\/api\/constants.xml", "test\/api\/changed-static2.xml" }; local
313 String[] args = { "test\/api\/constants.xml", "test\/api\/changed-static3.xml" }; local
321 String[] args = { "test\/api\/constants.xml", "test\/api\/changed-transient.xml" }; local
329 String[] args = { "test\/api\/constants.xml", "test\/api\/changed-synchronized.xml" }; local
336 String[] args = { "test\/api\/constants.xml", "test\/api\/changed-volatile.xml" }; local
344 String[] args = { "test\/api\/constants.xml", "test\/api\/changed-native.xml" }; local
352 String[] args = { "test\/api\/constants.xml", "test\/api\/changed-scope.xml" }; local
360 String[] args = { "test\/api\/changed-scope.xml", "test\/api\/constants.xml" }; local
368 String[] args = { "test\/api\/constants.xml", "test\/api\/changed-scope2.xml" }; local
376 String[] args = { "test\/api\/constants.xml", "test\/api\/changed-scope3.xml" }; local
384 String[] args = { "test\/api\/constants.xml", "test\/api\/changed-scope4.xml" }; local
392 String[] args = { "test\/api\/throws.xml", "test\/api\/removed-exception.xml" }; local
400 String[] args = { "test\/api\/removed-exception.xml", "test\/api\/throws.xml" }; local
408 String[] args = { "test\/api\/throws.xml", "test\/api\/added-exception.xml" }; local
416 String[] args = { "test\/api\/added-exception.xml", "test\/api\/throws.xml" }; local
424 String[] args = { "test\/api\/constants.xml", "test\/api\/changed-deprecated.xml" }; local
432 String[] args = { "test\/api\/constants.xml", "test\/api\/changed-deprecated2.xml" }; local
440 String[] args = { "test\/api\/constants.xml", "test\/api\/changed-deprecated3.xml" }; local
448 String[] args = { "test\/api\/changed-class-info2.xml", "test\/api\/changed-class-info.xml" }; local
456 String[] args = { "test\/api\/changed-class-info.xml", "test\/api\/changed-class-info2.xml" }; local
    [all...]
  /external/emma/ant/ant14/com/vladium/emma/
emmajavaTask.java 198 // main class args:
201 final String [] args = m_appArgs.getArguments (); local
202 for (int a = 0; a < args.length; ++ a)
204 super.createArg ().setValue (args [a]); // note: spaces etc are escaped correctly by ANT libs
227 // main class args:
230 final String [] args = m_appArgs.getArguments (); local
231 for (int a = 0; a < args.length; ++ a)
233 super.createArg ().setValue (args [a]); // note: spaces etc are escaped correctly by ANT libs
289 public void setArgs (final String args)
292 + ": disallows using <java>'s deprecated 'args' attribute", location).fillInStackTrace ()
    [all...]
  /external/fio/profiles/
act.c 167 va_list args; local
175 va_start(args, str);
176 len = vsnprintf(buffer, sizeof(buffer), str, args);
177 va_end(args);
  /external/guava/guava-testlib/src/com/google/common/testing/
NullPointerTester.java 359 Object[] args = new Object[params.size()]; local
361 for (int i = 0; i < args.length; i++) {
364 args[i] = getDefaultValue(param.getType());
369 args[i] != null || isNullable(param));
372 return args;
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
PluralFormatUnitTest.java 290 Object[] args = { "acme", null }; local
303 args[1] = new Integer(i);
304 logln(pfmt.format(args));
337 Integer args[] = new Integer[1]; local
341 args[0] = i;
342 result = mf.format(args);
  /external/icu/icu4c/source/test/intltest/
plurfmts.cpp 569 Formattable args; local
590 args.setLong(i);
591 mf.format(&args, 1, result.remove(), ignore, status);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
PluralFormatUnitTest.java 289 Object[] args = { "acme", null }; local
302 args[1] = new Integer(i);
303 logln(pfmt.format(args));
336 Integer args[] = new Integer[1]; local
340 args[0] = i;
341 result = mf.format(args);

Completed in 1421 milliseconds

<<51525354555657585960>>