Home
last modified time | relevance | path

Searched refs:t (Results 1 – 25 of 43) sorted by relevance

12

/build/tools/
Dmerge-event-log-tags.py79 for t in event_log_tags.TagFile(pre_merged_file).tags:
80 pre_merged_tags[t.tagname] = t
85 for t in tagfile.tags:
86 tagnum = t.tagnum
87 tagname = t.tagname
88 description = t.description
90 if t.tagname in by_tagname:
91 orig = by_tagname[t.tagname]
95 orig.tagnum = t.tagnum
96 elif t.tagnum is None:
[all …]
Djava-event-log-tags.py66 merged_by_name = dict([(t.tagname, t) for t in merged_tagfile.tags])
67 for t in tagfile.tags:
68 if t.tagnum is None:
69 if t.tagname in merged_by_name:
70 t.tagnum = merged_by_name[t.tagname].tagnum
76 t.tagnum = 999999
106 for t in tagfile.tags:
107 if t.description:
108 buffer.write("\n /** %d %s %s */\n" % (t.tagnum, t.tagname, t.description))
110 buffer.write("\n /** %d %s */\n" % (t.tagnum, t.tagname))
[all …]
/build/tools/droiddoc/src/
DLiteralTagInfo.java19 private static String encode(String t) in encode() argument
21 t = t.replace("&", "&"); in encode()
22 t = t.replace("<", "&lt;"); in encode()
23 t = t.replace(">", "&gt;"); in encode()
24 return t; in encode()
27 public LiteralTagInfo(String n, String k, String t, SourcePositionInfo sp) in LiteralTagInfo() argument
29 super("Text", "Text", encode(t), sp); in LiteralTagInfo()
DProofread.java96 for (TagInfo t: tags) { in writeTagList()
97 String k = t.kind(); in writeTagList()
98 if ("Text".equals(t.name())) { in writeTagList()
99 writeIndented(t.text()); in writeTagList()
105 SeeTagInfo see = (SeeTagInfo)t; in writeTagList()
113 writeIndented(t.text()); in writeTagList()
116 writeIndented(t.text()); in writeTagList()
119 writeIndented("{" + (t.name() != null ? t.name() : "") + "/" + in writeTagList()
120 t.text() + "}"); in writeTagList()
DTagInfo.java27 TagInfo(String n, String k, String t, SourcePositionInfo sp) in TagInfo() argument
30 mText = t; in TagInfo()
84 TagInfo t = tags[i]; in makeHDF() local
85 if (inherited != null && t.name().equals("@inheritDoc")) { in makeHDF()
89 if (t.name().equals("@inheritDoc")) { in makeHDF()
90 Errors.error(Errors.BAD_INHERITDOC, t.mPosition, in makeHDF()
93 t.makeHDF(data, base + "." + j); in makeHDF()
DConverter.java155 Tag t = tags[i]; in convertTags() local
160 if (t instanceof SeeTag) { in convertTags()
161 out[i] = Converter.convertSeeTag((SeeTag)t, base); in convertTags()
163 else if (t instanceof ThrowsTag) { in convertTags()
164 out[i] = Converter.convertThrowsTag((ThrowsTag)t, base); in convertTags()
166 else if (t instanceof ParamTag) { in convertTags()
167 out[i] = Converter.convertParamTag((ParamTag)t, base); in convertTags()
170 out[i] = Converter.convertTag(t); in convertTags()
522 Type t = (Type)o;
524 if (t instanceof ClassDoc) {
[all …]
DComment.java166 for (TagInfo t: c.tags()) { in tag()
167 mInlineTagsList.add(t); in tag()
192 TagInfo t = new TextTagInfo(name, name, text, pos); in tag() local
194 mInlineTagsList.add(t); in tag()
196 mTagsList.add(t); in tag()
218 TagInfo t = mInlineTagsList.get(i); in parseBriefTags() local
219 if (t.name().equals("Text")) { in parseBriefTags()
220 Matcher m = FIRST_SENTENCE.matcher(t.text()); in parseBriefTags()
223 … TagInfo firstSentenceTag = new TagInfo(t.name(), t.kind(), text, t.position()); in parseBriefTags()
228 mBriefTagsList.add(t); in parseBriefTags()
[all …]
DTextTagInfo.java18 TextTagInfo(String n, String k, String t, SourcePositionInfo p) { in TextTagInfo() argument
19 super(n, k, DroidDoc.escape(t), p); in TextTagInfo()
DAttrTagInfo.java124 for (AttrTagInfo t: tags) { in makeReferenceHDF()
125 if (REF_COMMAND.equals(t.mCommand)) { in makeReferenceHDF()
126 if (t.mAttrInfo == null) { in makeReferenceHDF()
127 String msg = "ERROR: unlinked attr: " + t.mRefField.name(); in makeReferenceHDF()
134 data.setValue(base + "." + i + ".name", t.mAttrInfo.name()); in makeReferenceHDF()
135 data.setValue(base + "." + i + ".href", t.mAttrInfo.htmlPage()); in makeReferenceHDF()
DParsedTagInfo.java53 TagInfo[] t = tags[i].commentTags(); in joinTags() local
54 final int M = t.length; in joinTags()
56 list.add(t[j]); in joinTags()
DSinceTagger.java208 for (T t : all) { in missingVersions()
210 if (t.getSince() != null in missingVersions()
211 || t.isHidden() in missingVersions()
212 || !checkLevelRecursive(t.realContainingClass())) { in missingVersions()
219 result.add(t); in missingVersions()
DTodoFile.java37 for (TagInfo t: tags) { in areTagsUseful()
38 if ("Text".equals(t.name()) && t.text().trim().length() != 0) { in areTagsUseful()
41 if ("@inheritDoc".equals(t.name())) { in areTagsUseful()
DStubs.java82 TypeInfo t = p.type(); in writeStubs() local
83 if (!t.isPrimitive()) { in writeStubs()
84 if (t.asClassInfo().isHidden()) { in writeStubs()
87 + t.fullName() + " in " in writeStubs()
112 TypeInfo t = p.type(); in writeStubs() local
113 if (!t.isPrimitive()) { in writeStubs()
114 if (t.asClassInfo().isHidden()) { in writeStubs()
117 + t.fullName()); in writeStubs()
720 TypeInfo t = params[i].type(); in superCtorCall() local
721 if (t.isPrimitive() && t.dimension().equals("")) { in superCtorCall()
[all …]
DMethodInfo.java345 TypeInfo t = p.type(); in prettySignature() local
346 if (t.isPrimitive()) { in prettySignature()
347 s += t.simpleTypeName(); in prettySignature()
349 s += t.asClassInfo().name(); in prettySignature()
531 TypeInfo t = mine[i].type(); in matchesParams() local
532 if (!t.dimension().equals(dimensions[i])) { in matchesParams()
535 String qn = t.qualifiedTypeName(); in matchesParams()
DTypeInfo.java226 for (TypeInfo t: params) { in typeVariables()
227 if (t.mIsTypeVariable) { in typeVariables()
228 result.add(t.mQualifiedTypeName); in typeVariables()
/build/core/
Dmulti_prebuilt.mk46 $(foreach t,$(1), \
53 $(eval tw := $(subst :, ,$(strip $(t)))) \
59 $(eval LOCAL_MODULE := $(basename $(notdir $(t)))) \
60 $(eval LOCAL_SRC_FILES := $(t)) \
Darmelf.xsc19 *(.rel.text .rel.text.* .rel.gnu.linkonce.t.*)
34 *(.rela.text .rela.text.* .rela.gnu.linkonce.t.*)
54 *(.text .stub .text.* .gnu.linkonce.t.*)
106 doesn't matter if the user does not
108 linker won't look for a file to match a
110 doesn't matter which directory crtbegin.o
113 /* We don't want to include the .ctor section from
151 FIXME: Why do we need it? When there is no .bss section, we don't
193 /* Adding the word ABSOLUTE below, so that the _stack below won't float
Dproguard_tests.flags13 # some AllTests don't include run().
Darmelf.x23 .rel.text : { *(.rel.text .rel.text.* .rel.gnu.linkonce.t.*) }
24 .rela.text : { *(.rela.text .rela.text.* .rela.gnu.linkonce.t.*) }
54 *(.text .stub .text.* .gnu.linkonce.t.*)
Dproguard.flags13 # Don't obfuscate. We only need dead code striping.
20 # that isn't explicitly part of the API
/build/tools/droiddoc/templates/assets/
Dsearch_autocomplete.js201 var t;
202 t = _lastSearch(labelLower, partExactAlnumRE);
203 if (t >= 0) {
205 var partsAfter = _countChar(labelLower.substr(t + 1), '.');
208 t = _lastSearch(labelLower, partPrefixAlnumRE);
209 if (t >= 0) {
211 var partsAfter = _countChar(labelLower.substr(t + 1), '.');
Dprettify.js15 …f.length;e<p;++e){var t=f[e];switch(t){case Vb:case Wb:case Xb:case Yb:case Zb:case $b:case ac:cas…
16 …s;++e){var p=f[e];if(p===H)++h;else if(Q===p.charAt(0)){var t=+p.substring(1);if(t&&t<=h)k[t]=-1}}…
17 …===H){++h;if(k[h]===undefined)f[e]=dc}else if(Q===p.charAt(0))if((t=+p.substring(1))&&t<=h)f[e]=Q+…
21 …peof h===nc)p=z;else{var t=c[k.charAt(0)];if(t){e=k.match(t[1]);h=t[0]}else{for(var u=0;u<g;++u){t
Dcarousel.js190 var ease_right = function (t) { return (1 - Math.cos(t * Math.PI))/2.0; }; argument
193 ease = function(t) { return 1.0 - ease_right(t); }; argument
/build/tools/droiddoc/templates/
Dsampleindex.cs46 so don't show src links (we don't have the pages!) ?>
/build/tools/acp/
DREADME9 - Doesn't take the "-d" flag, which causes symlinks to be copied as
28 stamp is essential, so simply turning the "-p" flag off doesn't work.

12