| /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Checkers/ |
| MPIFunctionClassifier.h | 28 bool isMPIType(const IdentifierInfo *const IdentInfo) const; 29 bool isNonBlockingType(const IdentifierInfo *const IdentInfo) const; 32 bool isPointToPointType(const IdentifierInfo *const IdentInfo) const; 35 bool isCollectiveType(const IdentifierInfo *const IdentInfo) const; 36 bool isCollToColl(const IdentifierInfo *const IdentInfo) const; 37 bool isScatterType(const IdentifierInfo *const IdentInfo) const; 38 bool isGatherType(const IdentifierInfo *const IdentInfo) const; 39 bool isAllgatherType(const IdentifierInfo *const IdentInfo) const; 40 bool isAlltoallType(const IdentifierInfo *const IdentInfo) const; 41 bool isReduceType(const IdentifierInfo *const IdentInfo) const [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| Attributes.h | 17 class IdentifierInfo; 36 int hasAttribute(AttrSyntax Syntax, const IdentifierInfo *Scope, 37 const IdentifierInfo *Attr, const TargetInfo &Target,
|
| IdentifierTable.h | 10 /// Defines the clang::IdentifierInfo, clang::IdentifierTable, and 38 class IdentifierInfo; 52 using IdentifierLocPair = std::pair<IdentifierInfo *, SourceLocation>; 54 /// IdentifierInfo and other related classes are aligned to 67 class alignas(IdentifierInfoAlignment) IdentifierInfo { 129 llvm::StringMapEntry<IdentifierInfo *> *Entry = nullptr; 131 IdentifierInfo() 140 IdentifierInfo(const IdentifierInfo &) = delete; 141 IdentifierInfo &operator=(const IdentifierInfo &) = delete [all...] |
| AttributeCommonInfo.h | 19 class IdentifierInfo; 62 const IdentifierInfo *AttrName = nullptr; 63 const IdentifierInfo *ScopeName = nullptr; 84 AttributeCommonInfo(const IdentifierInfo *AttrName, 85 const IdentifierInfo *ScopeName, SourceRange AttrRange, 92 AttributeCommonInfo(const IdentifierInfo *AttrName, 93 const IdentifierInfo *ScopeName, SourceRange AttrRange, 99 AttributeCommonInfo(const IdentifierInfo *AttrName, 100 const IdentifierInfo *ScopeName, SourceRange AttrRange, 107 AttributeCommonInfo(const IdentifierInfo *AttrName, SourceRange AttrRange [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Lex/ |
| ExternalPreprocessorSource.h | 18 class IdentifierInfo; 34 virtual void updateOutOfDateIdentifier(IdentifierInfo &II) = 0; 39 virtual IdentifierInfo *GetIdentifier(unsigned ID) = 0;
|
| MultipleIncludeOpt.h | 20 class IdentifierInfo; 50 const IdentifierInfo *TheMacro; 53 const IdentifierInfo *DefinedMacro; 78 void SetDefinedMacro(IdentifierInfo *M, SourceLocation Loc) { 122 void EnterTopLevelIfndef(const IdentifierInfo *M, SourceLocation Loc) { 163 const IdentifierInfo *GetControllingMacroAtEndOfFile() const { 173 const IdentifierInfo *GetDefinedMacro() const {
|
| CodeCompletionHandler.h | 20 class IdentifierInfo; 60 virtual void CodeCompleteMacroArgument(IdentifierInfo *Macro,
|
| Preprocessor.h | 92 IdentifierInfo *II; 98 "Identifiers should be created by TokenValue(IdentifierInfo *)"); 103 TokenValue(IdentifierInfo *II) : Kind(tok::identifier), II(II) {} 153 IdentifierInfo *Ident__LINE__, *Ident__FILE__; // __LINE__, __FILE__ 154 IdentifierInfo *Ident__DATE__, *Ident__TIME__; // __DATE__, __TIME__ 155 IdentifierInfo *Ident__INCLUDE_LEVEL__; // __INCLUDE_LEVEL__ 156 IdentifierInfo *Ident__BASE_FILE__; // __BASE_FILE__ 157 IdentifierInfo *Ident__FILE_NAME__; // __FILE_NAME__ 158 IdentifierInfo *Ident__TIMESTAMP__; // __TIMESTAMP__ 159 IdentifierInfo *Ident__COUNTER__; // __COUNTER_ [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
| Weak.h | 21 class IdentifierInfo; 25 IdentifierInfo *alias; // alias (optional) 31 WeakInfo(IdentifierInfo *Alias, SourceLocation Loc) 33 inline IdentifierInfo * getAlias() const { return alias; }
|
| ParsedAttr.h | 38 class IdentifierInfo; 177 IdentifierInfo *GetterId, *SetterId; 179 PropertyData(IdentifierInfo *getterId, IdentifierInfo *setterId) 188 IdentifierInfo *Ident; 191 IdentifierInfo *Ident); 231 IdentifierInfo *MacroII = nullptr; 294 ParsedAttr(IdentifierInfo *attrName, SourceRange attrRange, 295 IdentifierInfo *scopeName, SourceLocation scopeLoc, 310 ParsedAttr(IdentifierInfo *attrName, SourceRange attrRange [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Format/ |
| FormatToken.h | 444 bool is(const IdentifierInfo *II) const { 925 JsExtraKeywords = std::unordered_set<IdentifierInfo *>( 932 CSharpExtraKeywords = std::unordered_set<IdentifierInfo *>( 948 IdentifierInfo *kw_final; 949 IdentifierInfo *kw_override; 950 IdentifierInfo *kw_in; 951 IdentifierInfo *kw_of; 952 IdentifierInfo *kw_CF_CLOSED_ENUM; 953 IdentifierInfo *kw_CF_ENUM; 954 IdentifierInfo *kw_CF_OPTIONS [all...] |
| /src/external/apache2/llvm/dist/clang/lib/Basic/ |
| Attributes.cpp | 8 int clang::hasAttribute(AttrSyntax Syntax, const IdentifierInfo *Scope, 9 const IdentifierInfo *Attr, const TargetInfo &Target, 39 normalizeAttrScopeName(const IdentifierInfo *Scope, 57 static StringRef normalizeAttrName(const IdentifierInfo *Name, 82 static SmallString<64> normalizeName(const IdentifierInfo *Name, 83 const IdentifierInfo *Scope, 100 AttributeCommonInfo::getParsedKind(const IdentifierInfo *Name, 101 const IdentifierInfo *ScopeName,
|
| IdentifierTable.cpp | 9 // This file implements the IdentifierInfo, IdentifierVisitor, and 181 IdentifierInfo &Info = 192 IdentifierInfo &Info = Table.get(Keyword, TokenCode); 252 bool IdentifierInfo::isKeyword(const LangOptions &LangOpts) const { 264 bool IdentifierInfo::isCPlusPlusKeyword(const LangOptions &LangOpts) const { 277 IdentifierInfo::isReserved(const LangOptions &LangOpts) const { 309 tok::PPKeywordKind IdentifierInfo::getPPKeywordID() const { 374 for (llvm::StringMap<IdentifierInfo*, llvm::BumpPtrAllocator>::const_iterator 416 MultiKeywordSelector(unsigned nKeys, IdentifierInfo **IIV) 421 IdentifierInfo **KeyInfo = reinterpret_cast<IdentifierInfo **>(this + 1) [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Analysis/DomainSpecific/ |
| ObjCNoReturn.h | 29 IdentifierInfo *NSExceptionII;
|
| /src/external/apache2/llvm/dist/clang/include/clang/Index/ |
| DeclOccurrence.h | 27 const IdentifierInfo *MacroName = nullptr; 34 DeclOccurrence(SymbolRoleSet R, unsigned Offset, const IdentifierInfo *Name,
|
| IndexDataConsumer.h | 20 class IdentifierInfo; 49 virtual bool handleMacroOccurrence(const IdentifierInfo *Name,
|
| /src/external/apache2/llvm/dist/clang/lib/Index/ |
| FileIndexRecord.h | 20 class IdentifierInfo; 59 const IdentifierInfo *Name, const MacroInfo *MI);
|
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| NonnullGlobalConstantsChecker.cpp | 36 mutable IdentifierInfo *NSStringII = nullptr; 37 mutable IdentifierInfo *CFStringRefII = nullptr; 38 mutable IdentifierInfo *CFBooleanRefII = nullptr; 39 mutable IdentifierInfo *CFNullRefII = nullptr; 140 IdentifierInfo* II = T->getDecl()->getIdentifier();
|
| BlockInCriticalSectionChecker.cpp | 30 mutable IdentifierInfo *IILockGuard, *IIUniqueLock; 111 auto IdentifierInfo = Ctor->getDecl()->getParent()->getIdentifier(); 112 if (IdentifierInfo == IILockGuard || IdentifierInfo == IIUniqueLock) 130 auto IdentifierInfo = DRecordDecl->getIdentifier(); 131 if (IdentifierInfo == IILockGuard || IdentifierInfo == IIUniqueLock)
|
| LocalizationChecker.cpp | 66 mutable llvm::DenseMap<const IdentifierInfo *, 69 mutable llvm::SmallSet<std::pair<const IdentifierInfo *, Selector>, 12> LSM; 71 mutable llvm::SmallSet<const IdentifierInfo *, 5> LSF; 86 int getLocalizedArgumentForSelector(const IdentifierInfo *Receiver, 161 IdentifierInfo *initWithTitleUITabBarItemTag[] = { 165 IdentifierInfo *initWithTitleUITabBarItemImage[] = { 178 IdentifierInfo *rowActionWithStyleUITableViewRowAction[] = { 190 IdentifierInfo *radioButtonWithTitleNSButton[] = { 194 IdentifierInfo *buttonWithTitleNSButtonImage[] = { 198 IdentifierInfo *checkboxWithTitleNSButton[] = [all...] |
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/ |
| MPIFunctionClassifier.cpp | 203 bool MPIFunctionClassifier::isMPIType(const IdentifierInfo *IdentInfo) const { 208 const IdentifierInfo *IdentInfo) const { 214 const IdentifierInfo *IdentInfo) const { 220 const IdentifierInfo *IdentInfo) const { 225 const IdentifierInfo *IdentInfo) const { 230 const IdentifierInfo *IdentInfo) const { 236 const IdentifierInfo *IdentInfo) const { 244 const IdentifierInfo *IdentInfo) const { 250 const IdentifierInfo *IdentInfo) const { 255 bool MPIFunctionClassifier::isBcastType(const IdentifierInfo *IdentInfo) const [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| NSAPI.h | 53 IdentifierInfo *getNSClassId(NSClassIdKindKind K) const; 232 bool isObjCTypedef(QualType T, StringRef name, IdentifierInfo *&II) const; 234 StringRef name, IdentifierInfo *&II) const; 240 mutable IdentifierInfo *ClassIds[NumClassIds]; 261 mutable IdentifierInfo *BOOLId, *NSIntegerId, *NSUIntegerId; 262 mutable IdentifierInfo *NSASCIIStringEncodingId, *NSUTF8StringEncodingId;
|
| MangleNumberingContext.h | 24 class IdentifierInfo;
|
| /src/external/apache2/llvm/dist/clang/include/clang/Analysis/ |
| SelectorExtras.h | 21 SmallVector<IdentifierInfo *, 10> II({&Ctx.Idents.get(IIs)...});
|
| /src/external/apache2/llvm/dist/clang/lib/AST/ |
| NSAPI.cpp | 22 IdentifierInfo *NSAPI::getNSClassId(NSClassIdKindKind K) const { 58 IdentifierInfo *KeyIdents[] = { 95 IdentifierInfo *KeyIdents[] = { 112 IdentifierInfo *KeyIdents[] = { 123 IdentifierInfo *KeyIdents[] = { 131 IdentifierInfo *KeyIdents[] = { 168 IdentifierInfo *KeyIdents[] = { 176 IdentifierInfo *KeyIdents[] = { 184 IdentifierInfo *KeyIdents[] = { 205 IdentifierInfo *KeyIdents[] = [all...] |