HomeSort by relevance Sort by last modified time
    Searched refs:formals (Results 1 - 16 of 16) sorted by null

  /external/v8/src/parsing/
preparser.cc 159 PreParserFormalParameters formals(function_scope);
169 ParseFormalParameterList(&formals, CHECK_OK_VALUE(kPreParseSuccess));
174 formals.arity, kind, formals.has_rest, function_scope->start_position(),
182 if (!formals.is_simple) {
189 result = ParseStatementListAndLogFunction(&formals, may_abort, ok);
192 if (!formals.is_simple) {
193 BuildParameterInitializationBlock(formals, ok);
234 is_sloppy(function_scope->language_mode()) && formals.is_simple &&
312 PreParserFormalParameters formals(function_scope)
    [all...]
parser.cc 799 ParserFormalParameters formals(scope);
810 ParseFormalParameterList(&formals, &ok);
814 ParseFormalParameter(&formals, &ok);
816 DeclareFormalParameters(formals.scope, formals.params,
817 formals.is_simple);
830 for (auto p : formals.params) {
    [all...]
preparser.h     [all...]
  /external/bcc/src/cc/frontends/b/
parser.h 48 IdentExprNode *id, FormalList *formals, BlockStmtNode *body);
50 StmtNode * struct_add(IdentExprNode *type, FormalList *formals);
51 StmtNode * result_add(int token, IdentExprNode *id, FormalList *formals, BlockStmtNode *body);
parser.cc 148 StmtNode * Parser::struct_add(IdentExprNode *type, FormalList *formals) {
149 auto struct_decl = new StructDeclStmtNode(IdentExprNode::Ptr(type), move(*formals));
174 StmtNode * Parser::result_add(int token, IdentExprNode *id, FormalList *formals, BlockStmtNode *body) {
178 stmt = new MatchDeclStmtNode(IdentExprNode::Ptr(id), move(*formals), BlockStmtNode::Ptr(body));
181 stmt = new MissDeclStmtNode(IdentExprNode::Ptr(id), move(*formals), BlockStmtNode::Ptr(body));
184 stmt = new FailureDeclStmtNode(IdentExprNode::Ptr(id), move(*formals), BlockStmtNode::Ptr(body));
193 IdentExprNode *id, FormalList *formals, BlockStmtNode *body) {
194 auto decl = new FuncDeclStmtNode(IdentExprNode::Ptr(id), move(*formals), BlockStmtNode::Ptr(body));
201 for (auto it = formals->begin(); it != formals->end(); ++it
    [all...]
parser.yy 66 FormalList *formals;
93 %type <formals> struct_decl_stmts formals
262 : type_specifiers ident enter_statescope enter_varscope TLPAREN formals TRPAREN block exit_varscope exit_statescope
276 : TMATCH ident enter_varscope TLPAREN formals TRPAREN block exit_varscope TSEMI
284 | TFAILURE ident enter_varscope TLPAREN formals TRPAREN block exit_varscope TSEMI
290 formals
293 | formals TCOMMA TSTRUCT ptr_decl
node.h 557 MatchDeclStmtNode(IdentExprNode::Ptr id, FormalList&& formals, BlockStmtNode::Ptr block)
558 : id_(move(id)), formals_(move(formals)), block_(move(block)) {}
568 MissDeclStmtNode(IdentExprNode::Ptr id, FormalList&& formals, BlockStmtNode::Ptr block)
569 : id_(move(id)), formals_(move(formals)), block_(move(block)) {}
579 FailureDeclStmtNode(IdentExprNode::Ptr id, FormalList&& formals, BlockStmtNode::Ptr block)
580 : id_(move(id)), formals_(move(formals)), block_(move(block)) {}
613 FuncDeclStmtNode(IdentExprNode::Ptr id, FormalList&& formals, BlockStmtNode::Ptr block)
614 : id_(move(id)), formals_(move(formals)), block_(move(block)), scope_(NULL) {}
codegen_llvm.cc     [all...]
  /development/tools/mkstubs/tests/com/android/mkstubs/sourcer/
SignatureSourcerTest.java 117 String formals = mSourcer.formalsToString(); local
120 formals);
  /external/turbine/java/com/google/turbine/binder/
TypeBinder.java 269 ImmutableList<ParamInfo> formals; local
271 formals = ImmutableList.of(enclosingInstanceParameter());
273 formals = ImmutableList.of();
276 syntheticConstructor(formals, TurbineVisibility.fromAccess(base.access())));
280 ImmutableList<ParamInfo> formals, TurbineVisibility visibility) {
287 formals,
ConstBinder.java 142 private ImmutableList<ParamInfo> bindParameters(ImmutableList<ParamInfo> formals) {
144 for (ParamInfo base : formals) {
  /external/turbine/java/com/google/turbine/binder/bytecode/
BytecodeBoundClass.java 414 ImmutableList.Builder<ParamInfo> formals = ImmutableList.builder(); local
428 formals.add(new ParamInfo(BytecodeBinder.bindTy(tySig, scope), name, annotations, access));
446 formals.build(),
  /external/turbine/java/com/google/turbine/parse/
Parser.java 851 ImmutableList.Builder<VarDecl> formals = ImmutableList.builder(); local
852 formalParams(formals, access);
899 formals.build(),
    [all...]
  /external/error_prone/checkerframework/
dataflow-2.5.3.jar 
  /external/v8/src/inspector/build/closure-compiler/
closure-compiler.jar 
  /external/dagger2/lib/
auto-value-1.4.1.jar 

Completed in 792 milliseconds