HomeSort by relevance Sort by last modified time
    Searched defs:AidlType (Results 1 - 3 of 3) sorted by null

  /system/tools/aidl/
aidl_language.cpp 40 AidlType::AidlType(const std::string& name, unsigned line,
47 string AidlType::ToString() const {
51 AidlArgument::AidlArgument(AidlArgument::Direction direction, AidlType* type,
59 AidlArgument::AidlArgument(AidlType* type, std::string name, unsigned line)
94 AidlMethod::AidlMethod(bool oneway, AidlType* type, std::string name,
112 AidlMethod::AidlMethod(bool oneway, AidlType* type, std::string name,
aidl_language.h 47 class AidlType : public AidlNode {
56 AidlType(const std::string& name, unsigned line,
58 virtual ~AidlType() = default;
76 void Annotate(AidlType::Annotation annotation) { annotations_ = annotation; }
95 DISALLOW_COPY_AND_ASSIGN(AidlType);
102 AidlArgument(AidlArgument::Direction direction, AidlType* type,
104 AidlArgument(AidlType* type, std::string name, unsigned line);
114 const AidlType& GetType() const { return *type_; }
115 AidlType* GetMutableType() { return type_.get(); }
120 std::unique_ptr<AidlType> type_
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
AidlProcessor.java 74 private enum AidlType {
437 * cannot be determined, then it will return {@link AidlType#UNKNOWN}.
441 private static AidlType getAidlType(IFile file) {
444 return AidlType.UNKNOWN;
462 // return AidlType.PARCELABLE;
467 // return AidlType.INTERFACE;
482 // return AidlType.UNKNOWN;

Completed in 51 milliseconds