Home
last modified time | relevance | path

Searched refs:mComment (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/core/java/android/text/util/
DRfc822Token.java24 private String mName, mAddress, mComment; field in Rfc822Token
33 mComment = comment; in Rfc822Token()
54 return mComment; in getComment()
75 mComment = comment; in setComment()
91 if (mComment != null && mComment.length() != 0) { in toString()
93 sb.append(quoteComment(mComment)); in toString()
176 if (mComment != null) result = 31 * result + mComment.hashCode(); in hashCode()
195 stringEquals(mComment, other.mComment)); in equals()
/frameworks/base/tools/aapt/
DZipFile.h182 mComment(NULL) in EndOfCentralDir()
185 delete[] mComment; in ~EndOfCentralDir()
199 unsigned char* mComment; variable
DZipFile.cpp1223 assert(mComment == NULL); in readBuf()
1252 mComment = new unsigned char[mCommentLen]; in readBuf()
1253 memcpy(mComment, buf + kEOCDLen, mCommentLen); in readBuf()
1278 assert(mComment != NULL); in write()
1279 if (fwrite(mComment, mCommentLen, 1, fp) != mCommentLen) in write()
DXMLNode.cpp732 return mComment; in getComment()
874 if (mComment.size() > 0) { in appendComment()
875 mComment.append(String16("\n")); in appendComment()
877 mComment.append(comment); in appendComment()
1050 copy->mComment = mComment; in clone()
1325 if (!stripComments && mComment.size() > 0) { in collect_strings()
1326 dest->add(mComment, true); in collect_strings()
1458 mComment.size() > 0 ? strings.offsetForString(mComment) : -1); in flatten_node()
DXMLNode.h200 String16 mComment; variable
DResourceTable.h398 const String16& getComment() const { return mComment; } in getComment()
420 String16 mComment; variable
DResourceTable.cpp3706 if (onlyIfEmpty && mComment.size() > 0) { in appendComment()
3709 if (mComment.size() > 0) { in appendComment()
3710 mComment.append(String16("\n")); in appendComment()
3712 mComment.append(comment); in appendComment()
/frameworks/rs/api/
Dgen_runtime.cpp236 vector<string> mComment; // The comments to be included in the header member in __anond36ed3310111::Specification
260 return expandStringVector(mComment, i1, i2, i3, i4, comments); in getComments()
294 vector<string> mComment; member in __anond36ed3310111::Permutation
914 spec->mComment.push_back(s); in scanSpecification()
1119 spec->getComments(i1, i2, i3, i4, &mComment); in Permutation()
1192 for (size_t ct = 0; ct < mComment.size(); ct++) { in writeHeaderSection()
1193 if (!mComment[ct].empty()) { in writeHeaderSection()
1194 file << " * " << mComment[ct] << "\n"; in writeHeaderSection()