| /openbsd/src/gnu/llvm/clang/docs/ |
| D | ItaniumMangleAbiTags.rst | 2 ABI tags 17 ABI tags are declared in an abi_tag attribute and can be applied to a 19 one or more strings (called tags); the order does not matter. 24 Tags on an inline namespace are called "implicit tags", all other tags are 25 "explicit tags". 30 All tags that are "active" on an <unqualified-name> are emitted after the 38 <abi-tags> ::= <abi-tag>* # sort by name 49 Active tags 52 A namespace does not have any active tags. For types (class / struct / union / 53 enum), the explicit tags are the active tags. [all …]
|
| /openbsd/src/gnu/usr.bin/texinfo/makeinfo/ |
| D | node.c | 1404 TAG_ENTRY *tags = tag_table; in validate_file() local 1406 while (tags) in validate_file() 1411 input_filename = tags->filename; in validate_file() 1412 line_number = tags->line_no; in validate_file() 1415 if (tags->flags & TAG_FLAG_NO_WARN) in validate_file() 1417 tags = tags->next_ent; in validate_file() 1422 if (tags->next) in validate_file() 1424 validate (tags->next, tags->line_no, _("Next")); in validate_file() 1429 temp_tag = find_node (tags->next); in validate_file() 1433 int you_lose = !prev || !STREQ (prev, tags->node); in validate_file() [all …]
|
| /openbsd/src/gnu/usr.bin/perl/lib/ |
| D | less.pm | 26 my %tags; 27 @tags{ _unpack_tags( $hinthash->{ $class->stash_name } ) } = (); 30 exists $tags{$_} and return !!1 for @_; 34 return keys %tags; 43 my %tags; 44 @tags{ _unpack_tags( @_, $^H{ $stash } ) } = (); 46 $^H{$stash} = _pack_tags( keys %tags ); 54 my %tags; 55 @tags{ _unpack_tags( $^H{$class} ) } = (); 56 delete @tags{ _unpack_tags(@_) }; [all …]
|
| /openbsd/src/gnu/llvm/lldb/source/Plugins/Process/Utility/ |
| D | MemoryTagManagerAArch64MTE.cpp | 218 MemoryTagManagerAArch64MTE::UnpackTagsData(const std::vector<uint8_t> &tags, in UnpackTagsData() argument 222 size_t num_tags = tags.size() / GetTagSizeInBytes(); in UnpackTagsData() 235 unpacked.reserve(tags.size()); in UnpackTagsData() 236 for (auto it = tags.begin(); it != tags.end(); ++it) { in UnpackTagsData() 296 std::vector<lldb::addr_t> tags; in UnpackTagsFromCoreFileSegment() local 297 tags.reserve(2 * tag_data.size()); in UnpackTagsFromCoreFileSegment() 301 tags.push_back(tag_byte & 0xf); in UnpackTagsFromCoreFileSegment() 302 tags.push_back(tag_byte >> 4); in UnpackTagsFromCoreFileSegment() 307 tags.erase(tags.begin()); in UnpackTagsFromCoreFileSegment() 310 tags.pop_back(); in UnpackTagsFromCoreFileSegment() [all …]
|
| /openbsd/src/lib/libc/ |
| D | Makefile | 10 CLEANFILES+=tags Symbols.map 29 all: tags 30 tags: ${SRCS} target 35 >> tags; sort -o tags tags 38 ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 tags \ 39 ${DESTDIR}/var/db/lib${LIB}.tags
|
| /openbsd/src/gnu/llvm/llvm/utils/TableGen/ |
| D | tdtags | 27 -a Append the tags to an existing tags file. 28 -f <file> Write tags to the specified file (defaults to 'tags'). 30 -x <recipe> Generate tags file(s) for a common use case: 45 - Generate a tags file for each specified LLVM code generator 60 With the '-x' option, $SELF produces one or more tags files for a 67 -a Append newly generated tags to those already in an existing 68 tags file. Without ths option, any and all existing tags are 69 replaced. NOTE: When building a mixed tags file, using ${SELF} 70 for tblgen tags and ctags(1) for other languages, it is best 73 -f <file> Use the name <file> for the tags file, rather than the default [all …]
|
| /openbsd/src/gnu/usr.bin/binutils/gdb/rdi-share/ |
| D | Makefile.in | 168 tags: TAGS 175 tags=; \ 181 test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \ 182 || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags $$unique $(LISP) -o $$here/TAGS) 184 mostlyclean-tags: 186 clean-tags: 188 distclean-tags: 191 maintainer-clean-tags: 268 mostlyclean-tags mostlyclean-generic 270 clean: clean-noinstLIBRARIES clean-compile clean-tags clean-generic \ [all …]
|
| /openbsd/src/gnu/usr.bin/cvs/windows-NT/ |
| D | Makefile.in | 203 tags-recursive: 205 test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ 208 tags: TAGS 219 TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ 221 tags=; \ 225 test -f $$subdir/TAGS && tags="$$tags $(ETAGS_INCLUDE_OPTION)$$here/$$subdir/TAGS"; \ 234 test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \ 235 || $(ETAGS) $(ETAGS_ARGS) $$tags $$unique $(LISP) 242 distclean-tags: 314 distclean-am: clean-am distclean-generic distclean-tags [all …]
|
| /openbsd/src/gnu/lib/libstdc++/libstdc++/libmath/ |
| D | Makefile.in | 259 tags: TAGS 270 tags=; \ 276 test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \ 277 || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags $$unique $(LISP) -o $$here/TAGS) 279 mostlyclean-tags: 281 clean-tags: 283 distclean-tags: 286 maintainer-clean-tags: 341 mostlyclean-libtool mostlyclean-tags \ 347 clean-tags clean-generic mostlyclean-am [all …]
|
| /openbsd/src/sys/arch/i386/ |
| D | Makefile | 11 TAGS= ${.CURDIR}/tags 25 tags:: target 46 (cd $$i && rm -f tags; ln -s tags tags); done
|
| /openbsd/src/sys/arch/hppa/ |
| D | Makefile | 11 TAGS= ${.CURDIR}/tags 25 tags:: target 46 (cd $$i && rm -f tags; ln -s tags tags); done
|
| /openbsd/src/sys/arch/riscv64/ |
| D | Makefile | 11 TAGS= ${.CURDIR}/tags 25 tags:: target 46 (cd $$i && rm -f tags; ln -s tags tags); done
|
| /openbsd/src/sys/arch/alpha/ |
| D | Makefile | 11 TAGS= ${.CURDIR}/tags 25 tags:: target 46 (cd $$i && rm -f tags; ln -s tags tags); done
|
| /openbsd/src/sys/arch/loongson/ |
| D | Makefile | 11 TAGS= ${.CURDIR}/tags 25 tags:: target 46 (cd $$i && rm -f tags; ln -s tags tags); done
|
| /openbsd/src/sys/arch/octeon/ |
| D | Makefile | 11 TAGS= ${.CURDIR}/tags 25 tags:: target 46 (cd $$i && rm -f tags; ln -s tags tags); done
|
| /openbsd/src/sys/arch/armv7/ |
| D | Makefile | 11 TAGS= ${.CURDIR}/tags 25 tags:: target 46 (cd $$i && rm -f tags; ln -s tags tags); done
|
| /openbsd/src/sys/arch/macppc/ |
| D | Makefile | 11 TAGS= ${.CURDIR}/tags 25 tags:: target 46 (cd $$i && rm -f tags; ln -s tags tags); done
|
| /openbsd/src/sys/arch/landisk/ |
| D | Makefile | 11 TAGS= ${.CURDIR}/tags 25 tags:: target 46 (cd $$i && rm -f tags; ln -s tags tags); done
|
| /openbsd/src/sys/arch/powerpc64/ |
| D | Makefile | 12 TAGS= ${.CURDIR}/tags 26 tags:: target 47 (cd $$i && rm -f tags; ln -s tags tags); done
|
| /openbsd/src/sys/arch/sparc64/ |
| D | Makefile | 11 TAGS= ${.CURDIR}/tags 25 tags:: target 46 (cd $$i && rm -f tags; ln -s tags tags); done
|
| /openbsd/src/sys/arch/arm64/ |
| D | Makefile | 11 TAGS= ${.CURDIR}/tags 25 tags:: target 46 (cd $$i && rm -f tags; ln -s tags tags); done
|
| /openbsd/src/sys/arch/amd64/ |
| D | Makefile | 11 TAGS= ${.CURDIR}/tags 25 tags:: target 46 (cd $$i && rm -f tags; ln -s tags tags); done
|
| /openbsd/src/sys/arch/luna88k/ |
| D | Makefile | 11 TAGS= ${.CURDIR}/tags 25 tags:: target 46 (cd $$i && rm -f tags; ln -s tags tags); done
|
| /openbsd/src/gnu/lib/libstdc++/libstdc++/libio/ |
| D | Makefile.in | 294 tags: TAGS 305 tags=; \ 311 test -z "$(ETAGS_ARGS)$$unique$(LISP)$$tags" \ 312 || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags $$unique $(LISP) -o $$here/TAGS) 314 mostlyclean-tags: 316 clean-tags: 318 distclean-tags: 321 maintainer-clean-tags: 376 mostlyclean-libtool mostlyclean-tags \ 382 clean-tags clean-generic mostlyclean-am [all …]
|
| /openbsd/src/gnu/llvm/lldb/source/Target/ |
| D | MemoryTagMap.cpp | 20 const std::vector<lldb::addr_t> tags) { in InsertTags() argument 23 for (auto tag : tags) { in InsertTags() 38 std::vector<std::optional<lldb::addr_t>> tags; in GetTags() local 46 tags.push_back(tag); in GetTags() 54 return tags; in GetTags()
|