Lines Matching refs:GetText
217 ps->SetPackage($2->GetText());
240 $$ = new AidlImport(loc(@2), $2->GetText(), $1->GetComments());
252 $$->Append($3->GetText());
295 $$->emplace_back($1->GetText());
299 $1->emplace_back($3->GetText());
312 $$ = new AidlParcelable(loc(@2), $2->GetText(), ps->Package(), $1->GetComments(), "", $3);
317 …$$ = new AidlStructuredParcelable(loc(@2), $2->GetText(), ps->Package(), $1->GetComments(), $3, $5…
322 … $$ = new AidlParcelable(loc(@2), $2->GetText(), ps->Package(), $1->GetComments(), $4->GetText());
353 $$ = new AidlVariableDeclaration(loc(@2), $1, $2->GetText());
358 $$ = new AidlVariableDeclaration(loc(@2), $1, $2->GetText(), $4);
365 $$ = new AidlInterface(loc(@1), $2->GetText(), $1->GetComments(), false, ps->Package(), $4);
370 $$ = new AidlInterface(loc(@2), $3->GetText(), $1->GetComments(), true, ps->Package(), $5);
398 $$ = AidlConstantValue::Character(loc(@1), $1->GetText());
402 $$ = AidlConstantValue::Integral(loc(@1), $1->GetText());
405 << $1->GetText();
412 $$ = AidlConstantValue::Floating(loc(@1), $1->GetText());
416 $$ = AidlConstantValue::Integral(loc(@1), $1->GetText());
419 << $1->GetText();
426 $$ = AidlConstantValue::String(loc(@1), $1->GetText());
430 $$ = new AidlConstantReference(loc(@1), $1->GetText());
547 $$ = new AidlConstantDeclaration(loc(@4), $3, $4->GetText(), $6);
556 $$ = new AidlEnumerator(loc(@1), $1->GetText(), $3, $1->GetComments());
560 $$ = new AidlEnumerator(loc(@1), $1->GetText(), nullptr, $1->GetComments());
583 $$ = new AidlEnumDeclaration(loc(@2), $2->GetText(), $3, ps->Package(), $1->GetComments());
592 $$ = new AidlUnionDecl(loc(@2), $2->GetText(), ps->Package(), $1->GetComments(), $3, $5);
600 $$ = new AidlMethod(loc(@2), false, $1, $2->GetText(), $4, $1->GetComments());
605 $$ = new AidlMethod(loc(@4), true, $3, $4->GetText(), $6, comments);
613 if (!android::base::ParseInt($7->GetText(), &serial)) {
614 AIDL_ERROR(loc(@7)) << "Could not parse int value: " << $7->GetText();
617 $$ = new AidlMethod(loc(@2), false, $1, $2->GetText(), $4, $1->GetComments(), serial);
624 if (!android::base::ParseInt($9->GetText(), &serial)) {
625 AIDL_ERROR(loc(@9)) << "Could not parse int value: " << $9->GetText();
628 $$ = new AidlMethod(loc(@4), true, $3, $4->GetText(), $6, comments, serial);
654 $$ = new AidlArgument(loc(@3), $1, $2, $3->GetText());
658 $$ = new AidlArgument(loc(@2), $1, $2->GetText());
664 $$ = new AidlTypeSpecifier(loc(@2), $2->GetText(), false, nullptr, $2->GetComments());
735 $$ = new AidlAnnotationParameter{$1->GetText(), std::unique_ptr<AidlConstantValue>($3)};
765 $$ = AidlAnnotation::Parse(loc(@1), $1->GetText(), nullptr, $1->GetComments());
772 $$ = AidlAnnotation::Parse(loc(@1, @4), $1->GetText(), $3, $1->GetComments());