HomeSort by: relevance | last modified time | path
    Searched defs:Ident (Results 1 - 22 of 22) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_test_utils.h 78 static T Ident(T t) {
  /src/external/apache2/llvm/dist/llvm/lib/Object/
ELFObjectFile.cpp 73 std::pair<unsigned char, unsigned char> Ident =
82 if (Ident.first == ELF::ELFCLASS32) {
83 if (Ident.second == ELF::ELFDATA2LSB)
85 else if (Ident.second == ELF::ELFDATA2MSB)
89 } else if (Ident.first == ELF::ELFCLASS64) {
90 if (Ident.second == ELF::ELFDATA2LSB)
92 else if (Ident.second == ELF::ELFDATA2MSB)
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
PPCallbacks.h 177 /// Callback invoked when a \#ident or \#sccs directive is read.
181 virtual void Ident(SourceLocation Loc, StringRef str) {
442 void Ident(SourceLocation Loc, StringRef str) override {
443 First->Ident(Loc, str);
444 Second->Ident(Loc, str);
  /src/external/apache2/llvm/dist/clang/lib/AST/
NSAPI.cpp 616 IdentifierInfo *Ident = &Ctx.Idents.get(Id);
617 Sel = Ctx.Selectors.getSelector(0, &Ident);
CommentParser.cpp 449 Token Ident = Tok;
452 Attrs.push_back(HTMLStartTagComment::Attribute(Ident.getLocation(),
453 Ident.getHTMLIdent()));
462 Attrs.push_back(HTMLStartTagComment::Attribute(Ident.getLocation(),
463 Ident.getHTMLIdent()));
470 Ident.getLocation(),
471 Ident.getHTMLIdent(),
  /src/external/apache2/llvm/dist/llvm/lib/Demangle/
RustDemangle.cpp 129 // | "N" <ns> <path> <identifier> // ...::ident (nested path)
147 Identifier Ident = parseIdentifier();
148 print(Ident.Name);
184 Identifier Ident = parseIdentifier();
195 if (!Ident.empty()) {
197 print(Ident.Name);
204 if (!Ident.empty()) {
206 print(Ident.Name);
499 Identifier Ident = parseIdentifier();
500 for (char C : Ident.Name)
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
ParsedAttr.h 188 IdentifierInfo *Ident;
191 IdentifierInfo *Ident);
DeclSpec.h 1252 IdentifierInfo *Ident;
1264 ParamInfo(IdentifierInfo *ident, SourceLocation iloc,
1267 : Ident(ident), IdentLoc(iloc), Param(param),
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
PrintPreprocessedOutput.cpp 134 void Ident(SourceLocation Loc, StringRef str) override;
398 /// Ident - Handle #ident directives when read by the preprocessor.
400 void PrintPPOutputPPCallbacks::Ident(SourceLocation Loc, StringRef S) {
403 OS.write("#ident ", strlen("#ident "));
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaAttr.cpp 729 IdentifierInfo *Ident;
731 std::tie(Ident, Loc) = PP.getPragmaARCCFCodeAuditedInfo();
739 AttributeCommonInfo Info(Ident, SourceRange(Loc),
SemaDeclObjC.cpp 1779 IdentifierInfo *Ident = IdentPair.first;
1780 ObjCProtocolDecl *PrevDecl = LookupProtocol(Ident, IdentPair.second,
1783 = ObjCProtocolDecl::Create(Context, CurContext, Ident,
SemaDeclAttr.cpp 350 Str = Loc->Ident->getName();
1108 if (!ConsumableAttr::ConvertStrToConsumedState(IL->Ident->getName(),
1111 << IL->Ident;
1152 IdentifierLoc *Ident = AL.getArgAsIdent(ArgIndex);
1153 StateString = Ident->Ident->getName();
1154 Loc = Ident->Loc;
1177 IdentifierLoc *Ident = AL.getArgAsIdent(0);
1178 StringRef StateString = Ident->Ident->getName()
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-rc/
ResourceScriptParser.cpp 353 const StringRef Ident = Token.value();
354 if (Ident.equals_lower("PRELOAD"))
356 else if (Ident.equals_lower("LOADONCALL"))
358 else if (Ident.equals_lower("FIXED"))
360 else if (Ident.equals_lower("MOVEABLE"))
362 else if (Ident.equals_lower("DISCARDABLE"))
364 else if (Ident.equals_lower("PURE"))
366 else if (Ident.equals_lower("IMPURE"))
368 else if (Ident.equals_lower("SHARED"))
370 else if (Ident.equals_lower("NONSHARED")
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
GlobalModuleIndex.cpp 697 std::pair<StringRef, bool> Ident = *D;
698 if (Ident.second)
699 InterestingIdentifiers[Ident.first].push_back(ID);
701 (void)InterestingIdentifiers[Ident.first];
  /src/external/apache2/llvm/dist/clang/lib/Parse/
ParseDeclCXX.cpp 72 IdentifierInfo *Ident = nullptr;
88 Ident = Tok.getIdentifierInfo();
104 Info.Ident = Tok.getIdentifierInfo();
122 if (!Ident) {
133 Decl *NSAlias = ParseNamespaceAlias(NamespaceLoc, IdentLoc, Ident, DeclEnd);
139 if (Ident)
186 NamespaceFix += ExtraNS.Ident->getName();
216 getCurScope(), InlineLoc, NamespaceLoc, IdentLoc, Ident,
263 InnerNSs[index].IdentLoc, InnerNSs[index].Ident,
316 IdentifierInfo *Ident = Tok.getIdentifierInfo()
    [all...]
ParsePragma.cpp 774 auto Ident = Data->first;
779 auto Name = Ident->getName();
799 PP.Diag(NameLoc, diag::warn_pragma_unknown_extension) << Ident;
803 PP.Diag(NameLoc, diag::warn_pragma_extension_is_core) << Ident;
805 PP.Diag(NameLoc, diag::warn_pragma_unsupported_extension) << Ident;
ParseDecl.cpp 1050 if (const IdentifierInfo *const Ident = Platform->Ident) {
1052 if (Ident->getName() == "macosx")
1053 Platform->Ident = PP.getIdentifierInfo("macos");
1056 else if (Ident->getName() == "macosx_app_extension")
1057 Platform->Ident = PP.getIdentifierInfo("macos_app_extension");
1059 Platform->Ident = PP.getIdentifierInfo(
1060 AvailabilityAttr::canonicalizePlatformName(Ident->getName()));
1111 if (Keyword == Ident_deprecated && Platform->Ident &&
1112 Platform->Ident->isStr("swift"))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
OpenMPOpt.cpp 1360 Value *Ident = nullptr;
1365 Ident = combinedIdentStruct(Ident, CI->getArgOperand(0),
1371 if (!Ident || !SingleChoice) {
1380 Ident = OMPInfoCache.OMPBuilder.getOrCreateIdent(Loc);
1382 return Ident;
1436 // If we use a call as a replacement value we need to make sure the ident is
1442 Value *Ident = getCombinedIdentFromCallUsesIn(RFI, F,
1444 CI->setArgOperand(0, Ident);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 382 unsigned EndLine, uint32_t Ident, int Version)
383 : GCOVRecord(P), SP(SP), EndLine(EndLine), Ident(Ident),
424 write(Ident);
488 uint32_t Ident;
1082 Type::getInt32Ty(*Ctx), // uint32_t ident
1316 "ident"),
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGDecl.cpp 1364 auto &Ident = getContext().Idents.getOwn(NameRef);
1365 VLAExprNames.push_back(&Ident);
  /src/external/apache2/llvm/dist/llvm/lib/Frontend/OpenMP/
OMPIRBuilder.cpp 236 Value *&Ident =
238 if (!Ident) {
251 return Ident = &GV;
258 Ident = GV;
260 return Builder.CreatePointerCast(Ident, IdentPtr);
328 Value *OpenMPIRBuilder::getOrCreateThreadID(Value *Ident) {
330 getOrCreateRuntimeFunctionPtr(OMPRTL___kmpc_global_thread_num), Ident,
416 Value *Ident = getOrCreateIdent(SrcLocStr);
417 Value *Args[] = {Ident, getOrCreateThreadID(Ident), CancelKind}
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Parse/
Parser.h 3025 IdentifierInfo *Ident;

Completed in 73 milliseconds