Searched refs:Id (Results 26 - 50 of 337) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/Transformer/
H A DStencil.h80 /// Generates the source of the expression bound to \p Id, wrapping it in
84 Stencil expression(llvm::StringRef Id);
120 Stencil ifBound(llvm::StringRef Id, Stencil TrueStencil, Stencil FalseStencil);
124 inline Stencil ifBound(llvm::StringRef Id, llvm::StringRef TrueText, argument
126 return ifBound(Id, text(TrueText), text(FalseText));
136 Stencil dPrint(llvm::StringRef Id);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Transformer/
H A DStencil.cpp36 getNode(const ast_matchers::BoundNodes &Nodes, StringRef Id) { argument
38 auto It = NodesMap.find(Id);
41 "Id not bound: " + Id);
54 explicit DebugPrintNodeData(std::string S) : Id(std::move(S)) {}
55 std::string Id; member in struct:__anon940::DebugPrintNodeData
58 // Operators that take a single node Id as an argument.
69 UnaryOperationData(UnaryNodeOperator Op, std::string Id) argument
70 : Op(Op), Id(std::move(Id)) {}
72 std::string Id; member in struct:__anon940::UnaryOperationData
90 IfBoundData(StringRef Id, Stencil TrueStencil, Stencil FalseStencil) argument
93 std::string Id; member in struct:__anon940::IfBoundData
311 dPrint(StringRef Id) argument
315 expression(llvm::StringRef Id) argument
344 ifBound(StringRef Id, Stencil TrueStencil, Stencil FalseStencil) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/ASTDiff/
H A DASTDiff.cpp71 NodeId Id) const {
73 return TheMapping.getDst(Id);
75 return TheMapping.getSrc(Id);
143 const Node &getNode(NodeId Id) const { return Nodes[Id]; }
144 Node &getMutableNode(NodeId Id) { return Nodes[Id]; } argument
145 bool isValidNodeId(NodeId Id) const { return Id >= 0 && Id < getSiz
190 int Id = 0, Depth = 0; member in struct:clang::diff::__anon913::PreorderVisitor
334 isInSubtree(NodeId Id, NodeId SubtreeRoot) const argument
338 findPositionInParent(NodeId Id, bool Shifted) const argument
474 int Id = 0; member in struct:clang::diff::SNodeId
476 SNodeId(int Id) argument
751 open(NodeId Id) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DPDBSymbol.h26 auto PublicName##Id() const->decltype(RawSymbol->PrivateName##Id()) { \
27 return RawSymbol->PrivateName##Id(); \
30 uint32_t Id = PublicName##Id(); \
31 return getConcreteSymbolByIdHelper<ConcreteType>(Id); \
156 std::unique_ptr<PDBSymbol> getSymbolByIdHelper(uint32_t Id) const;
159 std::unique_ptr<ConcreteType> getConcreteSymbolByIdHelper(uint32_t Id) const {
160 return unique_dyn_cast_or_null<ConcreteType>(getSymbolByIdHelper(Id));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DRDFDeadCode.cpp89 if (!LiveNodes.count(RA.Id))
90 WorkQ.push_back(RA.Id);
98 if (!LiveNodes.count(UA.Id))
99 WorkQ.push_back(UA.Id);
102 LiveNodes.insert(TA.Id);
108 if (!LiveNodes.count(DA.Id))
109 WorkQ.push_back(DA.Id);
152 if (LiveNodes.count(DA.Id))
160 if (!LiveNodes.count(RA.Id))
161 DeadNodes.insert(RA.Id);
[all...]
/freebsd-11-stable/contrib/bmake/unit-tests/
H A Dforsubst.mk1 # $Id: forsubst.mk,v 1.1.1.1 2014/08/30 18:57:18 sjg Exp $
/freebsd-11-stable/contrib/sendmail/editmap/
H A DMakefile.m41 dnl $Id: Makefile.m4,v 1.6 2006-06-28 21:08:01 ca Exp $
/freebsd-11-stable/contrib/sendmail/libmilter/
H A DMakefile.m41 dnl $Id: Makefile.m4,v 8.96 2013-10-14 16:16:44 ca Exp $
/freebsd-11-stable/contrib/sendmail/mail.local/
H A DMakefile.m41 dnl $Id: Makefile.m4,v 8.52 2006-06-28 21:08:02 ca Exp $
/freebsd-11-stable/contrib/sendmail/mailstats/
H A DMakefile.m41 dnl $Id: Makefile.m4,v 8.36 2006-06-28 21:08:02 ca Exp $
/freebsd-11-stable/contrib/sendmail/praliases/
H A DMakefile.m41 dnl $Id: Makefile.m4,v 8.36 2006-06-28 21:08:03 ca Exp $
/freebsd-11-stable/contrib/elftoolchain/common/
H A Dos.Linux.mk4 # $Id: os.Linux.mk 3594 2018-04-11 18:26:50Z jkoshy $
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeBuiltin.cpp16 NativeTypeBuiltin::NativeTypeBuiltin(NativeSession &PDBSession, SymIndexId Id, argument
19 : NativeRawSymbol(PDBSession, PDB_SymType::BuiltinType, Id),
H A DNativeTypeTypedef.cpp7 NativeTypeTypedef::NativeTypeTypedef(NativeSession &Session, SymIndexId Id, argument
9 : NativeRawSymbol(Session, PDB_SymType::Typedef, Id),
H A DNativeTypeVTShape.cpp7 NativeTypeVTShape::NativeTypeVTShape(NativeSession &Session, SymIndexId Id, argument
10 : NativeRawSymbol(Session, PDB_SymType::VTableShape, Id), TI(TI),
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DNativeTypePointer.h24 NativeTypePointer(NativeSession &Session, SymIndexId Id,
28 NativeTypePointer(NativeSession &Session, SymIndexId Id,
H A DNativeTypeTypedef.h23 NativeTypeTypedef(NativeSession &Session, SymIndexId Id,
H A DNativeTypeUDT.h23 NativeTypeUDT(NativeSession &Session, SymIndexId Id, codeview::TypeIndex TI,
26 NativeTypeUDT(NativeSession &Session, SymIndexId Id, codeview::TypeIndex TI,
29 NativeTypeUDT(NativeSession &Session, SymIndexId Id,
H A DSymbolCache.h33 /// an Id. Id allocation is an implementation, with the only guarantee
34 /// being that once an Id is allocated, the symbol can be assumed to be
56 SymIndexId Id = Cache.size(); local
58 return Id;
86 SymIndexId Id = Cache.size(); local
91 Session, Id, std::forward<Args>(ConstructorArgs)...);
92 Result->SymbolId = Id;
100 return Id;
/freebsd-11-stable/contrib/sendmail/makemap/
H A DMakefile.m41 dnl $Id: Makefile.m4,v 8.44 2006-06-28 21:08:03 ca Exp $
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/ASTDiff/
H A DASTDiff.h57 NodeId getMapped(const SyntaxTree &SourceTree, NodeId Id) const;
87 const Node &getNode(NodeId Id) const;
88 int findPositionInParent(NodeId Id) const;
96 std::string getNodeValue(NodeId Id) const;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/
H A DDIASourceFile.cpp28 DWORD Id; local
29 return (S_OK == SourceFile->get_uniqueId(&Id)) ? Id : 0;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DOrcRemoteTargetClient.h64 Client.destroyRemoteAllocator(Id);
65 LLVM_DEBUG(dbgs() << "Destroyed remote allocator " << Id << "\n");
80 LLVM_DEBUG(dbgs() << "Allocator " << Id << " allocated code for "
93 LLVM_DEBUG(dbgs() << "Allocator " << Id << " allocated ro-data for "
102 LLVM_DEBUG(dbgs() << "Allocator " << Id << " allocated rw-data for "
114 LLVM_DEBUG(dbgs() << "Allocator " << Id << " reserved:\n");
118 Client.reserveMem(Id, CodeSize, CodeAlign);
129 Client.reserveMem(Id, RODataSize, RODataAlign);
140 Client.reserveMem(Id, RWDataSize, RWDataAlign);
166 LLVM_DEBUG(dbgs() << "Allocator " << Id << " applie
262 RemoteRTDyldMemoryManager(OrcRemoteTargetClient &Client, ResourceIdMgr::ResourceId Id) argument
320 ResourceIdMgr::ResourceId Id; member in class:llvm::orc::remote::OrcRemoteTargetClient::RemoteRTDyldMemoryManager
335 RemoteIndirectStubsManager(OrcRemoteTargetClient &Client, ResourceIdMgr::ResourceId Id) argument
446 ResourceIdMgr::ResourceId Id; member in class:llvm::orc::remote::OrcRemoteTargetClient::RemoteIndirectStubsManager
542 auto Id = AllocatorIds.getNext(); local
553 auto Id = IndirectStubOwnerIds.getNext(); local
612 destroyRemoteAllocator(ResourceIdMgr::ResourceId Id) argument
621 destroyIndirectStubsManager(ResourceIdMgr::ResourceId Id) argument
628 emitIndirectStubs(ResourceIdMgr::ResourceId Id, uint32_t NumStubsRequired) argument
652 reserveMem(ResourceIdMgr::ResourceId Id, uint64_t Size, uint32_t Align) argument
662 setProtections(ResourceIdMgr::ResourceId Id, JITTargetAddress RemoteSegAddr, unsigned ProtFlags) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Option/
H A DArgList.cpp46 void ArgList::eraseArg(OptSpecifier Id) { argument
49 for (Arg *const &A : filtered(Id)) {
54 OptRanges.erase(Id.getID());
60 for (auto Id : Ids) {
61 auto I = OptRanges.find(Id.getID());
86 StringRef ArgList::getLastArgValue(OptSpecifier Id, StringRef Default) const { argument
87 if (Arg *A = getLastArg(Id))
92 std::vector<std::string> ArgList::getAllArgValues(OptSpecifier Id) const {
94 AddAllArgValues(Values, Id);
103 for (OptSpecifier Id
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/
H A DDependencyDirectivesSourceMinimizer.cpp57 LLVM_NODISCARD bool isNextIdentifier(StringRef Id, const char *&First,
553 SmallVector<char, 64> Id(First, Last);
556 Id.append(Next, Last);
561 SplitIds.try_emplace(StringRef(Id.begin(), Id.size()), 0).first->first()};
600 /// the identifier matches "Id".
601 bool Minimizer::isNextIdentifier(StringRef Id, const char *&First, argument
609 return FoundId.Name == Id;
635 IdInfo Id = lexIdentifier(First, End); local
636 First = Id
835 IdInfo Id = lexIdentifier(First, End); local
[all...]

Completed in 197 milliseconds

1234567891011>>