Searched defs:tags (Results 1 - 25 of 118) sorted by relevance

12345

/external/doclava/src/com/google/doclava/
H A DInheritedTags.java20 TagInfo[] tags(); method in interface:InheritedTags
H A DSeeTagInfo.java79 public static void makeHDF(Data data, String base, SeeTagInfo[] tags) { argument
81 for (SeeTagInfo tag : tags) {
H A DThrowsTagInfo.java71 public static void makeHDF(Data data, String base, ThrowsTagInfo[] tags) { argument
72 for (int i = 0; i < tags.length; i++) {
73 TagInfo.makeHDF(data, base + '.' + i + ".comment", tags[i].commentTags());
74 if (tags[i].exceptionType() != null) {
75 tags[i].exceptionType().makeHDF(data, base + "." + i + ".type");
H A DAndroidAuxSource.java35 ArrayList<TagInfo> tags = new ArrayList<>();
72 tags.add(new AuxTagInfo("@service", "@service", SourcePositionInfo.UNKNOWN, args,
76 auxTags(TYPE_CLASS, clazz.annotations(), toString(clazz.inlineTags()), tags);
77 return tags.toArray(TagInfo.getArray(tags.size()));
89 return auxTags(TYPE_METHOD, method.annotations(), toString(method.inlineTags().tags()));
102 return auxTags(TYPE_RETURN, method.annotations(), toString(method.returnTags().tags()));
107 ArrayList<TagInfo> tags = new ArrayList<>();
108 auxTags(type, annotations, comment, tags);
109 return tags
112 auxTags(int type, List<AnnotationInstanceInfo> annotations, String[] comment, ArrayList<TagInfo> tags) argument
309 toString(TagInfo[] tags) argument
[all...]
H A DAndroidLinter.java27 lintCommon(field.position(), field.comment().tags());
29 for (TagInfo tag : field.comment().tags()) {
70 lintCommon(method.position(), method.comment().tags());
71 lintCommon(method.position(), method.returnTags().tags());
73 for (TagInfo tag : method.comment().tags()) {
115 method.annotations(), method.returnTags().tags());
129 List<AnnotationInstanceInfo> annotations, TagInfo... tags) {
131 for (TagInfo tag : tags) {
162 private static void lintCommon(SourcePositionInfo pos, TagInfo... tags) { argument
163 for (TagInfo tag : tags) {
128 lintVariable(SourcePositionInfo pos, String ident, TypeInfo type, List<AnnotationInstanceInfo> annotations, TagInfo... tags) argument
[all...]
H A DParamTagInfo.java95 public static void makeHDF(Data data, String base, ParamTagInfo[] tags) { argument
96 for (int i = 0; i < tags.length; i++) {
98 if (!"".equals(tags[i].parameterComment())) {
99 tags[i].makeHDF(data, base + "." + i);
H A DParsedTagInfo.java43 return mComment.tags();
56 public static <T extends ParsedTagInfo> TagInfo[] joinTags(T[] tags) { argument
58 final int N = tags.length;
60 TagInfo[] t = tags[i].commentTags();
/external/ltp/pan/
H A Dltp-scanner.c117 * - The top-level keys are named after the RTS or pan test tags.
139 SYM tags; /* tag data */ local
165 tags = sym_open(0, 0, 0);
167 scanner(tags);
170 sym_dump_s(tags, 0);
172 reporter(tags);
/external/libunwind/doc/
H A Dlibunwind-dynamic.tex296 Section ``Operation tags'' below.
321 \subsection{Operations tags}
323 The possible operation tags are defined by enumeration type
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
H A DDescriptor.java36 int[] tags(); method in interface:Descriptor
/external/python/cpython2/Tools/scripts/
H A Dptags.py5 # Create a tags file for Python programs, usable with vi.
11 # No warnings about duplicate tags.
15 tags = [] # Modified global variable! variable
21 if tags:
22 fp = open('tags', 'w')
23 tags.sort()
24 for s in tags: fp.write(s)
40 tags.append(s)
50 tags.append(s)
/external/python/cpython3/Tools/scripts/
H A Dptags.py5 # Create a tags file for Python programs, usable with vi.
11 # No warnings about duplicate tags.
15 tags = [] # Modified global variable! variable
21 if tags:
22 fp = open('tags', 'w')
23 tags.sort()
24 for s in tags: fp.write(s)
40 tags.append(s)
50 tags.append(s)
/external/sfntly/cpp/src/sfntly/tools/subsetter/
H A Dtable_subsetter_impl.cc21 TableSubsetterImpl::TableSubsetterImpl(const int32_t* tags, argument
24 tags_.insert(tags[i]);
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/parser/
H A DVersionTagsTuple.java27 private Map<String, String> tags; field in class:VersionTagsTuple
29 public VersionTagsTuple(Version version, Map<String, String> tags) { argument
31 this.tags = tags;
39 return tags;
44 return String.format("VersionTagsTuple<%s, %s>", version, tags);
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
H A DICUTagletAdapter.java28 public abstract String toString(Tag[] tags); argument
47 Tag[] tags = holder.tags(getName());
48 if (tags.length == 0) {
53 String encodedText = toString(tags[0]);
/external/icu/icu4j/tools/build/src-pre8/com/ibm/icu/dev/tool/docs/
H A DICUTagletAdapter.java27 public abstract String toString(Tag[] tags); argument
41 Tag[] tags = holder.tags(getName());
42 if (tags.length == 0) {
45 out.setOutput(toString(tags[0]));
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
H A DOpenTypeTagBuilder.java217 private static void dumpTags(String enumName, String[] tags) argument
221 for (int i = 0; i < tags.length; i += 1) {
222 String tag = tags[i];
226 (i == tags.length - 1? " " : ",") + " /* '" + tag + "' */");
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/processors/
H A DRemoveJavaDocTags.java29 * Remove the specified JavaDoc tags from the AST. Assumes the Javadoc is well-formed.
35 public RemoveJavaDocTags(String... tags) { argument
37 for (String tag : tags) {
45 for (TagElement tagElement : (List<TagElement>) javadoc.tags()) {
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/events/
H A DDocumentStartEvent.java32 private final Map<String, String> tags; field in class:DocumentStartEvent
35 Map<String, String> tags) {
40 // if (tags == null) {
43 this.tags = tags;
69 return tags;
34 DocumentStartEvent(Mark startMark, Mark endMark, boolean explicit, Version version, Map<String, String> tags) argument
/external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/
H A DSavedModelBundle.java35 * @param tags the tags identifying the specific metagraphdef to load.
38 public static SavedModelBundle load(String exportDir, String... tags) { argument
39 return load(exportDir, tags, null);
98 private static native SavedModelBundle load(String exportDir, String[] tags, byte[] runOptions); argument
/external/v8/tools/
H A Dv8-info.sh70 -u Print a link to all SVN revisions between two V8 revision tags.
75 tags() { function
88 tags | grep "svn/tags/$1$" | tag_revision
100 tags | grep svn/tags/$1 | while read tag; do
/external/chromium-trace/catapult/common/py_utils/py_utils/
H A Dexpectations_parser.py19 conditions: List of tags indicating which conditions to disable for.
66 # tags: Mac Mac10.10 Mac10.11
67 # tags: Win Win8
73 TAG_TOKEN = '# tags:'
91 # Expectations must be after all tags are declared.
101 def _ParseExpectationLine(self, line_number, line, tags):
112 if c not in tags:
123 def tags(self): member in class:TestExpectationParser
/external/freetype/src/tools/ftfuzzer/
H A Drasterfuzzer.cc77 // we use the input data for both points and tags
85 char* tags = reinterpret_cast<char*>( local
117 tags, // tags
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/
H A DSource.java55 private final Map<String, Integer> tags = new HashMap<String, Integer>(); field in class:Source
76 if (tags.put(tag, Integer.valueOf(lines.size())) != null) {
112 final Integer nr = tags.get(tag);
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DUse.cpp93 static const PrevPtrTag tags[20] = { fullStopTag, oneDigitTag, stopTag, local
101 new(Stop) Use(tags[Done++]);

Completed in 728 milliseconds

12345