HomeSort by: relevance | last modified time | path
    Searched refs:Cat (Results 1 - 25 of 28) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/BugReporter/
BugType.h 40 BugType(CheckerNameRef CheckerName, StringRef Name, StringRef Cat,
42 : CheckerName(CheckerName), Description(Name), Category(Cat),
44 BugType(const CheckerBase *Checker, StringRef Name, StringRef Cat,
47 Category(Cat), Checker(Checker), SuppressOnSink(SuppressOnSink) {}
  /src/external/apache2/llvm/dist/llvm/tools/yaml2obj/
yaml2obj.cpp 32 cl::OptionCategory Cat("yaml2obj Options");
35 cl::init("-"), cl::cat(Cat));
45 cl::cat(Cat));
54 cl::Prefix, cl::cat(Cat));
109 cl::HideUnrelatedOptions(Cat);
  /src/usr.bin/rdist/
expand.c 71 static void Cat(const char *, const char *);
202 Cat(s, "");
239 Cat(path, s);
241 Cat(tilde, s);
249 Cat(s, ""); /* "nonomatch" is set */
277 Cat(path, "");
279 Cat(tilde, tpathp);
323 Cat(path, dp->d_name);
326 Cat(tilde, tpathp);
513 Cat(path, "")
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Index/
USRGeneration.h 40 void generateUSRForObjCCategory(StringRef Cls, StringRef Cat, raw_ostream &OS,
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
ObjCUnusedIVarsChecker.cpp 89 for (const auto *Cat : ID->getClassInterface()->visible_categories()) {
90 if (const ObjCCategoryImplDecl *CID = Cat->getImplementation())
  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclObjC.cpp 138 for (const auto *Cat : ID->visible_categories()) {
139 if (ObjCMethodDecl *MD = Cat->getInstanceMethod(Sel))
142 if (Cat->IsClassExtension())
148 for (const auto *P : Cat->properties())
275 for (const auto *Cat : OID->visible_categories()) {
276 if (!Cat->IsClassExtension())
277 if (ObjCPropertyDecl *P = Cat->FindPropertyDeclaration(
706 for (const auto *Cat : ClassDecl->visible_categories())
707 if ((MethodDecl = Cat->getMethod(Sel, isInstance)))
708 if (C != Cat || !MethodDecl->isImplicit()
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
DeclObjC.h 1618 static bool isVisibleCategory(ObjCCategoryDecl *Cat);
1688 static bool isVisibleExtension(ObjCCategoryDecl *Cat);
1724 static bool isKnownExtension(ObjCCategoryDecl *Cat);
1846 const ObjCCategoryDecl *Cat,
1851 Cat);
2878 inline bool ObjCInterfaceDecl::isVisibleCategory(ObjCCategoryDecl *Cat) {
2879 return Cat->isUnconditionallyVisible();
2882 inline bool ObjCInterfaceDecl::isVisibleExtension(ObjCCategoryDecl *Cat) {
2883 return Cat->IsClassExtension() && Cat->isUnconditionallyVisible()
    [all...]
Expr.h 449 void setValueKind(ExprValueKind Cat) { ExprBits.ValueKind = Cat; }
452 void setObjectKind(ExprObjectKind Cat) { ExprBits.ObjectKind = Cat; }
3585 ExprValueKind Cat, FPOptionsOverride FPO);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
CodeCompleteConsumer.cpp 398 if (const auto *Cat = dyn_cast<ObjCCategoryDecl>(CurDC)) {
399 const ObjCInterfaceDecl *Interface = Cat->getClassInterface();
407 OS << Interface->getName() << '(' << Cat->getName() << ')';
SemaDeclObjC.cpp 152 if (ObjCCategoryDecl *Cat = dyn_cast<ObjCCategoryDecl>(DC))
153 CurrentClass = Cat->getClassInterface();
1749 void Sema::DiagnoseClassExtensionDupMethods(ObjCCategoryDecl *CAT,
1760 for (const auto *Method : CAT->methods()) {
2896 for (auto *Cat : I->visible_categories())
2898 IMPDecl, Cat, IncompleteImpl,
2899 ImmediateClass && Cat->IsClassExtension(),
4171 if (ObjCCategoryDecl *Cat
4173 ImplMethodsVsClassMethods(S, CatImplClass, Cat);
4362 for (auto *Cat : iface->known_categories()
    [all...]
SemaCodeComplete.cpp 4743 for (auto *Cat : IFace->known_categories())
4744 AddObjCProperties(CCContext, Cat, AllowCategories, AllowNullaryMethods,
7269 for (const auto *Cat : Class->known_categories()) {
7270 if ((SuperMethod = Cat->getMethod(CurMethod->getSelector(),
7981 for (const auto *Cat : Class->visible_categories())
7982 CategoryNames.insert(Cat->getIdentifier());
8025 for (const auto *Cat : Class->visible_categories()) {
8026 if ((!IgnoreImplemented || !Cat->getImplementation()) &&
8027 CategoryNames.insert(Cat->getIdentifier()).second)
8028 Results.AddResult(Result(Cat, Results.getBasePriority(Cat), nullptr)
    [all...]
SemaObjCProperty.cpp 254 } else if (ObjCCategoryDecl *Cat = dyn_cast<ObjCCategoryDecl>(ClassDecl)) {
258 if (!Cat->IsClassExtension())
259 for (auto *P : Cat->protocols())
2629 if (ObjCCategoryDecl *Cat = dyn_cast<ObjCCategoryDecl>(CD))
2630 CurrentClass = Cat->getClassInterface();
SemaLookup.cpp 3924 for (auto *Cat : IFace->visible_categories()) {
3926 lookupInDeclContext(Cat, Result, QualifiedNameLookup,
  /src/external/apache2/llvm/dist/llvm/lib/Support/
CommandLine.cpp 356 void registerCategory(OptionCategory *cat) {
358 [cat](const OptionCategory *Category) {
359 return cat->getName() == Category->getName();
363 RegisteredOptionCategories.insert(cat);
2317 for (auto &Cat : Opt->Categories) {
2318 assert(CategorizedOptions.count(Cat) > 0 &&
2320 CategorizedOptions[Cat].push_back(Opt);
2401 cl::cat(GenericCategory), cl::sub(*AllSubCommands));
2406 cl::ValueDisallowed, cl::cat(GenericCategory),
2415 cl::cat(GenericCategory), cl::sub(*AllSubCommands))
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderDecl.cpp 312 static void setNextObjCCategory(ObjCCategoryDecl *Cat,
314 Cat->NextClassCategory = Next;
4295 void add(ObjCCategoryDecl *Cat) {
4297 if (!Deserialized.erase(Cat))
4301 if (Cat->getDeclName()) {
4302 ObjCCategoryDecl *&Existing = NameCategoryMap[Cat->getDeclName()];
4305 != Reader.getOwningModuleFile(Cat)) {
4317 Reader.Diag(Cat->getLocation(), diag::warn_dup_category_def)
4318 << Interface->getDeclName() << Cat->getDeclName();
4322 Existing = Cat;
    [all...]
ASTWriterDecl.cpp 777 if (ObjCCategoryDecl *Cat = D->getCategoryListRaw()) {
782 for (; Cat; Cat = Cat->getNextClassCategoryRaw())
783 (void)Writer.GetDeclRef(Cat);
ASTWriter.cpp 3990 Cat = Class->known_categories_begin(),
3992 Cat != CatEnd; ++Cat, ++Size) {
3993 assert(getDeclID(*Cat) != 0 && "Bogus category");
3994 AddDeclRef(*Cat, Categories);
  /src/external/apache2/llvm/dist/clang/lib/Index/
IndexDecl.cpp 483 const ObjCCategoryDecl *Cat = D->getCategoryDecl();
484 if (!Cat)
USRGeneration.cpp 150 void GenObjCCategory(StringRef cls, StringRef cat,
152 generateUSRForObjCCategory(cls, cat, Out, clsExt, catExt);
890 if (const auto *const CAT = dyn_cast<ConstantArrayType>(T))
891 Out << CAT->getSize();
1038 void clang::index::generateUSRForObjCCategory(StringRef Cls, StringRef Cat,
1043 OS << "objc(cy)" << Cls << '@' << Cat;
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
variant.d 99 struct Cat { int a, b, c; }
115 static assert(maxSize!(bool, Cat) == 12);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGObjCGNU.cpp 1588 auto *Cat = cast<llvm::GlobalVariable>(C->stripPointerCasts());
1589 Cat->setSection(sectionName<CategorySection>());
1590 CGM.addUsedGlobal(Cat);
2032 ".objcrt$CAT",
  /src/external/apache2/llvm/dist/clang/utils/TableGen/
ClangAttrEmitter.cpp 4410 const StringRef Cat = Category->getValueAsString("Name");
4411 bool Undocumented = Cat == "Undocumented";
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
optimize.d 1273 ret = Cat(e.loc, e.type, e.e1, e.e2).copy();
constfold.d 1499 UnionExp Cat(const ref Loc loc, Type type, Expression e1, Expression e2)
1506 //printf("Cat(e1 = %s, e2 = %s)\n", e1.toChars(), e2.toChars());
ctfeexpr.d 1525 ue = Cat(loc, type, e1, e2);

Completed in 138 milliseconds

1 2