/system/tools/hidl/c2hal/ |
TypeDef.cpp | 17 #include "TypeDef.h" 21 TypeDef::TypeDef(const std::string &name, Declaration* declaration) 27 TypeDef::~TypeDef() {} 29 void TypeDef::generateSource(Formatter &out) const { 30 out << "typedef "; 37 void TypeDef::processContents(AST &ast) {
|
TypeDef.h | 28 struct TypeDef : Declaration { 29 TypeDef(const std::string &name, Declaration* declaration); 30 ~TypeDef(); 32 static std::string type() { return "typedef"; } 41 DISALLOW_COPY_AND_ASSIGN(TypeDef);
|
c2hal_y.yy | 29 #include "TypeDef.h" 96 %token TYPEDEF 226 | TYPEDEF struct_or_union_declaration ';' 228 // ignore that it is a typedef, for our purposes it doesn't matter 231 | TYPEDEF enum_declaration ';' 233 // ignore that it is a typedef, for our purposes it doesn't matter 236 | TYPEDEF param ';' /* looks like 'typedef const int8_t store;' */ 238 $$ = new TypeDef($2->getName(), $2);
|
/system/tools/hidl/ |
TypeDef.cpp | 17 #include "TypeDef.h" 24 TypeDef::TypeDef(const char* localName, const FQName& fullName, const Location& location, 28 const ScalarType *TypeDef::resolveToScalarType() const { 33 Type* TypeDef::referencedType() { 37 const Type* TypeDef::referencedType() const { 41 bool TypeDef::isInterface() const { 45 bool TypeDef::isEnum() const { 50 std::string TypeDef::typeName() const { 51 return "typedef " + localName() [all...] |
TypeDef.h | 25 struct TypeDef : public NamedType { 26 TypeDef(const char* localName, const FQName& fullName, const Location& location, Scope* parent, 51 DISALLOW_COPY_AND_ASSIGN(TypeDef);
|
hidl-gen_y.yy | 31 #include "TypeDef.h" 115 "package", "import", "typedef", "generates", "oneway", "extends", 129 "typedef", "typeid", "typename", "union", "unsigned", "using", "virtual", "void", 235 %token<void> TYPEDEF "keyword `typedef`" 716 : TYPEDEF type valid_type_name 718 // The reason we wrap the given type in a TypeDef is simply to suppress 721 TypeDef* typeDef = new TypeDef( [all...] |
/system/tools/hidl/docs/src/lexer/ |
Token.kt | 22 Annotation, Delimiter, Keyword, Number, Op, TypeDef, Word, DocComment, DocAnnotation, DocWord 40 ENUM("enum", TokenCategory.TypeDef), 44 INTERFACE("interface", TokenCategory.TypeDef), 46 STRUCT("struct", TokenCategory.TypeDef), 47 TYPEDEF("typedef", TokenCategory.TypeDef), 48 UNION("union", TokenCategory.TypeDef), 49 BITFIELD("bitfield", TokenCategory.TypeDef), 50 VEC("vec", TokenCategory.TypeDef), [all...] |
/external/smali/dexlib2/accessorTestGenerator/src/main/java/org/jf/dexlib2/ |
AccessorTestGenerator.java | 56 private static class TypeDef { 60 public TypeDef(String name, UnaryOperation[] unaryOperations, BinaryOperation[] binaryOperations) { 106 private static final TypeDef[] types = new TypeDef[] { 107 new TypeDef("boolean", new UnaryOperation[0], booleanOperations), 108 new TypeDef("byte", unaryOperations, integralOperations), 109 new TypeDef("char", unaryOperations, integralOperations), 110 new TypeDef("short", unaryOperations, integralOperations), 111 new TypeDef("int", unaryOperations, integralOperations), 112 new TypeDef("long", unaryOperations, integralOperations) [all...] |
/system/tools/hidl/docs/src/parser/elements/ |
EntryParser.kt | 43 // * members [CompoundDeclarationParser]: type, name, tokens, typedef [CompoundMemberDeclaration] 142 && token.category != TokenCategory.TypeDef 156 TokenGrammar.TYPEDEF -> TypedefDeclarationParser(iter)
|
/system/tools/hidl/docs/src/parser/elements/declarations/ |
MethodDeclarationParser.kt | 39 // [prefix] <name> ( [typedef] [name], ...) [generates] ( [typedef], [name], ...); 45 //grab prefix (typedef or keyword), if there 46 if (token.category == TokenCategory.TypeDef || token.category == TokenCategory.Keyword) {
|
CompoundDeclarationParser.kt | 79 assert(statementTokens.first().category == TokenCategory.TypeDef) 81 typeDef = statementTokens.first().identifier, 126 val typeDef: TokenGrammar) : IMemberDeclaration
|
/prebuilts/tools/common/m2/repository/org/codehaus/gmaven/runtime/gmaven-runtime-support/1.5/ |
gmaven-runtime-support-1.5.jar | |
/system/tools/hidl/build/ |
hidl_interface.go | 53 // List of non-TypeDef types declared in types.hal.
|
/prebuilts/tools/common/m2/repository/com/thoughtworks/qdox/qdox/1.12/ |
qdox-1.12.jar | |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/VfrCompile/ |
VfrCompile.g | 72 typedef ANTLRCommonToken ANTLRToken;
804 #token TypeDef("typedef") "typedef"
932 // typedef struct _XXX_ {
938 { TypeDef }
[all...] |
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/UefiVfrCompile/ |
VfrSyntax.g | 39 typedef ANTLRCommonToken ANTLRToken;
202 #token TypeDef("typedef") "typedef"
313 { TypeDef } Struct << mCVfrVarDataTypeDB.DeclareDataTypeBegin (); >>
[all...] |
/external/guice/extensions/persist/lib/ |
hibernate-annotations.jar | |
hibernate3.jar | |
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/ |
VfrSyntax.g | 39 typedef ANTLRCommonToken ANTLRToken;
204 #token TypeDef("typedef") "typedef"
324 { TypeDef } Struct << gCVfrVarDataTypeDB.DeclareDataTypeBegin (); >>
[all...] |
/prebuilts/tools/common/m2/repository/com/google/http-client/google-http-client/1.19.0/ |
google-http-client-1.19.0.jar | |
/prebuilts/tools/common/m2/repository/com/google/http-client/google-http-client/1.22.0/ |
google-http-client-1.22.0.jar | |
/prebuilts/tools/common/google-api-java-client/1.20.0/ |
google-api-java-client-min-repackaged-1.20.0.jar | |
/prebuilts/tools/common/google-api-java-client/1.23.0/ |
google-api-java-client-min-repackaged-1.23.0.jar | |
/prebuilts/tools/common/google-api-java-client/1.8.0-rc/ |
google-api-java-client-min-repackaged.jar | |