HomeSort by relevance Sort by last modified time
    Searched full:returntext (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/
StylePropertySet.cpp 162 bool MutableStylePropertySet::removeProperty(CSSPropertyID propertyID, String* returnText)
166 if (returnText)
167 *returnText = "";
173 if (returnText)
174 *returnText = "";
178 if (returnText)
179 *returnText = propertyAt(foundPropertyIndex).value()->cssText();
StylePropertySet.h 195 bool removeProperty(CSSPropertyID, String* returnText = 0);
  /libcore/xml/src/main/java/org/kxml2/io/
KXmlParser.java 456 * @param returnText true to return the read text excluding the delimiter;
459 private String readUntil(char[] delimiter, boolean returnText)
464 if (returnText && text != null) {
472 if (start < position && returnText) {
501 if (!returnText) {
555 private String readComment(boolean returnText) throws IOException, XmlPullParserException {
559 return readUntil(END_COMMENT, returnText);
562 String commentText = readUntil(COMMENT_DOUBLE_DASH, returnText);
656 private String readQuotedId(boolean returnText) throws IOException, XmlPullParserException {
667 return readUntil(delimiter, returnText);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/
userfunctions.py 127 self.con.create_function("returntext", 0, func_returntext)
167 cur.execute("select returntext()")
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/
userfunctions.py 127 self.con.create_function("returntext", 0, func_returntext)
167 cur.execute("select returntext()")

Completed in 199 milliseconds