Home
last modified time | relevance | path

Searched refs:Category (Results 1 – 25 of 81) sorted by relevance

1234

/external/llvm/lib/Transforms/Utils/
DSpecialCaseList.cpp88 StringRef Category = SplitRegexp.second; in init() local
93 Category = "init"; in init()
96 Category = "init"; in init()
99 Category = "init"; in init()
104 Entries[Prefix][Category].Strings.insert(Regexp); in init()
123 if (!Regexps[Prefix][Category].empty()) in init()
124 Regexps[Prefix][Category] += "|"; in init()
125 Regexps[Prefix][Category] += "^" + Regexp + "$"; in init()
153 StringRef &Category) const { in findCategory()
154 return findCategory(*F.getParent(), Category) || in findCategory()
[all …]
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
DRegisterType.java43 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 …]
DMethodAnalyzer.java161 RegisterType.getRegisterType(RegisterType.Category.UninitThis, in analyze()
165 RegisterType.getRegisterType(RegisterType.Category.Reference, in analyze()
180 RegisterType uninit = RegisterType.getRegisterType(RegisterType.Category.Uninit, null); in analyze()
456 if (registerType.category == RegisterType.Category.LongLo) { in setPostRegisterTypeAndPropagateChanges()
459 RegisterType.getRegisterType(RegisterType.Category.LongHi, null)); in setPostRegisterTypeAndPropagateChanges()
460 } else if (registerType.category == RegisterType.Category.DoubleLo) { in setPostRegisterTypeAndPropagateChanges()
463 RegisterType.getRegisterType(RegisterType.Category.DoubleHi, null)); in setPostRegisterTypeAndPropagateChanges()
767 analyze32BitPrimitiveAget(analyzedInstruction, RegisterType.Category.Integer); in analyzeInstruction()
770 analyze32BitPrimitiveAget(analyzedInstruction, RegisterType.Category.Boolean); in analyzeInstruction()
773 analyze32BitPrimitiveAget(analyzedInstruction, RegisterType.Category.Byte); in analyzeInstruction()
[all …]
DAnalyzedInstruction.java89 RegisterType unknown = RegisterType.getRegisterType(RegisterType.Category.Unknown, null); in AnalyzedInstruction()
286 if (preInstructionDestRegisterType.category != RegisterType.Category.UninitRef &&
287 preInstructionDestRegisterType.category != RegisterType.Category.UninitThis) {
/external/llvm/include/llvm/Transforms/Utils/
DSpecialCaseList.h66 bool isIn(const Function &F, const StringRef Category = StringRef()) const;
71 const StringRef Category = StringRef()) const;
75 bool isIn(const Module &M, const StringRef Category = StringRef()) const;
80 bool findCategory(const Function &F, StringRef &Category) const;
85 bool findCategory(const GlobalVariable &G, StringRef &Category) const;
89 bool findCategory(const Module &M, StringRef &Category) const;
97 StringRef &Category) const;
99 const StringRef Category) const;
/external/bison/lib/
Dgettext.h71 # define dcgettext(Domainname, Msgid, Category) \ argument
72 ((void) (Category), dgettext (Domainname, Msgid))
82 # define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \ argument
83 ((void) (Category), dngettext (Domainname, Msgid1, Msgid2, N))
126 #define dcpgettext(Domainname, Msgctxt, Msgid, Category) \ argument
127 pgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, Category)
137 #define dcnpgettext(Domainname, Msgctxt, Msgid, MsgidPlural, N, Category) \ argument
138 npgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, Category)
/external/chromium_org/google_apis/drive/
Dgdata_wapi_parser.cc180 Category::CategoryType type;
185 { Category::CATEGORY_KIND, "http://schemas.google.com/g/2005#kind" },
186 { Category::CATEGORY_LABEL, "http://schemas.google.com/g/2005/labels" },
334 Category::Category() : type_(CATEGORY_UNKNOWN) { in Category() function in google_apis::Category
338 bool Category::GetCategoryTypeFromScheme( in GetCategoryTypeFromScheme()
339 const base::StringPiece& scheme, Category::CategoryType* result) { in GetCategoryTypeFromScheme()
351 void Category::RegisterJSONConverter( in RegisterJSONConverter()
352 base::JSONValueConverter<Category>* converter) { in RegisterJSONConverter()
353 converter->RegisterStringField(kLabelField, &Category::label_); in RegisterJSONConverter()
354 converter->RegisterCustomField<Category::CategoryType>( in RegisterJSONConverter()
[all …]
Dgdata_wapi_parser.h183 class Category {
192 Category();
197 base::JSONValueConverter<Category>* converter);
225 DISALLOW_COPY_AND_ASSIGN(Category);
333 const ScopedVector<Category>& categories() const { return categories_; } in categories()
342 void set_categories(ScopedVector<Category> categories) { in set_categories()
359 ScopedVector<Category> categories_;
/external/e2fsprogs/intl/
Dlibgettext.h143 # 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/
Dpredefined-expr.m11 // 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
Dcategory-super-class-meth.m17 @interface Sub2 (Category) @end category
19 @implementation Sub2 (Category) category
24 // CHECK: define internal i8* @"\01+[Sub2(Category) copy]
Dproperty-category-impl.m11 @interface Foo (Category) <Proto> @end category
13 @implementation Foo (Category) category
/external/clang/test/ASTMerge/Inputs/
Dcategory1.m27 // Category with implementation
34 // Category with implementation
41 // Category with mismatched implementation
Dcategory2.m29 // Category with implementation
36 // Category with implementation
43 // Category with mismatched implementation
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
DBugType.h32 const std::string Category; variable
36 : Name(name), Category(cat), SuppressonSink(false) {} in BugType()
41 StringRef getCategory() const { return Category; } in getCategory()
/external/clang/test/Index/
Dcomment-objc-decls.m98 * \brief MyClass (Category) is private to MyClass.
100 @interface MyClass (Category) category
111 // CHECK: <Declaration>@interface MyClass (Category)\n@end</Declaration>
148 * \brief MyClass (Category) is implementation of private to MyClass.
150 @implementation MyClass (Category) category
165 // CHECK: <Declaration>@implementation MyClass (Category)\n@end</Declaration>
/external/chromium_org/tools/win/ChromeDebug/ChromeDebug/
DAttachDialog.cs28 Category = ProcessCategory.Other; in ProcessViewItem()
38 public ProcessCategory Category; field in ChromeDebug.AttachDialog.ProcessViewItem
130 item.Category = DetermineProcessCategory(item.Detail.Win32ProcessImagePath, in ReloadNativeProcessInfo()
134 List<ProcessViewItem> items = loadedProcessTable[item.Category]; in ReloadNativeProcessInfo()
135 item.Group = processGroups[item.Category]; in ReloadNativeProcessInfo()
/external/llvm/unittests/Support/
DCommandLineTest.cpp61 ASSERT_EQ(&cl::GeneralCategory,Retrieved->Category) << in TEST()
65 ASSERT_EQ(&TestCategory,Retrieved->Category) << in TEST()
118 ASSERT_EQ(&TestCategory,TestOption2.Category) << "Failed to assign Option " in TEST()
/external/clang/test/SemaObjC/
Dproperty-error-readonly-assign.m35 @interface NSWindow (Category) category
39 @implementation NSWindow (Category) category
Dno-protocol-option-tests.m14 @interface C (Category) <P> @end category
15 @implementation C (Category) @end // no warning with -Wno-protocol category
Dcategory-1.m30 @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
/external/chromium_org/ppapi/api/
Dppb_graphics_3d.idl115 * Category: AtLeast Default: 0.
117 * Category: AtLeast Default: 0.
119 * Category: AtLeast Default: 0.
121 * Category: AtLeast Default: 0.
123 * Category: AtLeast Default: 0.
125 * Category: AtLeast Default: 0.
127 * Category: AtLeast Default: 0.
129 * Category: AtLeast Default: 0.
131 * Category: Exact Default: 0.
133 * Category: Exact Default: 0.
[all …]
/external/junit/src/org/junit/experimental/categories/
DCategories.java140 Category annotation= description.getAnnotation(Category.class); in directCategories()
178 if (each.getAnnotation(Category.class) != null) in assertNoDescendantsHaveCategoryAnnotations()
/external/llvm/unittests/Transforms/Utils/
DSpecialCaseList.cpp88 StringRef Category; in TEST_F() local
89 EXPECT_TRUE(SCL->findCategory(*Foo, Category)); in TEST_F()
90 EXPECT_EQ("functional", Category); in TEST_F()
/external/clang/test/Rewriter/
Dobjc-modern-property-attributes.mm49 @interface Test (Category) category
53 @implementation Test (Category) category

1234