HomeSort by relevance Sort by last modified time
    Searched defs:argument (Results 1 - 25 of 47) sorted by null

1 2

  /external/chromium/base/debug/
debug_on_start_win.cc 16 // Minimalist implementation to try to find a command line argument. We can use
19 // The code is not that bright and will find things like ---argument or
20 // /-/argument.
23 wchar_t argument[50] = {}; local
25 argument[i] = argument_c[i];
27 int argument_len = lstrlen(argument);
32 // Try to find an argument.
37 if (lstrcmpi(command_line+1, argument) == 0) {
54 // Try to find the argument.
  /hardware/qcom/gps/loc_api/libloc_api-rpc/gen-1240/
loc_api_cb_svc.c 24 } argument; local
47 memset ((char *)&argument, 0, sizeof (argument));
48 if (!svc_getargs (transp, (xdrproc_t) _xdr_argument, (caddr_t) &argument)) {
52 retval = (bool_t) (*local)((char *)&argument, (void *)&result, rqstp);
56 if (!svc_freeargs (transp, (xdrproc_t) _xdr_argument, (caddr_t) &argument)) {
  /hardware/qcom/gps/loc_api/libloc_api-rpc/gen-3200/
loc_api_cb_svc.c 24 } argument; local
47 memset ((char *)&argument, 0, sizeof (argument));
48 if (!svc_getargs (transp, (xdrproc_t) _xdr_argument, (caddr_t) &argument)) {
52 retval = (bool_t) (*local)((char *)&argument, (void *)&result, rqstp);
56 if (!svc_freeargs (transp, (xdrproc_t) _xdr_argument, (caddr_t) &argument)) {
  /cts/tools/host/etc/
cts.bat 33 rem parse the argument
35 set argument=%CTS_HOST_CFG% variable
38 set argument=%1 variable
41 if not "%argument:~1,1%"==":" (
42 set argument=%curdir%\%argument% variable
64 call java %java_debug% -Djava.ext.dirs=%frameworkdir% -Djava.library.path=%libdir% -Dcom.android.cts.bindir= -jar %jarpath% %argument%
  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
JAXPExtensionsProvider.java 133 Object argument = argVec.elementAt( i ); local
136 if ( argument instanceof XNodeSet ) {
137 argList.add ( i, ((XNodeSet)argument).nodelist() );
138 } else if ( argument instanceof XObject ) {
139 Object passedArgument = ((XObject)argument).object();
142 argList.add ( i, argument );
184 Object argument = argVec.elementAt( i ); local
187 if ( argument instanceof XNodeSet ) {
188 argList.add ( i, ((XNodeSet)argument).nodelist() );
189 } else if ( argument instanceof XObject )
    [all...]
  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptengine_p.cpp 152 JSValueRef argument = JSValueMakeNumber(m_context, value); local
153 JSObjectRef result = JSObjectMakeDate(m_context, /* argumentCount */ 1, &argument, &exception);
  /sdk/monkeyrunner/src/com/android/monkeyrunner/
MonkeyRunnerOptions.java 106 String argument = args[index++]; local
108 if ("-s".equals(argument)) {
115 } else if ("-p".equals(argument)) {
116 // quick check on the next argument.
123 } else if ("-v".equals(argument)) {
124 // quick check on the next argument.
131 } else if ("-be".equals(argument)) {
132 // quick check on the next argument.
138 } else if ("-plugin".equals(argument)) {
139 // quick check on the next argument
    [all...]
  /external/chromium/base/
time_win_unittest.cc 87 void* argument = reinterpret_cast<void*>(kChecks); local
90 _beginthreadex(NULL, 0, RolloverTestThreadMain, argument, 0,
  /external/webkit/Tools/DumpRenderTree/win/
AccessibilityControllerWin.cpp 287 JSValueRef argument = JSValueMakeString(frame->globalContext(), jsNotification.get()); local
288 JSObjectCallAsFunction(frame->globalContext(), it->second, NULL, 1, &argument, NULL);
  /external/webkit/Tools/record-memory-win/
main.cpp 36 LPTSTR argument; local
38 argument = argv[count] ;
39 if (wcsstr(argument, _T("-h")) || wcsstr(argument, _T("--help")))
41 else if (wcsstr(argument, _T("--exe"))) {
43 } else if (wcsstr(argument, _T("-i")) ||
44 wcsstr(argument, _T("--interval"))) {
50 } else if (wcsstr(argument, _T("-d")) ||
51 wcsstr(argument, _T("--duration"))) {
58 _tprintf(_T("ERROR: unrecognized argument \"%s\"\n"), (LPCTSTR)argument);
    [all...]
  /sdk/screenshot/src/com/android/screenshot/
Screenshot.java 52 String argument = args[index++]; local
54 if ("-d".equals(argument)) {
59 } else if ("-e".equals(argument)) {
64 } else if ("-s".equals(argument)) {
65 // quick check on the next argument.
75 } else if ("-l".equals(argument)) {
79 filepath = argument;
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/build/
ApkBuilderMain.java 61 String argument = args[index++]; local
63 if ("-v".equals(argument)) {
66 } else if ("-d".equals(argument)) {
69 } else if ("-u".equals(argument)) {
72 } else if ("-z".equals(argument)) {
73 // quick check on the next argument.
79 } else if ("-f". equals(argument)) {
84 // quick check on the next argument.
90 } else if ("-rf". equals(argument)) {
91 // quick check on the next argument
    [all...]
  /dalvik/vm/compiler/template/
gen-template.py 56 raise DataParseError("handler-size requires one argument")
78 raise DataParseError("import requires one argument") namespace
93 raise DataParseError("import requires one argument") namespace
110 raise DataParseError("opStart takes a directory name argument")
  /dalvik/vm/mterp/
gen-mterp.py 61 raise DataParseError("handler-style requires one argument")
77 raise DataParseError("handler-size requires one argument")
99 raise DataParseError("import requires one argument") namespace
118 raise DataParseError("import requires one argument") namespace
136 raise DataParseError("import requires one argument") namespace
148 raise DataParseError("opStart takes a directory name argument")
  /external/bluetooth/glib/glib/gnulib/
printf-args.h 1 /* Decomposed printf argument list.
36 /* Argument types */
78 /* Polymorphic argument */
124 argument; typedef in typeref:struct:__anon1994
129 argument *arg;
  /external/clang/lib/CodeGen/
CGDeclCXX.cpp 78 llvm::Constant *argument; local
89 argument = addr;
96 argument = llvm::Constant::getNullValue(CGF.Int8PtrTy);
99 CGF.EmitCXXGlobalDtorRegistration(function, argument);
  /external/e2fsprogs/ext2ed/
general_com.c 28 char argument [80],*ptr; local
32 ptr=parse_word (command_line,argument);
35 ptr=parse_word (ptr,argument);
36 if (*argument!=0) {
37 detailed_help (argument);
216 wprintw (command_win,"Error - No argument specified\n");refresh_command_win ();
435 wprintw (command_win,"Error - Argument not specified\n");refresh_command_win ();return;
785 wprintw (command_win,"Error - Argument not specified\n");refresh_command_win ();
823 wprintw (command_win,"Error - Argument not specified\n");refresh_command_win ();
  /external/e2fsprogs/intl/
printf-args.h 1 /* Decomposed printf argument list.
39 /* Argument types */
77 /* Polymorphic argument */
119 argument; typedef in typeref:struct:__anon5331
124 argument *arg;
  /external/webkit/Source/JavaScriptCore/interpreter/
CallFrame.h 38 // Passed as the first argument to most functions.
114 setArgumentCountIncludingThis(argc); // original argument count (for the sake of the "arguments" object)
128 JSValue argument(int argumentNumber) function in class:JSC::ExecState
  /external/webkit/Source/JavaScriptCore/
jsc.cpp 91 char* argument; member in struct:Script
93 Script(bool isFile, char *argument)
95 , argument(argument)
180 printf("%s", exec->argument(i).toString(exec).utf8().data());
190 fprintf(stderr, "--> %s\n", exec->argument(0).toString(exec).utf8().data());
210 UString fileName = exec->argument(0).toString(exec);
227 UString fileName = exec->argument(0).toString(exec);
241 UString fileName = exec->argument(0).toString(exec);
262 unsigned flag = static_cast<unsigned>(exec->argument(i).toNumber(exec))
    [all...]
  /external/webkit/Source/WebCore/css/
CSSSelector.cpp 551 sel1->argument() != sel2->argument())
602 str += cs->argument();
770 String argument = m_argument.lower(); local
772 if (argument.isEmpty())
777 if (argument == "odd") {
780 } else if (argument == "even") {
784 size_t n = argument.find('n');
786 if (argument[0] == '-') {
790 m_a = argument.substring(0, n).toInt()
    [all...]
  /external/bluetooth/bluez/gdbus/
watch.c 73 char *argument; member in struct:filter_data
87 const char *argument)
118 if (argument && data->argument &&
119 g_str_equal(argument, data->argument) == FALSE)
148 if (data->argument)
150 ",arg0='%s'", data->argument);
202 const char *argument)
225 member, argument);
    [all...]
  /external/icu4c/test/iotest/
iotest.cpp 208 UChar argument[512]; local
245 tempStr=testCase->getString("argument", errorCode);
246 tempStr.extract(argument, sizeof(argument)/sizeof(argument[0]), errorCode);
257 dbl = atof(u_austrcpy(cBuffer, argument));
262 i8 = (int8_t)uto64(argument);
267 i16 = (int16_t)uto64(argument);
272 i32 = (int32_t)uto64(argument);
277 i64 = uto64(argument);
373 UChar argument[512]; local
576 UChar argument[512]; local
    [all...]
  /external/mesa3d/src/glsl/glcpp/
glcpp.h 109 token_list_t *argument; member in struct:argument_node
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/pulse/
introspect.h 289 *argument; /**< Argument string of the module */ member in struct:pa_module_info
453 pa_operation* pa_context_load_module(pa_context *c, const char*name, const char *argument, pa_context_index_cb_t cb, void *userdata);
470 const char *argument; /**< Argument string for module */ member in struct:pa_autoload_info
486 pa_operation* pa_context_add_autoload(pa_context *c, const char *name, pa_autoload_type_t type, const char *module, const char*argument, pa_context_index_cb_t, void* userdata);

Completed in 7244 milliseconds

1 2