Searched refs:Id (Results 76 - 100 of 337) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DMacroPPCallbacks.cpp180 IdentifierInfo *Id = MacroNameTok.getIdentifierInfo(); local
185 writeMacroDefinition(*Id, *MD->getMacroInfo(), PP, Name, Value);
194 IdentifierInfo *Id = MacroNameTok.getIdentifierInfo(); local
198 Id->getName(), "");
H A DCGOpenCLRuntime.cpp44 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
45 case BuiltinType::Id: \
64 #define EXT_OPAQUE_TYPE(ExtType, Id, Ext) \
65 case BuiltinType::Id: \
/freebsd-11-stable/contrib/bmake/mk/
H A Dlibnames.mk1 # $Id: libnames.mk,v 1.8 2016/04/05 15:58:37 sjg Exp $
H A Dhost.libnames.mk1 # $Id: host.libnames.mk,v 1.4 2010/01/11 23:01:31 sjg Exp $
/freebsd-11-stable/contrib/bmake/unit-tests/
H A Dcond2.mk1 # $Id: cond2.mk,v 1.1.1.2 2015/12/02 00:34:27 sjg Exp $
H A Dexport-env.mk1 # $Id: export-env.mk,v 1.1.1.2 2016/02/18 20:35:24 sjg Exp $
H A Dmoderrs.mk1 # $Id: moderrs.mk,v 1.1.1.1 2014/08/30 18:57:18 sjg Exp $
H A Dforloop.mk1 # $Id: forloop.mk,v 1.1.1.1 2014/08/30 18:57:18 sjg Exp $
H A Dvarcmd.mk1 # $Id: varcmd.mk,v 1.1.1.3 2017/12/08 03:37:54 sjg Exp $
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeUDT.cpp19 NativeTypeUDT::NativeTypeUDT(NativeSession &Session, SymIndexId Id, argument
21 : NativeRawSymbol(Session, PDB_SymType::UDT, Id), Index(TI),
24 NativeTypeUDT::NativeTypeUDT(NativeSession &Session, SymIndexId Id, argument
26 : NativeRawSymbol(Session, PDB_SymType::UDT, Id), Index(TI),
29 NativeTypeUDT::NativeTypeUDT(NativeSession &Session, SymIndexId Id, argument
32 : NativeRawSymbol(Session, PDB_SymType::UDT, Id),
H A DNativeSymbolEnumerator.cpp20 NativeSession &Session, SymIndexId Id, const NativeTypeEnum &Parent,
22 : NativeRawSymbol(Session, PDB_SymType::Data, Id), Parent(Parent),
19 NativeSymbolEnumerator( NativeSession &Session, SymIndexId Id, const NativeTypeEnum &Parent, codeview::EnumeratorRecord Record) argument
H A DNativeTypeEnum.cpp99 SymIndexId Id = Session.getSymbolCache()
103 return Session.getSymbolCache().getSymbolById(Id);
115 NativeTypeEnum::NativeTypeEnum(NativeSession &Session, SymIndexId Id, argument
117 : NativeRawSymbol(Session, PDB_SymType::Enum, Id), Index(Index),
120 NativeTypeEnum::NativeTypeEnum(NativeSession &Session, SymIndexId Id, argument
123 : NativeRawSymbol(Session, PDB_SymType::Enum, Id),
297 const auto Id = Session.getSymbolCache().findSymbolByTypeIndex( local
300 Session.getConcreteSymbolById<PDBSymbolTypeBuiltin>(Id);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Option/
H A DOptTable.cpp435 static std::string getOptionHelpName(const OptTable &Opts, OptSpecifier Id) { argument
436 const Option O = Opts.getOption(Id);
445 if (const char *MetaVarName = Opts.getOptionMetaVar(Id)) {
470 if (const char *MetaVarName = Opts.getOptionMetaVar(Id))
515 static const char *getOptionHelpGroup(const OptTable &Opts, OptSpecifier Id) { argument
516 unsigned GroupID = Opts.getOptionGroupID(Id);
549 for (unsigned Id = 1, e = getNumOptions() + 1; Id != e; ++Id) {
551 if (getOptionKind(Id)
[all...]
/freebsd-11-stable/sys/x86/acpica/
H A Dmadt.c340 madt_add_cpu(proc->ProcessorId, proc->Id, proc->LapicFlags);
365 apic->Id, apic->GlobalIrqBase,
367 if (apic->Id > MAX_APIC_ID)
369 apic->Id);
370 if (ioapics[apic->Id].io_apic != NULL)
371 panic("%s: Double APIC ID %u", __func__, apic->Id);
372 ioapics[apic->Id].io_apic = ioapic_create(apic->Address,
373 apic->Id, apic->GlobalIrqBase);
374 ioapics[apic->Id].io_vector = apic->GlobalIrqBase;
/freebsd-11-stable/sys/contrib/dev/acpica/components/utilities/
H A Dutmisc.c165 * PARAMETERS: Id - The HID/CID in string format
167 * RETURN: TRUE if the Id is a match for a PCI/PCI-Express Root Bridge
175 char *Id)
182 if (!(strcmp (Id,
185 !(strcmp (Id,
174 AcpiUtIsPciRootBridge( char *Id) argument
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DGraphWriter.h176 std::string Id = DTraits.getNodeIdentifierLabel(Node, G); local
177 if (!Id.empty())
178 O << "|" << DOT::EscapeString(Id);
201 std::string Id = DTraits.getNodeIdentifierLabel(Node, G); local
202 if (!Id.empty())
203 O << "|" << DOT::EscapeString(Id);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugStringTableSubsection.cpp103 StringRef DebugStringTableSubsection::getStringForId(uint32_t Id) const {
104 auto Iter = IdToString.find(Id);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/
H A DPreprocessingRecord.cpp392 void PreprocessingRecord::addMacroExpansion(const Token &Id,
396 if (Id.getLocation().isMacroID())
401 MacroExpansion(Id.getIdentifierInfo(), Range));
437 void PreprocessingRecord::MacroExpands(const Token &Id, argument
441 addMacroExpansion(Id, MD.getMacroInfo(), Range);
444 void PreprocessingRecord::MacroDefined(const Token &Id, argument
449 new (*this) MacroDefinitionRecord(Id.getIdentifierInfo(), R);
454 void PreprocessingRecord::MacroUndefined(const Token &Id, argument
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/
H A DRefactoringCallbacks.h123 /// Replace an if-statement bound to \c Id with the outdented text of its
128 ReplaceIfStmtWithItsBody(StringRef Id, bool PickTrueBranch);
132 std::string Id; member in class:clang::tooling::ReplaceIfStmtWithItsBody
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DModuleSummaryIndex.cpp358 static std::string getNodeVisualName(GlobalValue::GUID Id) {
359 return std::string("@") + std::to_string(Id);
384 const ValueInfo &VI, GlobalValue::GUID Id) {
385 auto StrId = std::to_string(Id);
391 OS << getNodeVisualName(Id);
419 auto NodeId = [](uint64_t ModId, GlobalValue::GUID Id) {
420 return ModId == (uint64_t)-1 ? std::to_string(Id)
422 "_" + std::to_string(Id);
/freebsd-11-stable/contrib/sendmail/libsm/
H A Dtest.c11 SM_IDSTR(Id, "@(#)$Id: test.c,v 1.17 2013-11-22 20:51:44 ca Exp $")
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugStringTableSubsection.h71 StringRef getStringForId(uint32_t Id) const;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DPDBStringTableBuilder.h51 StringRef getStringForId(uint32_t Id) const;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAny.h27 template <typename T> struct TypeId { static const char Id; }; member in struct:llvm::Any::TypeId
44 const void *id() const override { return &TypeId<T>::Id; }
111 template <typename T> const char Any::TypeId<T>::Id = 0; member in class:llvm::Any::TypeId
119 return Value.Storage->id() == &Any::TypeId<U>::Id;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULibFunc.cpp88 static bool lookup(StringRef Name, ID &Id);
89 static unsigned toIndex(ID Id) { argument
90 assert(static_cast<unsigned>(Id) >
93 return static_cast<unsigned>(Id) - 1 -
102 static unsigned getNumArgs(ID Id) { return Table[toIndex(Id)].NumArgs; }
103 static StringRef getName(ID Id) { return Table[toIndex(Id)].Name; }
556 int Id = 0;
558 Map.insert({Rule.Name, Id
[all...]

Completed in 314 milliseconds

1234567891011>>