/dalvik/libcore/xml/src/main/java/javax/xml/parsers/ |
DocumentBuilderFactory.java | 38 private boolean whitespace = false; field in class:DocumentBuilderFactory 144 * whitespace in element content (sometimes known loosely as 145 * 'ignorable whitespace') when parsing XML documents (see XML Rec 146 * 2.10). Note that only whitespace which is directly contained within 152 * @param whitespace true if the parser created must eliminate whitespace 157 public void setIgnoringElementContentWhitespace(boolean whitespace) { 158 this.whitespace = whitespace; 227 * parsers which ignore ignorable whitespace in element content [all...] |
/external/webkit/WebKitTools/Scripts/webkitpy/style/ |
filter_unittest.py | 57 all_categories = ["tabs", "whitespace", "build/include"] 64 "+whitespace/newline", 236 path_specific = [(["Foo/"], ("+whitespace",))] 241 self.assertFalse(config.should_check("whitespace", "Fooo/bar.txt")) 242 self.assertTrue(config.should_check("whitespace", "Foo/bar.txt")) 244 self.assertTrue(config.should_check("whitespace", "FOO/bar.txt"))
|
/dalvik/libcore/security/src/main/java/org/bouncycastle/util/encoders/ |
Base64.java | 84 * decode the base 64 encoded String data - whitespace will be ignored. 107 * whitespace characters will be ignored.
|
Hex.java | 97 * decode the Hex encoded String data - whitespace will be ignored. 120 * whitespace characters will be ignored.
|
HexEncoder.java | 71 * whitespace characters will be ignored. 124 * whitespace characters will be ignored.
|
/external/icu4c/tools/genctd/ |
genctd.1.in | 41 Words begin at the beginning of a line and are terminated by the first whitespace. 42 Lines that begin with whitespace are ignored.
|
/external/webkit/WebKitTools/Scripts/webkitpy/style/processors/ |
common.py | 32 "whitespace/carriage_return", 51 "whitespace/carriage_return",
|
cpp.py | 721 error(len(lines) - 2, 'whitespace/ending_newline', 5, [all...] |
/frameworks/base/tools/aidl/ |
aidl_language.h | 10 WHITESPACE 116 // strips off the leading whitespace, the "import" text
|
/external/icu4c/common/ |
util.cpp | 149 * Skip over whitespace in a Replaceable. Whitespace is defined by 155 * whitespace, whereas the call skipWhitespace(text, limit, start), 156 * will back up limit past trailing whitespace. 159 * leading or trailing whitespace, respectively 161 * leading or trailing whitespace, respectively 192 * Parse a single non-whitespace character 'ch', optionally 193 * preceded by whitespace. 199 * @param ch the non-whitespace character to be parsed. 201 * whitespace characters [all...] |
/development/testrunner/ |
am_instrument_parser.py | 91 line = line.strip(string.whitespace) 94 key = re_result.search(line).group(1).strip(string.whitespace) 97 val = re_result.search(line).group(2).strip(string.whitespace) 107 val = re_code.search(line).group(1).strip(string.whitespace)
|
/development/tools/mkstubs/tests/com/android/mkstubs/sourcer/ |
TestHelper.java | 27 * Test source equality after normalizing all whitespace.
|
/external/clearsilver/man/man3/ |
hdf_set_valuef.3 | 41 Currently, we don't strip whitespace from the key or
|
/external/icu4c/tools/genprops/misc/ |
ucdstrip.c | 35 /* ignore whitespace before the comment */
|
/external/icu4c/tools/toolutil/ |
pkg_icu.cpp | 100 // check first non-whitespace character and 108 // take whitespace-separated items from the line 110 // find whitespace after the item or the end of the line 116 // the item is terminated by whitespace, terminate it with NUL
|
/external/webkit/LayoutTests/http/tests/appcache/ |
manifest-parsing.html | 45 // Load resources were specified with tricky whitespace.
|
/external/webkit/WebCore/editing/ |
InsertLineBreakCommand.cpp | 144 // Handle whitespace that occurs after the split 148 // Clear out all whitespace and insert one non-breaking space 151 // Deleting insignificant whitespace will remove textNode if it contains nothing but insignificant whitespace.
|
/packages/apps/Email/src/org/apache/james/mime4j/decoder/ |
QuotedPrintableInputStream.java | 75 * padding" whitespace, i.e., all whitespace that appears immediately
91 pushbackq.clear(); // discard any whitespace preceding EOF
99 pushbackq.clear(); // discard any whitespace preceding EOL
|
/cts/tools/dasm/src/dasm/ |
Scanner.java | 86 * Whitespace characters 88 protected static final String WHITESPACE = " \n\t\r"; 93 protected static final String SEPARATORS = WHITESPACE + ":=" + ","; 117 * Checks if a character code is a whitespace character 120 return (WHITESPACE.indexOf(c) != -1); 211 // interspersed with whitespace or comments) 219 case ',': // whitespace
|
/external/icu4c/tools/genrb/ |
read.c | 74 /* Skip whitespace */ 107 not a whitespace character (but may be a QUOTE or ESCAPE). This 112 non comment, non whitespace item is a string, it reads it in as 129 /* We are guaranteed on entry that initialChar is not a whitespace 256 /* DON'T skip whitespace */ 301 /* DO skip whitespace */ 316 true, whitespace is skipped as well. */
|
/external/srec/portable/src/ |
PFile.c | 201 /* Skip whitespace before token */ 221 /* locate first non-whitespace character */ 241 /* locate first whitespace character */ 275 /* Skip whitespace before token */ 295 /* locate first non-whitespace character */ 315 /* locate first whitespace character */
|
/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/ |
FastStringBuffer.java | 67 /** Manifest constant: Suppress leading whitespace. 69 * multi-chunk output, or one following unsuppressed whitespace in a previous 75 /** Manifest constant: Suppress trailing whitespace. 81 /** Manifest constant: Suppress both leading and trailing whitespace. 89 /** Manifest constant: Carry trailing whitespace of one chunk as leading 90 * whitespace of the next chunk. Used internally; I don't see any reason 816 * @return true if the specified range of characters are all whitespace, [all...] |
/build/tools/droiddoc/src/ |
Proofread.java | 25 static final Pattern WHITESPACE = Pattern.compile("\\r?\\n"); 76 Matcher m = WHITESPACE.matcher(s);
|
/dalvik/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
hc_nodelistindexnotzero.java | 38 * "strong" (no whitespace) or "#text" (with whitespace).
|
noderemovechildgetnodename.java | 34 * should have a NodeName equal to "#text" or employeeId depending on whitespace. 82 assertEquals("whitespace", "#text", childName);
|