Home
last modified time | relevance | path

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

12

/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.java168 for (TagInfo t: c.tags()) { in tag()
169 mInlineTagsList.add(t); in tag()
191 TagInfo t = new TextTagInfo(name, name, text, pos); in tag() local
193 mInlineTagsList.add(t); in tag()
195 mTagsList.add(t); in tag()
217 TagInfo t = mInlineTagsList.get(i); in parseBriefTags() local
218 if (t.name().equals("Text")) { in parseBriefTags()
219 Matcher m = FIRST_SENTENCE.matcher(t.text()); in parseBriefTags()
222 … TagInfo firstSentenceTag = new TagInfo(t.name(), t.kind(), text, t.position()); in parseBriefTags()
227 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()
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()
714 TypeInfo t = params[i].type(); in superCtorCall() local
715 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()
522 TypeInfo t = mine[i].type(); in matchesParams() local
523 if (!t.dimension().equals(dimensions[i])) { in matchesParams()
526 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()
DSampleCode.java59 for (String t: list) { in inList()
60 if (s.endsWith(t)) { in inList()
/build/core/
Dmulti_prebuilt.mk44 $(foreach t,$(1), \
50 $(eval tw := $(subst :, ,$(strip $(t)))) \
56 $(eval LOCAL_MODULE := $(basename $(notdir $(t)))) \
57 $(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.flags6 # that isn't explicitly part of the API
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.*)
/build/tools/dexpreopt/afar/
Dmain.c120 int t; in _archive_dir() local
141 t = strlen(de->d_name); in _archive_dir()
143 memcpy(in + ilen + 1, de->d_name, t + 1); in _archive_dir()
145 _archive(in, ilen + t + 1); in _archive_dir()
/build/tools/releasetools/
Damend_generator.py139 t = 0
143 t += len(i) + 1
144 if t > 80:
147 t = 0
/build/tools/droiddoc/templates/assets/
Dcarousel.js193 var ease_right = function (t) { return (1 - Math.cos(t * Math.PI))/2.0; }; argument
196 ease = function(t) { return 1.0 - ease_right(t); }; argument
/build/tools/droiddoc/templates/
Dsampleindex.cs48 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.
/build/target/board/generic/
Dtuttle2.kcm24 T 'T' '+' 't' 'T' '+' 0x00A3
/build/target/board/emulator/
Dtuttle2.kcm24 T 'T' '+' 't' 'T' '+' 0x00A3
/build/tools/zipalign/
DREADME.txt24 Compressed data isn't very useful until it's uncompressed, so there's no

12