/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/ |
D | RegisterType.java | 43 public final Category category; 46 private RegisterType(Category category, ClassDef type) { in RegisterType() 47 …assert ((category == Category.Reference || category == Category.UninitRef || category == Category.… in RegisterType() 49 …((category != Category.Reference && category != Category.UninitRef && category != Category.UninitT… in RegisterType() 91 public static enum Category { enum in RegisterType 123 protected static Category[][] mergeTable = 187 return getRegisterType(Category.Boolean, null); in getRegisterTypeForType() 189 return getRegisterType(Category.Byte, null); in getRegisterTypeForType() 191 return getRegisterType(Category.Short, null); in getRegisterTypeForType() 193 return getRegisterType(Category.Char, null); in getRegisterTypeForType() [all …]
|
D | MethodAnalyzer.java | 156 RegisterType.getRegisterType(RegisterType.Category.UninitThis, in analyze() 160 RegisterType.getRegisterType(RegisterType.Category.Reference, in analyze() 175 RegisterType uninit = RegisterType.getRegisterType(RegisterType.Category.Uninit, null); in analyze() 429 if (registerType.category == RegisterType.Category.LongLo) { in setPostRegisterTypeAndPropagateChanges() 432 RegisterType.getRegisterType(RegisterType.Category.LongHi, null)); in setPostRegisterTypeAndPropagateChanges() 433 } else if (registerType.category == RegisterType.Category.DoubleLo) { in setPostRegisterTypeAndPropagateChanges() 436 RegisterType.getRegisterType(RegisterType.Category.DoubleHi, null)); in setPostRegisterTypeAndPropagateChanges() 731 analyze32BitPrimitiveAget(analyzedInstruction, RegisterType.Category.Integer); in analyzeInstruction() 734 analyze32BitPrimitiveAget(analyzedInstruction, RegisterType.Category.Boolean); in analyzeInstruction() 737 analyze32BitPrimitiveAget(analyzedInstruction, RegisterType.Category.Byte); in analyzeInstruction() [all …]
|
D | AnalyzedInstruction.java | 89 RegisterType unknown = RegisterType.getRegisterType(RegisterType.Category.Unknown, null); in AnalyzedInstruction() 288 if (preInstructionDestRegisterType.category != RegisterType.Category.UninitRef && 289 preInstructionDestRegisterType.category != RegisterType.Category.UninitThis) {
|
/external/astl/tests/ |
D | test_iterator.cpp | 71 enum Category {UNKNOWN, INPUT, FORWARD, BIDIRECTIONAL, RANDOM}; enum 74 Category category(_Category) { in category() 79 Category 85 Category 91 Category 97 Category
|
/external/e2fsprogs/intl/ |
D | libgettext.h | 143 # define dcgettext(Domainname, Msgid, Category) \ argument 154 dcgettext__ (Domainname, Msgid, Category); \ 160 __result = dcgettext__ (Domainname, Msgid, Category); \ 170 # define dcgettext(Domainname, Msgid, Category) (Msgid) argument
|
/external/clang/test/CodeGenObjC/ |
D | predefined-expr.m | 11 // CHECK: @"__func__.-[Foo(Category) instanceTestWithCategory]" = private unnamed_addr constant [42… 12 // CHECK: @"__func__.+[Foo(Category) classTestWithCategory]" = private unnamed_addr constant [39 x … 73 @interface Foo (Category) category 76 @implementation Foo (Category) category
|
D | property-category-impl.m | 11 @interface Foo (Category) <Proto> @end category 13 @implementation Foo (Category) category
|
D | link-errors.m | 18 @interface A (Category) category
|
/external/clang/test/ASTMerge/Inputs/ |
D | category1.m | 27 // Category with implementation 34 // Category with implementation 41 // Category with mismatched implementation
|
D | category2.m | 29 // Category with implementation 36 // Category with implementation 43 // Category with mismatched implementation
|
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/ |
D | BugType.h | 31 const std::string Category; variable 35 : Name(name), Category(cat), SuppressonSink(false) {} in BugType() 40 StringRef getCategory() const { return Category; } in getCategory()
|
/external/bison/lib/ |
D | gettext.h | 56 # define dcgettext(Domainname, Msgid, Category) ((const char *) (Msgid)) argument 61 # define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \ argument
|
D | main.c | 28 # define setlocale(Category, Locale) argument
|
/external/clang/lib/AST/ |
D | DeclObjC.cpp | 817 for (ObjCCategoryDecl *Category = getCategoryList(); in FindCategoryDeclaration() local 818 Category; Category = Category->getNextClassCategory()) in FindCategoryDeclaration() 819 if (Category->getIdentifier() == CategoryId) in FindCategoryDeclaration() 820 return Category; in FindCategoryDeclaration() 826 for (ObjCCategoryDecl *Category = getCategoryList(); in getCategoryInstanceMethod() local 827 Category; Category = Category->getNextClassCategory()) in getCategoryInstanceMethod() 828 if (ObjCCategoryImplDecl *Impl = Category->getImplementation()) in getCategoryInstanceMethod() 835 for (ObjCCategoryDecl *Category = getCategoryList(); in getCategoryClassMethod() local 836 Category; Category = Category->getNextClassCategory()) in getCategoryClassMethod() 837 if (ObjCCategoryImplDecl *Impl = Category->getImplementation()) in getCategoryClassMethod()
|
/external/clang/test/SemaObjC/ |
D | property-error-readonly-assign.m | 35 @interface NSWindow (Category) category 39 @implementation NSWindow (Category) category
|
D | no-protocol-option-tests.m | 14 @interface C (Category) <P> @end category 15 @implementation C (Category) @end // no warning with -Wno-protocol category
|
D | category-1.m | 30 @interface MyClass1 (Category) <p2, p3> @end // expected-warning {{cannot find protocol definition… category 32 @interface UnknownClass (Category) @end // expected-error {{cannot find interface declaration for … category 36 @interface MyClass2 (Category) @end // expected-error {{cannot define category for undefined clas… category
|
D | default-synthesize.m | 107 @interface C (Category) category 110 @implementation C (Category) // expected-warning {{property 'p' requires method 'p' to be defined}}… category
|
D | method-undef-extension-warn-1.m | 17 @interface MyClass (Category) category
|
/external/junit/src/org/junit/experimental/categories/ |
D | Categories.java | 140 Category annotation= description.getAnnotation(Category.class); in directCategories() 178 if (each.getAnnotation(Category.class) != null) in assertNoDescendantsHaveCategoryAnnotations()
|
D | Category.java | 41 public @interface Category { annotation
|
/external/clang/utils/TableGen/ |
D | ClangDiagnosticsEmitter.cpp | 102 std::string Category = getDiagnosticCategory(Diags[i], ParentInfo); in DiagCategoryIDMap() local 103 if (Category.empty()) continue; // Skip diags with no category. in DiagCategoryIDMap() 105 unsigned &ID = CategoryIDs[Category]; in DiagCategoryIDMap() 109 CategoryStrings.push_back(Category); in DiagCategoryIDMap()
|
/external/clang/test/Rewriter/ |
D | metadata-test-1.m | 6 @implementation Intf(Category) category
|
/external/clang/include/clang/Basic/ |
D | DiagnosticCategories.td | 1 //==--- DiagnosticCategories.td - Diagnostic Category Definitions ---------===//
|
/external/clang/tools/libclang/ |
D | CXCursor.cpp | 804 if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(Container)) { in CollectOverriddenMethodsRecurse() local 818 for (ObjCCategoryDecl::protocol_iterator P = Category->protocol_begin(), in CollectOverriddenMethodsRecurse() 819 PEnd = Category->protocol_end(); in CollectOverriddenMethodsRecurse() 848 for (ObjCCategoryDecl *Category = Interface->getCategoryList(); in CollectOverriddenMethodsRecurse() local 849 Category; Category = Category->getNextClassCategory()) in CollectOverriddenMethodsRecurse() 850 CollectOverriddenMethodsRecurse(TU, Category, Method, Methods, in CollectOverriddenMethodsRecurse()
|