Searched refs:Tag (Results 1 - 25 of 292) sorted by relevance

1234567891011>>

/netbsd-current/external/apache2/llvm/dist/clang/utils/TableGen/
H A DClangCommentCommandInfoEmitter.cpp31 Record &Tag = *Tags[i]; local
33 << "\"" << Tag.getValueAsString("Name") << "\", "
34 << "\"" << Tag.getValueAsString("EndCommandName") << "\", "
36 << Tag.getValueAsInt("NumArgs") << ", "
37 << Tag.getValueAsBit("IsInlineCommand") << ", "
38 << Tag.getValueAsBit("IsBlockCommand") << ", "
39 << Tag.getValueAsBit("IsBriefCommand") << ", "
40 << Tag.getValueAsBit("IsReturnsCommand") << ", "
41 << Tag.getValueAsBit("IsParamCommand") << ", "
42 << Tag
65 Record &Tag = *Tags[i]; local
119 Record &Tag = *Tags[i]; local
[all...]
H A DClangCommentHTMLTagsEmitter.cpp23 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Tag");
25 for (Record *Tag : Tags) {
26 Matches.emplace_back(std::string(Tag->getValueAsString("Spelling")),
40 std::vector<Record *> Tags = Records.getAllDerivedDefinitions("Tag");
43 for (Record *Tag : Tags) {
44 std::string Spelling = std::string(Tag->getValueAsString("Spelling"));
46 if (Tag->getValueAsBit("EndTagOptional"))
48 if (Tag->getValueAsBit("EndTagForbidden"))
H A DClangCommentHTMLNamedCharacterReferenceEmitter.cpp56 Record &Tag = **I; local
57 std::string Spelling = std::string(Tag.getValueAsString("Spelling"));
58 uint64_t CodePoint = Tag.getValueAsInt("CodePoint");
62 SrcMgr.PrintMessage(Tag.getLoc().front(),
/netbsd-current/external/gpl2/lvm2/dist/scripts/
H A Dlast_cvs_update.sh28 ## [Tag: $TAG]
53 if [[ -f $path/CVS/Tag ]];
54 then echo "Tag: " `cat $path/CVS/Tag | sed -e 's/^[NT]//'`
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DDIEHash.h74 void hashAttributes(const DIEAttrs &Attrs, dwarf::Tag Tag);
84 void hashAttribute(const DIEValue &Value, dwarf::Tag Tag);
87 void hashDIEEntry(dwarf::Attribute Attribute, dwarf::Tag Tag,
H A DDIEHash.cpp173 void DIEHash::hashDIEEntry(dwarf::Attribute Attribute, dwarf::Tag Tag, argument
175 assert(Tag != dwarf::DW_TAG_friend && "No current LLVM clients emit friend "
180 if ((Tag == dwarf::DW_TAG_pointer_type ||
181 Tag == dwarf::DW_TAG_reference_type ||
182 Tag == dwarf::DW_TAG_rvalue_reference_type ||
183 Tag == dwarf::DW_TAG_ptr_to_member_type) &&
241 void DIEHash::hashAttribute(const DIEValue &Value, dwarf::Tag Tag) { argument
259 hashDIEEntry(Attribute, Tag, Valu
329 hashAttributes(const DIEAttrs &Attrs, dwarf::Tag Tag) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Support/
H A DAutoConvert.cpp56 struct file_tag Tag; local
57 Tag.ft_ccsid = CCSID;
58 Tag.ft_txtflag = Text;
59 Tag.ft_deferred = 0;
60 Tag.ft_rsvflags = 0;
62 if (fcntl(FD, F_SETTAG, &Tag) == -1)
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DValueLattice.h79 ValueLatticeElementTy Tag : 8;
93 switch (Tag) {
146 ValueLatticeElement() : Tag(unknown), NumRangeExtensions(0) {}
151 : Tag(Other.Tag), NumRangeExtensions(0) {
152 switch (Other.Tag) {
170 : Tag(Other.Tag), NumRangeExtensions(0) {
171 switch (Other.Tag) {
186 Other.Tag
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DCTagsEmitter.cpp28 class Tag { class in namespace:__anon3024
33 Tag(const std::string &Name, const SMLoc Location) function in class:__anon3024::Tag
35 int operator<(const Tag &B) const { return *Id < *B.Id; }
67 std::vector<Tag> Tags;
71 Tags.push_back(Tag(C.first, locate(C.second.get())));
73 Tags.push_back(Tag(D.first, locate(D.second.get())));
78 for (const Tag &T : Tags)
/netbsd-current/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCheckerContext.h162 /// @param Tag The tag is used to uniquely identify the creation site. If no
167 const ProgramPointTag *Tag = nullptr) {
168 return addTransitionImpl(State ? State : getState(), false, nullptr, Tag);
177 /// @param Tag The tag to uniquely identify the creation site.
179 const ProgramPointTag *Tag = nullptr) {
180 return addTransitionImpl(State, false, Pred, Tag);
187 const ProgramPointTag *Tag = nullptr) {
188 return addTransitionImpl(State ? State : getState(), true, Pred, Tag);
193 const ProgramPointTag *Tag = nullptr) {
204 /// @param Tag Th
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/BinaryFormat/
H A DMsgPackDocumentYAML.cpp69 /// not rely on S having a lifetime beyond this call. Tag is "" or a YAML tag.
70 StringRef DocNode::fromString(StringRef S, StringRef Tag) { argument
71 if (Tag == "tag:yaml.org,2002:str")
72 Tag = "";
73 if (Tag == "!int" || Tag == "") {
81 if (Err == "" || Tag != "")
84 if (Tag == "!nil") {
88 if (Tag == "!bool" || Tag
181 input(StringRef Str, StringRef Tag, void *Ctxt, ScalarDocNode &S) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DWaymarking.h13 // A Tag of n-bits (in size) is composed as follows:
26 // A special case - if we first encounter a Tag with a Stop and a zero digit,
121 // The number of bits of a Waymarking Tag.
124 // A Tag is composed from a Mark and a Stop mask.
204 static void setWaymark(T &N, unsigned Tag) { N.setWaymark(Tag); } argument
210 static void setWaymark(T *&N, unsigned Tag) { argument
211 reinterpret_cast<uintptr_t &>(N) |= static_cast<uintptr_t>(Tag);
252 unsigned Tag = Count & Marker::Traits::MARK_MASK; local
256 Tag |
267 unsigned Tag = Count & Marker::Traits::MARK_MASK; local
306 unsigned Tag; local
[all...]
H A Dilist_node_options.h32 template <class Tag> struct ilist_tag {};
83 template <class Tag, class... Options>
84 struct extract_tag<ilist_tag<Tag>, Options...> {
85 typedef Tag type;
90 template <class Tag> struct is_valid_option<ilist_tag<Tag>> : std::true_type {};
/netbsd-current/external/apache2/llvm/dist/llvm/lib/DWARFLinker/
H A DDWARFLinkerDeclContext.cpp46 unsigned Tag = DIE.getTag(); local
52 switch (Tag) {
91 bool IsAnonymousNamespace = NameRef.empty() && Tag == dwarf::DW_TAG_namespace;
98 if (Tag != dwarf::DW_TAG_class_type && Tag != dwarf::DW_TAG_structure_type &&
99 Tag != dwarf::DW_TAG_union_type &&
100 Tag != dwarf::DW_TAG_enumeration_type && NameRef.empty())
117 if (Tag != dwarf::DW_TAG_namespace || IsAnonymousNamespace) {
145 // Strictly speaking, hashing the Tag is only necessary for a
150 // once as a struct and once as a class. Using the Tag i
[all...]
/netbsd-current/sys/arch/prep/include/
H A Dpnp.h511 /* Tag type - 0 = small; 1 = large */
531 unsigned char Tag; /* small tag = 0x0a */ member in struct:_PnP_TAG_PACKET::_S1_Pack
536 unsigned char Tag; /* small tag = 0x15 or 0x16 */ member in struct:_PnP_TAG_PACKET::_S2_Pack
544 unsigned char Tag; /* small tag = 0x1c */ member in struct:_PnP_TAG_PACKET::_S3_Pack
549 unsigned char Tag; /* small tag = 0x22 or 0x23 */ member in struct:_PnP_TAG_PACKET::_S4_Pack
561 unsigned char Tag; /* small tag = 0x2a */ member in struct:_PnP_TAG_PACKET::_S5_Pack
567 unsigned char Tag; /* small tag = 0x30 or 0x31 */ member in struct:_PnP_TAG_PACKET::_S6_Pack
575 unsigned char Tag; /* small tag = 0x38 */ member in struct:_PnP_TAG_PACKET::_S7_Pack
579 unsigned char Tag; /* small tag x47 */ member in struct:_PnP_TAG_PACKET::_S8_Pack
589 unsigned char Tag; /* smal member in struct:_PnP_TAG_PACKET::_S9_Pack
595 unsigned char Tag; /* small tag = 0x7m m = 1-7 */ member in struct:_PnP_TAG_PACKET::_S14_Pack
606 unsigned char Tag; /* small tag = 0x78 or 0x79 */ member in struct:_PnP_TAG_PACKET::_S15_Pack
611 unsigned char Tag; /* large tag = 0x81 */ member in struct:_PnP_TAG_PACKET::_L1_Pack
619 unsigned char Tag; /* large tag = 0x82 */ member in struct:_PnP_TAG_PACKET::_L2_Pack
627 unsigned char Tag; /* large tag = 0x83 */ member in struct:_PnP_TAG_PACKET::_L3_Pack
637 unsigned char Tag; /* large tag = 0x84 */ member in struct:_PnP_TAG_PACKET::_L4_Pack
652 unsigned char Tag; /* large tag = 0x85 */ member in struct:_PnP_TAG_PACKET::_L5_Pack
659 unsigned char Tag; /* large tag = 0x86 */ member in struct:_PnP_TAG_PACKET::_L6_Pack
[all...]
/netbsd-current/sys/arch/ibmnws/include/
H A Dpnp.h486 /* Tag type - 0 = small; 1 = large */
506 unsigned char Tag; /* small tag = 0x0a */ member in struct:_PnP_TAG_PACKET::_S1_Pack
511 unsigned char Tag; /* small tag = 0x15 or 0x16 */ member in struct:_PnP_TAG_PACKET::_S2_Pack
519 unsigned char Tag; /* small tag = 0x1c */ member in struct:_PnP_TAG_PACKET::_S3_Pack
524 unsigned char Tag; /* small tag = 0x22 or 0x23 */ member in struct:_PnP_TAG_PACKET::_S4_Pack
536 unsigned char Tag; /* small tag = 0x2a */ member in struct:_PnP_TAG_PACKET::_S5_Pack
542 unsigned char Tag; /* small tag = 0x30 or 0x31 */ member in struct:_PnP_TAG_PACKET::_S6_Pack
550 unsigned char Tag; /* small tag = 0x38 */ member in struct:_PnP_TAG_PACKET::_S7_Pack
554 unsigned char Tag; /* small tag x47 */ member in struct:_PnP_TAG_PACKET::_S8_Pack
564 unsigned char Tag; /* smal member in struct:_PnP_TAG_PACKET::_S9_Pack
570 unsigned char Tag; /* small tag = 0x7m m = 1-7 */ member in struct:_PnP_TAG_PACKET::_S14_Pack
581 unsigned char Tag; /* small tag = 0x78 or 0x79 */ member in struct:_PnP_TAG_PACKET::_S15_Pack
586 unsigned char Tag; /* large tag = 0x81 */ member in struct:_PnP_TAG_PACKET::_L1_Pack
594 unsigned char Tag; /* large tag = 0x82 */ member in struct:_PnP_TAG_PACKET::_L2_Pack
602 unsigned char Tag; /* large tag = 0x83 */ member in struct:_PnP_TAG_PACKET::_L3_Pack
612 unsigned char Tag; /* large tag = 0x84 */ member in struct:_PnP_TAG_PACKET::_L4_Pack
627 unsigned char Tag; /* large tag = 0x85 */ member in struct:_PnP_TAG_PACKET::_L5_Pack
634 unsigned char Tag; /* large tag = 0x86 */ member in struct:_PnP_TAG_PACKET::_L6_Pack
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeUDT.cpp22 Class(std::move(CR)), Tag(Class.getPointer()) {}
27 Union(std::move(UR)), Tag(Union.getPointer()) {}
77 return std::string(Tag->getName());
113 switch (Tag->Kind) {
131 return (Tag->Options & ClassOptions::HasConstructorOrDestructor) !=
146 return (Tag->Options & ClassOptions::HasOverloadedAssignmentOperator) !=
154 return (Tag->Options & ClassOptions::HasConversionOperator) !=
162 return (Tag->Options & ClassOptions::ContainsNestedClass) !=
170 return (Tag->Options & ClassOptions::HasOverloadedOperator) !=
180 return (Tag
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DRegisterClassInfo.h32 unsigned Tag = 0; member in struct:llvm::RegisterClassInfo::RCInfo
49 // Tag changes whenever cached information needs to be recomputed. An RCInfo
51 unsigned Tag = 0; member in class:llvm::RegisterClassInfo
78 if (Tag != RCI.Tag)
H A DLiveIntervalUnion.h61 unsigned Tag = 0; // unique tag for current contents. member in class:llvm::LiveIntervalUnion
85 unsigned getTag() const { return Tag; }
88 bool changedSince(unsigned tag) const { return tag != Tag; }
97 void clear() { Segments.clear(); ++Tag; }
120 unsigned Tag = 0; member in class:llvm::LiveIntervalUnion::Query
137 Tag = NewLiveUnion.getTag();
144 !NewLiveUnion.changedSince(Tag)) {
/netbsd-current/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/pb_ds/
H A Dpriority_queue.hpp68 * @tparam Tag Instantiating data structure type,
72 * Base is dispatched at compile time via Tag, from the following
82 typename Tag = pairing_heap_tag,
85 : public detail::container_base_dispatch<_Tv, Cmp_Fn, _Alloc, Tag>::type
90 typedef Tag container_category;
97 Tag>::type
/netbsd-current/external/gpl3/gcc/dist/libstdc++-v3/include/ext/pb_ds/
H A Dpriority_queue.hpp68 * @tparam Tag Instantiating data structure type,
72 * Base is dispatched at compile time via Tag, from the following
82 typename Tag = pairing_heap_tag,
85 : public detail::container_base_dispatch<_Tv, Cmp_Fn, _Alloc, Tag>::type
90 typedef Tag container_category;
97 Tag>::type
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64StackTaggingPreRA.cpp209 int Tag; member in struct:__anon2163::SlotWithTag
210 SlotWithTag(int FI, int Tag) : FI(FI), Tag(Tag) {} argument
212 : FI(MI.getOperand(1).getIndex()), Tag(MI.getOperand(4).getImm()) {}
214 return FI == Other.FI && Tag == Other.Tag;
225 DenseMapInfo<int>::getHashValue(V.Tag));
245 // Find the best (FI, Tag) pair to pin to offset 0.
296 LLVM_DEBUG(dbgs() << "[" << ST.FI << ":" << ST.Tag << "] us
391 int Tag = I->getOperand(4).getImm(); local
[all...]
/netbsd-current/sys/arch/emips/ebus/
H A Dac97_ebus.c40 #define STUBMATCH(_f_) ((_f_)->Tag == PMTTAG_AC97)
H A Devga_ebus.c40 #define STUBMATCH(_f_) ((_f_)->Tag == PMTTAG_VGA)
H A Dps2_ebus.c40 #define STUBMATCH(_f_) ((_f_)->Tag == PMTTAG_PS2)

Completed in 521 milliseconds

1234567891011>>