Home
last modified time | relevance | path

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

/system/tools/aidl/
Dast_cpp.cpp143 ArgList::ArgList(const std::vector<std::string>& arg_list) { in ArgList() argument
144 for (const auto& s : arg_list) { in ArgList()
149 ArgList::ArgList(std::vector<std::unique_ptr<AstNode>> arg_list) in ArgList() argument
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
168 : ConstructorDecl(name, std::move(arg_list), 0u) {} in ConstructorDecl()
172 ArgList&& arg_list, in ConstructorDecl() argument
175 arguments_(std::move(arg_list)), in ConstructorDecl()
195 MacroDecl::MacroDecl(const std::string& name, ArgList&& arg_list) in MacroDecl() argument
[all …]
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 …]
Daidl_language_y.yy85 std::vector<std::unique_ptr<AidlArgument>>* arg_list;
171 %type<arg_list> arg_list arg_non_empty_list
597 : type identifier '(' arg_list ')' ';' {
601 | annotation_list ONEWAY type identifier '(' arg_list ')' ';' {
609 | type identifier '(' arg_list ')' '=' INTVALUE ';' {
619 | annotation_list ONEWAY type identifier '(' arg_list ')' '=' INTVALUE ';' {
644 arg_list
/system/libufdt/utils/src/
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:]
/system/extras/simpleperf/scripts/
Dsimpleperf_utils.py422 def flatten_arg_list(arg_list: List[List[str]]) -> List[str]:
424 if arg_list:
425 for items in arg_list: