Searched refs:arg_list (Results 1 – 5 of 5) sorted by relevance
/system/tools/aidl/ |
D | ast_cpp.cpp | 127 ArgList::ArgList(const std::vector<std::string>& arg_list) { in ArgList() argument 128 for (const auto& s : arg_list) { in ArgList() 133 ArgList::ArgList(std::vector<std::unique_ptr<AstNode>> arg_list) in ArgList() argument 134 : arguments_(std::move(arg_list)) {} in ArgList() 136 ArgList::ArgList(ArgList&& arg_list) noexcept : arguments_(std::move(arg_list.arguments_)) {} in ArgList() argument 151 ArgList&& arg_list) in ConstructorDecl() argument 152 : ConstructorDecl(name, std::move(arg_list), 0u) {} in ConstructorDecl() 156 ArgList&& arg_list, in ConstructorDecl() argument 159 arguments_(std::move(arg_list)), in ConstructorDecl() 179 MacroDecl::MacroDecl(const std::string& name, ArgList&& arg_list) in MacroDecl() argument [all …]
|
D | ast_cpp.h | 113 explicit ArgList(const std::vector<std::string>& arg_list); 114 explicit ArgList(std::vector<std::unique_ptr<AstNode>> arg_list); 115 ArgList(ArgList&& arg_list) noexcept; 133 ArgList&& arg_list); 135 ArgList&& arg_list, 150 MacroDecl(const std::string& name, ArgList&& arg_list); 173 ArgList&& arg_list); 176 ArgList&& arg_list, 213 ArgList&& arg_list, 236 ArgList&& arg_list, [all …]
|
D | aidl_language_y.yy | 86 std::vector<std::unique_ptr<AidlArgument>>* arg_list; 172 %type<arg_list> arg_list arg_non_empty_list 565 : type identifier '(' arg_list ')' ';' { 569 | annotation_list ONEWAY type identifier '(' arg_list ')' ';' { 577 | type identifier '(' arg_list ')' '=' INTVALUE ';' { 587 | annotation_list ONEWAY type identifier '(' arg_list ')' '=' INTVALUE ';' { 612 arg_list
|
/system/libufdt/utils/src/ |
D | mkdtboimg.py | 586 def parse_dt_entries(global_args, arg_list): argument 606 for arg in arg_list: 618 argv = arg_list[start_idx:] 621 argv = arg_list[start_idx:end_idx] 718 def parse_create_args(arg_list): argument 730 for arg in arg_list: 735 argv = arg_list[0:image_arg_index] 736 remainder = arg_list[image_arg_index:]
|
/system/extras/simpleperf/scripts/ |
D | utils.py | 345 def flatten_arg_list(arg_list): argument 347 if arg_list: 348 for items in arg_list:
|