Home
last modified time | relevance | path

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

/aosp12/system/tools/aidl/
H A Dast_cpp.cpp144 for (const auto& s : arg_list) { in ArgList()
150 : arguments_(std::move(arg_list)) {} in ArgList()
152 ArgList::ArgList(ArgList&& arg_list) noexcept : arguments_(std::move(arg_list.arguments_)) {} in ArgList() argument
167 ArgList&& arg_list) in ConstructorDecl() argument
172 ArgList&& arg_list, in ConstructorDecl() argument
175 arguments_(std::move(arg_list)), in ConstructorDecl()
197 arguments_(std::move(arg_list)) {} in MacroDecl()
214 arguments_(std::move(arg_list)), in MethodDecl()
281 arguments_(std::move(arg_list)), in ConstructorImpl()
311 arguments_(std::move(arg_list)), in MethodImpl()
[all …]
H A Dast_cpp.h120 explicit ArgList(const std::vector<std::string>& arg_list);
121 explicit ArgList(std::vector<std::unique_ptr<AstNode>> arg_list);
122 ArgList(ArgList&& arg_list) noexcept;
140 ArgList&& arg_list);
142 ArgList&& arg_list,
157 MacroDecl(const std::string& name, ArgList&& arg_list);
178 MethodDecl(const std::string& return_type, const std::string& name, ArgList&& arg_list,
180 MethodDecl(const std::string& return_type, const std::string& name, ArgList&& arg_list,
218 ArgList&& arg_list,
240 ArgList&& arg_list, bool is_const_method = false);
[all …]
H A Daidl_language_y.yy85 std::vector<std::unique_ptr<AidlArgument>>* arg_list;
170 %type<arg_list> arg_list arg_non_empty_list
599 : type identifier '(' arg_list ')' ';' {
603 | annotation_list ONEWAY type identifier '(' arg_list ')' ';' {
611 | type identifier '(' arg_list ')' '=' INTVALUE ';' {
621 | annotation_list ONEWAY type identifier '(' arg_list ')' '=' INTVALUE ';' {
646 arg_list
/aosp12/system/libufdt/utils/src/
H A Dmkdtboimg.py624 def parse_dt_entries(global_args, arg_list): argument
644 for arg in arg_list:
656 argv = arg_list[start_idx:]
659 argv = arg_list[start_idx:end_idx]
757 def parse_create_args(arg_list): argument
769 for arg in arg_list:
774 argv = arg_list[0:image_arg_index]
775 remainder = arg_list[image_arg_index:]
/aosp12/system/extras/simpleperf/scripts/
H A Dsimpleperf_utils.py422 def flatten_arg_list(arg_list: List[List[str]]) -> List[str]:
424 if arg_list:
425 for items in arg_list:
/aosp12/frameworks/base/tools/aapt2/cmd/
H A DLink.cpp2242 std::vector<std::string> arg_list; in Action() local
2247 if (!file::AppendArgsFromFile(path, &arg_list, &error)) { in Action()
2252 arg_list.push_back(arg); in Action()
2421 return cmd.Run(arg_list); in Action()