Home
last modified time | relevance | path

Searched refs:IdentifierInfo (Results 1 – 25 of 248) sorted by relevance

12345678910

/external/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
DMPIFunctionClassifier.h29 bool isMPIType(const IdentifierInfo *const IdentInfo) const;
30 bool isNonBlockingType(const IdentifierInfo *const IdentInfo) const;
33 bool isPointToPointType(const IdentifierInfo *const IdentInfo) const;
36 bool isCollectiveType(const IdentifierInfo *const IdentInfo) const;
37 bool isCollToColl(const IdentifierInfo *const IdentInfo) const;
38 bool isScatterType(const IdentifierInfo *const IdentInfo) const;
39 bool isGatherType(const IdentifierInfo *const IdentInfo) const;
40 bool isAllgatherType(const IdentifierInfo *const IdentInfo) const;
41 bool isAlltoallType(const IdentifierInfo *const IdentInfo) const;
42 bool isReduceType(const IdentifierInfo *const IdentInfo) const;
[all …]
DMPIFunctionClassifier.cpp204 bool MPIFunctionClassifier::isMPIType(const IdentifierInfo *IdentInfo) const { in isMPIType()
209 const IdentifierInfo *IdentInfo) const { in isNonBlockingType()
215 const IdentifierInfo *IdentInfo) const { in isPointToPointType()
221 const IdentifierInfo *IdentInfo) const { in isCollectiveType()
226 const IdentifierInfo *IdentInfo) const { in isCollToColl()
231 const IdentifierInfo *IdentInfo) const { in isScatterType()
237 const IdentifierInfo *IdentInfo) const { in isGatherType()
245 const IdentifierInfo *IdentInfo) const { in isAllgatherType()
251 const IdentifierInfo *IdentInfo) const { in isAlltoallType()
256 bool MPIFunctionClassifier::isBcastType(const IdentifierInfo *IdentInfo) const { in isBcastType()
[all …]
/external/clang/include/clang/Basic/
DIdentifierTable.h32 class IdentifierInfo; variable
39 typedef std::pair<IdentifierInfo*, SourceLocation> IdentifierLocPair;
47 class IdentifierInfo {
78 llvm::StringMapEntry<IdentifierInfo*> *Entry;
80 IdentifierInfo(const IdentifierInfo&) = delete;
81 void operator=(const IdentifierInfo&) = delete;
86 IdentifierInfo();
107 typedef std::pair<IdentifierInfo, const char*> actualtype; in getNameStart()
120 typedef std::pair<IdentifierInfo, const char*> actualtype; in getLength()
348 bool operator<(const IdentifierInfo &RHS) const {
[all …]
DAttributes.h18 class IdentifierInfo; variable
33 int hasAttribute(AttrSyntax Syntax, const IdentifierInfo *Scope,
34 const IdentifierInfo *Attr, const TargetInfo &Target,
/external/clang/lib/Format/
DFormatToken.h284 bool is(const IdentifierInfo *II) const { in is()
621 IdentifierInfo *kw_final;
622 IdentifierInfo *kw_override;
623 IdentifierInfo *kw_in;
624 IdentifierInfo *kw_of;
625 IdentifierInfo *kw_CF_ENUM;
626 IdentifierInfo *kw_CF_OPTIONS;
627 IdentifierInfo *kw_NS_ENUM;
628 IdentifierInfo *kw_NS_OPTIONS;
629 IdentifierInfo *kw___except;
[all …]
/external/clang/include/clang/Sema/
DAttributeList.h29 class IdentifierInfo; variable
74 IdentifierInfo *Ident;
77 IdentifierInfo *Ident);
113 IdentifierInfo *AttrName;
114 IdentifierInfo *ScopeName;
189 IdentifierInfo *GetterId, *SetterId;
190 PropertyData(IdentifierInfo *getterId, IdentifierInfo *setterId) in PropertyData()
237 AttributeList(IdentifierInfo *attrName, SourceRange attrRange, in AttributeList()
238 IdentifierInfo *scopeName, SourceLocation scopeLoc, in AttributeList()
252 AttributeList(IdentifierInfo *attrName, SourceRange attrRange, in AttributeList()
[all …]
DWeak.h22 class IdentifierInfo; variable
26 IdentifierInfo *alias; // alias (optional)
32 WeakInfo(IdentifierInfo *Alias, SourceLocation Loc) in WeakInfo()
34 inline IdentifierInfo * getAlias() const { return alias; } in getAlias()
/external/clang/include/clang/Lex/
DPreprocessor.h67 IdentifierInfo *II;
77 TokenValue(IdentifierInfo *II) : Kind(tok::identifier), II(II) {} in TokenValue()
122 IdentifierInfo *Ident__LINE__, *Ident__FILE__; // __LINE__, __FILE__
123 IdentifierInfo *Ident__DATE__, *Ident__TIME__; // __DATE__, __TIME__
124 IdentifierInfo *Ident__INCLUDE_LEVEL__; // __INCLUDE_LEVEL__
125 IdentifierInfo *Ident__BASE_FILE__; // __BASE_FILE__
126 IdentifierInfo *Ident__TIMESTAMP__; // __TIMESTAMP__
127 IdentifierInfo *Ident__COUNTER__; // __COUNTER__
128 IdentifierInfo *Ident_Pragma, *Ident__pragma; // _Pragma, __pragma
129 IdentifierInfo *Ident__identifier; // __identifier
[all …]
DMultipleIncludeOpt.h21 class IdentifierInfo; variable
51 const IdentifierInfo *TheMacro;
54 const IdentifierInfo *DefinedMacro;
79 void SetDefinedMacro(IdentifierInfo *M, SourceLocation Loc) { in SetDefinedMacro()
123 void EnterTopLevelIfndef(const IdentifierInfo *M, SourceLocation Loc) { in EnterTopLevelIfndef()
164 const IdentifierInfo *GetControllingMacroAtEndOfFile() const { in GetControllingMacroAtEndOfFile()
174 const IdentifierInfo *GetDefinedMacro() const { in GetDefinedMacro()
DPTHManager.h56 std::unique_ptr<IdentifierInfo *[], llvm::FreeDeleter> PerIDCache;
91 std::unique_ptr<IdentifierInfo *[], llvm::FreeDeleter> perIDCache,
104 inline IdentifierInfo* GetIdentifierInfo(unsigned PersistentID) { in GetIdentifierInfo()
106 if (IdentifierInfo* II = PerIDCache[PersistentID]) in GetIdentifierInfo()
110 IdentifierInfo* LazilyCreateIdentifierInfo(unsigned PersistentID);
128 IdentifierInfo *get(StringRef Name) override;
DMacroInfo.h49 IdentifierInfo **ArgumentList;
161 void setArgumentList(ArrayRef<IdentifierInfo *> List, in setArgumentList()
169 ArgumentList = PPAllocator.Allocate<IdentifierInfo *>(List.size()); in setArgumentList()
175 typedef IdentifierInfo *const *arg_iterator;
180 ArrayRef<const IdentifierInfo *> args() const { in args()
181 return ArrayRef<const IdentifierInfo *>(ArgumentList, NumArguments); in args()
186 int getArgumentNum(const IdentifierInfo *Arg) const { in getArgumentNum()
499 IdentifierInfo *II;
512 ModuleMacro(Module *OwningModule, IdentifierInfo *II, MacroInfo *Macro, in ModuleMacro()
522 IdentifierInfo *II, MacroInfo *Macro,
[all …]
DPreprocessingRecord.h29 class IdentifierInfo; variable
138 const IdentifierInfo *Name;
141 explicit MacroDefinitionRecord(const IdentifierInfo *Name, in MacroDefinitionRecord()
146 const IdentifierInfo *getName() const { return Name; } in getName()
161 llvm::PointerUnion<IdentifierInfo *, MacroDefinitionRecord *> NameOrDef;
164 MacroExpansion(IdentifierInfo *BuiltinName, SourceRange Range) in MacroExpansion()
173 bool isBuiltinMacro() const { return NameOrDef.is<IdentifierInfo *>(); } in isBuiltinMacro()
176 const IdentifierInfo *getName() const { in getName()
179 return NameOrDef.get<IdentifierInfo *>(); in getName()
DExternalPreprocessorSource.h19 class IdentifierInfo; variable
35 virtual void updateOutOfDateIdentifier(IdentifierInfo &II) = 0;
40 virtual IdentifierInfo *GetIdentifier(unsigned ID) = 0;
/external/clang/lib/StaticAnalyzer/Checkers/
DLocalizationChecker.cpp68 mutable llvm::DenseMap<const IdentifierInfo *,
71 mutable llvm::SmallSet<std::pair<const IdentifierInfo *, Selector>, 12> LSM;
73 mutable llvm::SmallSet<const IdentifierInfo *, 5> LSF;
87 int getLocalizedArgumentForSelector(const IdentifierInfo *Receiver,
163 IdentifierInfo *initWithTitleUITabBarItemTag[] = { in initUIMethods()
167 IdentifierInfo *initWithTitleUITabBarItemImage[] = { in initUIMethods()
180 IdentifierInfo *rowActionWithStyleUITableViewRowAction[] = { in initUIMethods()
208 IdentifierInfo *setTitleNSBrowser[] = {&Ctx.Idents.get("setTitle"), in initUIMethods()
218 IdentifierInfo *actionWithTitleUIAlertAction[] = { in initUIMethods()
225 IdentifierInfo *insertItemWithTitleNSPopUpButton[] = { in initUIMethods()
[all …]
DNSErrorChecker.cpp32 static bool IsNSError(QualType T, IdentifierInfo *II);
33 static bool IsCFError(QualType T, IdentifierInfo *II);
42 mutable IdentifierInfo *II;
89 mutable IdentifierInfo *II;
155 mutable IdentifierInfo *NSErrorII, *CFErrorII;
281 static bool IsNSError(QualType T, IdentifierInfo *II) { in IsNSError()
302 static bool IsCFError(QualType T, IdentifierInfo *II) { in IsCFError()
/external/clang/lib/Basic/
DIdentifierTable.cpp33 IdentifierInfo::IdentifierInfo() { in IdentifierInfo() function in IdentifierInfo
177 IdentifierInfo &Info = in AddKeyword()
188 IdentifierInfo &Info = Table.get(Keyword, TokenCode); in AddCXXOperatorKeyword()
245 bool IdentifierInfo::isKeyword(const LangOptions &LangOpts) { in isKeyword()
255 tok::PPKeywordKind IdentifierInfo::getPPKeywordID() const { in getPPKeywordID()
320 for (llvm::StringMap<IdentifierInfo*, llvm::BumpPtrAllocator>::const_iterator in PrintStats()
361 MultiKeywordSelector(unsigned nKeys, IdentifierInfo **IIV) { in MultiKeywordSelector()
366 IdentifierInfo **KeyInfo = reinterpret_cast<IdentifierInfo **>(this+1); in MultiKeywordSelector()
376 typedef IdentifierInfo *const *keyword_iterator;
383 IdentifierInfo *getIdentifierInfoForSlot(unsigned i) const { in getIdentifierInfoForSlot()
[all …]
/external/clang/lib/AST/
DNSAPI.cpp23 IdentifierInfo *NSAPI::getNSClassId(NSClassIdKindKind K) const { in getNSClassId()
59 IdentifierInfo *KeyIdents[] = { in getNSStringSelector()
107 IdentifierInfo *KeyIdents[] = { in getNSArraySelector()
124 IdentifierInfo *KeyIdents[] = { in getNSArraySelector()
135 IdentifierInfo *KeyIdents[] = { in getNSArraySelector()
143 IdentifierInfo *KeyIdents[] = { in getNSArraySelector()
180 IdentifierInfo *KeyIdents[] = { in getNSDictionarySelector()
188 IdentifierInfo *KeyIdents[] = { in getNSDictionarySelector()
196 IdentifierInfo *KeyIdents[] = { in getNSDictionarySelector()
217 IdentifierInfo *KeyIdents[] = { in getNSDictionarySelector()
[all …]
/external/cldr/tools/cldr-code/src/test/java/org/unicode/cldr/unittest/
DTestIdentifierInfo.java7 import org.unicode.cldr.draft.IdentifierInfo;
8 import org.unicode.cldr.draft.IdentifierInfo.IdentifierStatus;
48 IdentifierInfo actualInfo = new IdentifierInfo(); in TestMain()
66 BitSet expectedScripts = IdentifierInfo.parseScripts(scriptsString); in TestMain()
67 Set<BitSet> expectedMultiscripts = IdentifierInfo in TestMain()
/external/clang/include/clang/Parse/
DParser.h92 IdentifierInfo *Ident__exception_code,
96 IdentifierInfo *Ident__exception_info,
100 IdentifierInfo *Ident__abnormal_termination,
105 IdentifierInfo *Ident__except;
106 mutable IdentifierInfo *Ident_sealed;
110 IdentifierInfo *Ident_super;
113 IdentifierInfo *Ident_vector;
114 IdentifierInfo *Ident_bool;
117 IdentifierInfo *Ident_pixel;
120 mutable IdentifierInfo *Ident_instancetype;
[all …]
/external/clang/include/clang/AST/
DNSAPI.h54 IdentifierInfo *getNSClassId(NSClassIdKindKind K) const;
228 bool isObjCTypedef(QualType T, StringRef name, IdentifierInfo *&II) const;
230 StringRef name, IdentifierInfo *&II) const;
235 mutable IdentifierInfo *ClassIds[NumClassIds];
256 mutable IdentifierInfo *BOOLId, *NSIntegerId, *NSUIntegerId;
257 mutable IdentifierInfo *NSASCIIStringEncodingId, *NSUTF8StringEncodingId;
DDeclarationName.h30 class IdentifierInfo; variable
175 DeclarationName(const IdentifierInfo *II) in DeclarationName()
190 (reinterpret_cast<IdentifierInfo *>(Ptr & ~PtrMask));
224 IdentifierInfo *getAsIdentifierInfo() const { in getAsIdentifierInfo()
226 return reinterpret_cast<IdentifierInfo *>(Ptr); in getAsIdentifierInfo()
262 IdentifierInfo *getCXXLiteralIdentifier() const;
280 if (const IdentifierInfo *Info = getAsIdentifierInfo()) in getFETokenInfo()
359 DeclarationName getIdentifier(const IdentifierInfo *ID) { in getIdentifier()
387 DeclarationName getCXXLiteralOperatorName(IdentifierInfo *II);
DDeclObjC.h551 SourceLocation nameLoc, IdentifierInfo *name, in ObjCTypeParamDecl()
564 IdentifierInfo *name,
748 ObjCPropertyDecl(DeclContext *DC, SourceLocation L, IdentifierInfo *Id, in ObjCPropertyDecl()
765 IdentifierInfo *Id, SourceLocation AtLocation,
886 IdentifierInfo *getDefaultSynthIvarName(ASTContext &Ctx) const;
890 const IdentifierInfo *propertyID,
912 IdentifierInfo *Id, SourceLocation nameLoc, in ObjCContainerDecl()
1015 ObjCIvarDecl *getIvarDecl(IdentifierInfo *Id) const;
1018 FindPropertyDeclaration(const IdentifierInfo *PropertyId,
1021 typedef llvm::DenseMap<std::pair<IdentifierInfo*,
[all …]
DNestedNameSpecifier.h28 class IdentifierInfo; variable
120 IdentifierInfo *II);
144 IdentifierInfo *II);
169 IdentifierInfo *getAsIdentifier() const { in getAsIdentifier()
171 return (IdentifierInfo *)Specifier; in getAsIdentifier()
403 void Extend(ASTContext &Context, IdentifierInfo *Identifier,
/external/clang/test/Index/
Drecursive-cxx-member-calls.cpp11 class IdentifierInfo;
33 static Kind getKind(const IdentifierInfo * Name);
66 class IdentifierInfo { class
67 public:IdentifierInfo();
69 typedef std::pair < IdentifierInfo, const char *>actualtype; in getNameStart()
73 typedef std::pair < IdentifierInfo, const char *>actualtype; in getLength()
100 AttributeList::Kind AttributeList::getKind(const IdentifierInfo * Name) { in getKind()
/external/clang/lib/Sema/
DIdentifierResolver.cpp144 if (IdentifierInfo *II = Name.getAsIdentifierInfo()) in AddDecl()
169 if (IdentifierInfo *II = Name.getAsIdentifierInfo()) in InsertDeclAfter()
210 if (IdentifierInfo *II = Name.getAsIdentifierInfo()) in RemoveDecl()
229 if (IdentifierInfo *II = Name.getAsIdentifierInfo()) in begin()
299 if (IdentifierInfo *II = Name.getAsIdentifierInfo()) in tryAddTopLevelDecl()
374 void IdentifierResolver::readingIdentifier(IdentifierInfo &II) { in readingIdentifier()
379 void IdentifierResolver::updatingIdentifier(IdentifierInfo &II) { in updatingIdentifier()

12345678910