Home
last modified time | relevance | path

Searched refs:arg_list (Results 1 – 5 of 5) sorted by relevance

/system/tools/aidl/
Dast_cpp.cpp125 ArgList::ArgList(const std::vector<std::string>& arg_list) { in ArgList() argument
126 for (const auto& s : arg_list) { in ArgList()
131 ArgList::ArgList(std::vector<std::unique_ptr<AstNode>> arg_list) in ArgList() argument
132 : arguments_(std::move(arg_list)) {} in ArgList()
134 ArgList::ArgList(ArgList&& arg_list) noexcept : arguments_(std::move(arg_list.arguments_)) {} in ArgList() argument
149 ArgList&& arg_list) in ConstructorDecl() argument
150 : ConstructorDecl(name, std::move(arg_list), 0u) {} in ConstructorDecl()
154 ArgList&& arg_list, in ConstructorDecl() argument
157 arguments_(std::move(arg_list)), in ConstructorDecl()
177 MacroDecl::MacroDecl(const std::string& name, ArgList&& arg_list) in MacroDecl() argument
[all …]
Dast_cpp.h117 explicit ArgList(const std::vector<std::string>& arg_list);
118 explicit ArgList(std::vector<std::unique_ptr<AstNode>> arg_list);
119 ArgList(ArgList&& arg_list) noexcept;
139 ArgList&& arg_list);
141 ArgList&& arg_list,
158 MacroDecl(const std::string& name, ArgList&& arg_list);
183 ArgList&& arg_list);
186 ArgList&& arg_list,
227 ArgList&& arg_list,
249 ArgList&& arg_list,
[all …]
Daidl_language_y.yy56 std::vector<std::unique_ptr<AidlArgument>>* arg_list;
106 %type<arg_list> arg_list
313 : type identifier '(' arg_list ')' ';' {
317 | ONEWAY type identifier '(' arg_list ')' ';' {
322 | type identifier '(' arg_list ')' '=' INTVALUE ';' {
326 | ONEWAY type identifier '(' arg_list ')' '=' INTVALUE ';' {
332 arg_list
339 | arg_list ',' arg {
/system/libufdt/utils/src/
Dmkdtboimg.py586 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/
Dutils.py331 def flatten_arg_list(arg_list): argument
333 if arg_list:
334 for items in arg_list: