Searched refs:argstring (Results 1 – 7 of 7) sorted by relevance
/external/compiler-rt/cmake/Modules/ |
D | CompilerRTUtils.cmake | 8 set(argstring "") variable 10 set(argstring "${argstring} ${arg}") variable 12 set_property(TARGET ${target} PROPERTY COMPILE_FLAGS "${argstring}") 16 set(argstring "") variable 18 set(argstring "${argstring} ${arg}") variable 20 set_property(TARGET ${target} PROPERTY LINK_FLAGS "${argstring}") 91 function(check_compile_definition def argstring out_var) 97 set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} ${argstring}") 111 set(argstring "") variable 113 set(argstring "${argstring} ${arg}") variable [all …]
|
/external/v8/tools/dev/ |
D | gen-tags.py | 45 for argstring in argv: 46 if argstring in ("-h", "--help", "help"): 48 if argstring not in ARCHES: 49 print("Invalid argument: %s" % argstring) 51 user_arches.append(argstring)
|
D | gm.py | 273 def GetTestBinary(argstring): argument 275 if argstring.startswith(suite): return TESTSUITES_TARGETS[suite] 304 def ParseArg(self, argstring): argument 305 if argstring in ("-h", "--help", "help"): 313 if argstring.startswith("unittests/"): 314 words = [argstring] 316 words = argstring.split('.') 357 for argstring in argv: 358 self.ParseArg(argstring)
|
/external/elfutils/libcpu/ |
D | i386_parse.y | 147 struct argstring struct 878 const struct argstring *a1 = (const struct argstring *) p1; in compare_argstring() 879 const struct argstring *a2 = (const struct argstring *) p2; in compare_argstring() 914 struct argstring search = { .str = runp->operands[i].fct }; in find_numbers() 917 struct argstring *newp = xmalloc (sizeof (*newp)); in find_numbers() 930 struct argstring *newp = xmalloc (sizeof (*newp)); in find_numbers() 1080 const char *str = (*(struct argstring **) nodep)->str; in print_op_str() 1083 (*(struct argstring **) nodep)->idx = ++count_op_str; in print_op_str() 1084 (*(struct argstring **) nodep)->off = off_op_str; in print_op_str() 1095 printf (" %d,\n", (*(struct argstring **) nodep)->off); in print_op_str_idx() [all …]
|
D | ChangeLog | 147 * i386_parse.y (struct argstring): Add off element.
|
/external/python/cpython2/Modules/ |
D | puremodule.c | 123 char* argstring; in call_printfish_function() local 125 if (!PyArg_ParseTuple(args, "s", &argstring)) in call_printfish_function() 128 status = func("%s", argstring); in call_printfish_function()
|
/external/python/cpython2/Doc/library/ |
D | smtplib.rst | 164 .. method:: SMTP.docmd(cmd, [, argstring]) 166 Send a command *cmd* to the server. The optional argument *argstring* is simply
|