Searched refs:arg_list (Results 1 – 6 of 6) sorted by relevance
/system/tools/aidl/ |
D | ast_cpp.cpp | 107 ArgList::ArgList(const std::vector<std::string>& arg_list) { in ArgList() argument 108 for (const auto& s : arg_list) { in ArgList() 113 ArgList::ArgList(std::vector<std::unique_ptr<AstNode>> arg_list) in ArgList() argument 114 : arguments_(std::move(arg_list)) {} in ArgList() 116 ArgList::ArgList(ArgList&& arg_list) in ArgList() argument 117 : arguments_(std::move(arg_list.arguments_)) {} in ArgList() 132 ArgList&& arg_list) in ConstructorDecl() argument 133 : ConstructorDecl(name, std::move(arg_list), 0u) {} in ConstructorDecl() 137 ArgList&& arg_list, in ConstructorDecl() argument 140 arguments_(std::move(arg_list)), in ConstructorDecl() [all …]
|
D | ast_cpp.h | 105 explicit ArgList(const std::vector<std::string>& arg_list); 106 explicit ArgList(std::vector<std::unique_ptr<AstNode>> arg_list); 107 ArgList(ArgList&& arg_list); 127 ArgList&& arg_list); 129 ArgList&& arg_list, 146 MacroDecl(const std::string& name, ArgList&& arg_list); 170 ArgList&& arg_list); 173 ArgList&& arg_list, 213 ArgList&& arg_list, 235 ArgList&& arg_list, [all …]
|
D | aidl_language_y.yy | 30 std::vector<std::unique_ptr<AidlArgument>>* arg_list; 57 %type<arg_list> arg_list 208 : type identifier '(' arg_list ')' ';' { 213 | ONEWAY type identifier '(' arg_list ')' ';' { 219 | type identifier '(' arg_list ')' '=' INTVALUE ';' { 224 | ONEWAY type identifier '(' arg_list ')' '=' INTVALUE ';' { 231 arg_list 238 | arg_list ',' arg {
|
/system/libufdt/utils/src/ |
D | mkdtboimg.py | 486 def parse_dt_entries(global_args, arg_list): argument 506 for arg in arg_list: 518 argv = arg_list[start_idx:] 521 argv = arg_list[start_idx:end_idx] 615 def parse_create_args(arg_list): argument 627 for arg in arg_list: 632 argv = arg_list[0:image_arg_index] 633 remainder = arg_list[image_arg_index:]
|
/system/tpm/trunks/generator/ |
D | generator.py | 1706 arg_list = ['const %(type)s& %(name)s' % a for a in args] 1707 return '\n ' + ',\n '.join(arg_list) 1721 arg_list = ['%(type)s* %(name)s' % a for a in args] 1722 return '\n ' + ',\n '.join(arg_list) 1740 arg_list = [(prefix + a['name']) for a in args] 1747 return header + '\n ' + ',\n '.join(arg_list) + trailer
|
/system/extras/simpleperf/scripts/ |
D | utils.py | 323 def flatten_arg_list(arg_list): argument 325 if arg_list: 326 for items in arg_list:
|