Home
last modified time | relevance | path

Searched refs:GetDotName (Results 1 – 3 of 3) sorted by relevance

/system/tools/aidl/
Daidl_language_y.yy143 { ps->AddImport(new AidlImport(loc(@2), $2->GetDotName()));
359 $$ = new AidlTypeSpecifier(loc(@1), $1->GetDotName(), false, nullptr, $1->GetComments());
364 $$ = new AidlTypeSpecifier(loc(@1), $1->GetDotName(), true, nullptr, $1->GetComments());
369 $$ = new AidlTypeSpecifier(loc(@1), $1->GetDotName(), false, $3, $1->GetComments());
Daidl_language.h474 std::string GetDotName() const { return android::base::Join(terms_, '.'); } in GetDotName() function
Daidl_language.cpp627 : AidlDefinedType(location, name->GetDotName(), comments, package), in AidlParcelable()