Searched refs:current_arg (Results 1 – 6 of 6) sorted by relevance
/external/OpenCL-CTS/dependencies/ocl-stubs/ |
D | apis_generator.py | 54 current_arg = '' 62 ret.append(current_arg) 63 current_arg = '' 65 current_arg += c 66 if current_arg != '': 67 ret.append(current_arg)
|
/external/llvm-project/lldb/source/Breakpoint/ |
D | BreakpointIDList.cpp | 119 llvm::StringRef current_arg; in FindAndReplaceIDRanges() local 125 current_arg = old_args[i].ref(); in FindAndReplaceIDRanges() 126 if (!allow_locations && current_arg.contains('.')) { in FindAndReplaceIDRanges() 129 current_arg.str().c_str()); in FindAndReplaceIDRanges() 137 BreakpointIDList::SplitIDRangeExpression(current_arg); in FindAndReplaceIDRanges() 140 } else if (BreakpointID::StringIsBreakpointName(current_arg, error)) { in FindAndReplaceIDRanges() 147 names_found.insert(std::string(current_arg)); in FindAndReplaceIDRanges() 150 BreakpointID::IsValidIDExpression(current_arg) && in FindAndReplaceIDRanges() 152 range_from = current_arg; in FindAndReplaceIDRanges() 190 new_args.AppendArgument(current_arg); in FindAndReplaceIDRanges()
|
/external/python/cpython3/Python/ |
D | getargs.c | 1660 PyObject *current_arg; in vgetargskeywords() local 1791 current_arg = PyTuple_GET_ITEM(args, i); in vgetargskeywords() 1794 current_arg = _PyDict_GetItemStringWithError(kwargs, kwlist[i]); in vgetargskeywords() 1795 if (current_arg) { in vgetargskeywords() 1803 current_arg = NULL; in vgetargskeywords() 1806 if (current_arg) { in vgetargskeywords() 1807 msg = convertitem(current_arg, &format, p_va, flags, in vgetargskeywords() 1879 current_arg = _PyDict_GetItemStringWithError(kwargs, kwlist[i]); in vgetargskeywords() 1880 if (current_arg) { in vgetargskeywords() 2094 PyObject *current_arg; in vgetargskeywordsfast_impl() local [all …]
|
/external/ply/ply/ply/ |
D | cpp.py | 345 current_arg = [] 365 current_arg.append(t) 370 if current_arg: 371 args.append(self.tokenstrip(current_arg)) 374 current_arg.append(t) 376 args.append(self.tokenstrip(current_arg)) 378 current_arg = [] 380 current_arg.append(t)
|
/external/python/pycparser/pycparser/ply/ |
D | cpp.py | 343 current_arg = [] 363 current_arg.append(t) 368 if current_arg: 369 args.append(self.tokenstrip(current_arg)) 372 current_arg.append(t) 374 args.append(self.tokenstrip(current_arg)) 376 current_arg = [] 378 current_arg.append(t)
|
/external/python/cpython2/Python/ |
D | getargs.c | 1573 PyObject *freelist = NULL, *current_arg; in vgetargskeywords() local 1623 current_arg = NULL; in vgetargskeywords() 1625 current_arg = PyDict_GetItemString(keywords, keyword); in vgetargskeywords() 1627 if (current_arg) { in vgetargskeywords() 1641 current_arg = PyTuple_GET_ITEM(args, i); in vgetargskeywords() 1643 if (current_arg) { in vgetargskeywords() 1644 msg = convertitem(current_arg, &format, p_va, flags, in vgetargskeywords()
|