Searched refs:pdecl (Results 1 – 7 of 7) sorted by relevance
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/ |
D | lex.c | 526 if ( p->pdecl != NULL || GenAST ) 529 fprintf(f, "AST **%s",(p->pdecl!=NULL)?",":""); 531 if ( p->pdecl!=NULL ) fprintf(f, "%s", p->pdecl); 608 if ( p->pdecl != NULL || GenAST ) 610 if ( GenAST ) fprintf(f, "ASTBase **%s",(p->pdecl!=NULL)?",":""); 611 if ( p->pdecl!=NULL ) fprintf(f, "%s", p->pdecl); 622 if ( p->pdecl != NULL || GenAST ) 624 if ( GenAST ) fprintf(f, "ASTBase **%s",(p->pdecl!=NULL)?",":""); 625 if ( p->pdecl!=NULL ) fprintf(f, "%s", p->pdecl); 647 DumpListOfParmNames(char *pdecl, FILE *output, int initialComma) /* MR5 */ in DumpListOfParmNames() argument [all …]
|
D | syn.h | 352 char *pdecl; /* point to declaration of parameters on rule variable
|
D | antlr.c | 502 char *pdecl=NULL, *ret=NULL, *a; CurRetDef = CurParmDef = NULL; in rule() local 568 pdecl = (char *) calloc(strlen(LATEXT(1))+1, sizeof(char)); in rule() 569 require(pdecl!=NULL, "rule rule: cannot allocate param decl"); in rule() 570 strcpy(pdecl, LATEXT(1)); in rule() 571 CurParmDef = pdecl; in rule() 659 CurRuleBlk->pdecl = pdecl; in rule()
|
D | antlr.g | 828 char *pdecl=NULL, *ret=NULL, *a; CurRetDef = CurParmDef = NULL; 858 << pdecl = (char *) calloc(strlen(LATEXT(1))+1, sizeof(char)); 859 require(pdecl!=NULL, "rule rule: cannot allocate param decl"); 860 strcpy(pdecl, LATEXT(1)); 861 CurParmDef = pdecl; 909 CurRuleBlk->pdecl = pdecl;
|
D | gen.c | 3769 DumpListOfParmNames( q->pdecl, output, needComma ); /* MR5 */ 3773 DumpOldStyleParms( q->pdecl, output ); 3792 if ( !FoundException && q->pdecl!=NULL ) fprintf(f,","); 3798 if ( q->pdecl!=NULL ) { 3802 if ( q->pdecl!=NULL ) { 3803 DumpFormals(f, q->pdecl, bInitializer); /* MR23 */
|
D | misc.c | 1297 if ( r->parms!=NULL && RulePtr[q->rulenum]->pdecl==NULL ) 1302 if ( r->parms==NULL && RulePtr[q->rulenum]->pdecl!=NULL )
|
D | proto.h | 475 extern char* hideDefaultArgs(const char* pdecl); /* MR22 VHS */
|