/build/tools/ |
D | merge-event-log-tags.py | 79 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 …]
|
D | java-event-log-tags.py | 66 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/ |
D | LiteralTagInfo.java | 19 private static String encode(String t) in encode() argument 21 t = t.replace("&", "&"); in encode() 22 t = t.replace("<", "<"); in encode() 23 t = t.replace(">", ">"); 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()
|
D | Proofread.java | 96 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()
|
D | TagInfo.java | 27 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()
|
D | Converter.java | 155 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 …]
|
D | Comment.java | 166 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 …]
|
D | TextTagInfo.java | 18 TextTagInfo(String n, String k, String t, SourcePositionInfo p) { in TextTagInfo() argument 19 super(n, k, DroidDoc.escape(t), p); in TextTagInfo()
|
D | AttrTagInfo.java | 124 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()
|
D | ParsedTagInfo.java | 53 TagInfo[] t = tags[i].commentTags(); in joinTags() local 54 final int M = t.length; in joinTags() 56 list.add(t[j]); in joinTags()
|
D | SinceTagger.java | 208 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()
|
D | TodoFile.java | 37 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()
|
D | Stubs.java | 82 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 …]
|
D | MethodInfo.java | 345 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()
|
D | TypeInfo.java | 226 for (TypeInfo t: params) { in typeVariables() 227 if (t.mIsTypeVariable) { in typeVariables() 228 result.add(t.mQualifiedTypeName); in typeVariables()
|
/build/core/ |
D | multi_prebuilt.mk | 46 $(foreach t,$(1), \ 53 $(eval tw := $(subst :, ,$(strip $(t)))) \ 59 $(eval LOCAL_MODULE := $(basename $(notdir $(t)))) \ 60 $(eval LOCAL_SRC_FILES := $(t)) \
|
D | armelf.xsc | 19 *(.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
|
D | proguard_tests.flags | 13 # some AllTests don't include run().
|
D | armelf.x | 23 .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.*)
|
D | proguard.flags | 13 # Don't obfuscate. We only need dead code striping. 20 # that isn't explicitly part of the API
|
/build/tools/droiddoc/templates/assets/ |
D | search_autocomplete.js | 201 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), '.');
|
D | prettify.js | 15 …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…
|
D | carousel.js | 190 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/ |
D | sampleindex.cs | 46 so don't show src links (we don't have the pages!) ?>
|
/build/tools/acp/ |
D | README | 9 - 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.
|