HomeSort by relevance Sort by last modified time
    Searched refs:whitespace (Results 1 - 25 of 122) sorted by null

1 2 3 4 5

  /system/core/libcutils/
cpu_info.c 33 char* whitespace; local
52 // skip colon and whitespace
55 // truncate trailing whitespace
61 whitespace = strchr(chp, ' ');
62 if (whitespace)
63 *whitespace = 0;
64 whitespace = strchr(chp, '\t');
65 if (whitespace)
66 *whitespace = 0;
67 whitespace = strchr(chp, '\r')
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regexp/
whitespace.js 23 Filename: whitespace.js
35 writeHeaderToLog('Executing script: whitespace.js');
42 var whitespace = "\f\n\r\t\v "; variable
44 // be sure all whitespace is matched by \s
46 "'" + whitespace + "'.match(new RegExp('\\s+'))",
47 String([whitespace]), String(whitespace.match(new RegExp('\\s+'))));
49 // be sure all non-whitespace is matched by \S
54 // be sure all non-whitespace is not matched by \s
59 // be sure all whitespace is not matched by \
    [all...]
  /libcore/luni/src/main/java/javax/xml/parsers/
DocumentBuilderFactory.java 37 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...]
  /frameworks/base/tools/aidl/
aidl_language_l.l 10 // comment and whitespace handling
37 whitespace ([ \t\n\r]+)
38 brackets \[{whitespace}?\]
58 ^{whitespace}?import{whitespace}[^ \t\r\n]+{whitespace}?; {
62 ^{whitespace}?package{whitespace}[^ \t\r\n]+{whitespace}?; {
72 {whitespace} { /* begin_extra_text(yylineno, WHITESPACE)
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
gflags_reporting.cc 136 // Find the last whitespace on this 80-char line
137 int whitespace = kLineLength-chars_in_line-1; // < 80 chars/line local
138 while ( whitespace > 0 && !isspace(c_string[whitespace]) ) {
139 --whitespace;
141 if (whitespace <= 0) {
142 // Couldn't find any whitespace to make a line break. Just dump the
148 final_string += string(c_string, whitespace);
149 chars_in_line += whitespace;
150 while (isspace(c_string[whitespace])) ++whitespace
    [all...]
  /external/open-vcdiff/gflags/src/
gflags_reporting.cc 136 // Find the last whitespace on this 80-char line
137 int whitespace = kLineLength-chars_in_line-1; // < 80 chars/line local
138 while ( whitespace > 0 && !isspace(c_string[whitespace]) ) {
139 --whitespace;
141 if (whitespace <= 0) {
142 // Couldn't find any whitespace to make a line break. Just dump the
148 final_string += string(c_string, whitespace);
149 chars_in_line += whitespace;
150 while (isspace(c_string[whitespace])) ++whitespace
    [all...]
  /external/compiler-rt/lib/sanitizer_common/scripts/
check_lint.sh 24 COMMON_LINT_FILTER=-build/include,-build/header_guard,-legal/copyright,-whitespace/comments,-readability/casting,\
28 ASAN_LIT_TEST_LINT_FILTER=${ASAN_TEST_LINT_FILTER},-whitespace/line_length
31 TSAN_LIT_TEST_LINT_FILTER=${TSAN_TEST_LINT_FILTER},-whitespace/line_length
39 LLVM_LINT_FILTER=-,+whitespace
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
domconfigurationcansetparameter06.js 78 Check that canSetParameter('element-content-whitespace', true) returns true
79 and that canSetParameter('element-content-whitespace) does not change value of
106 canSetFalse = domConfig.canSetParameter("element-content-whitespace",false);
107 paramVal = domConfig.getParameter("element-content-whitespace");
113 domConfig.setParameter("element-content-whitespace", false);
116 canSet = domConfig.canSetParameter("element-content-whitespace",true);
122 paramVal = domConfig.getParameter("element-content-whitespace");
elementcontentwhitespace02.js 81 Normalize document with element-content-whitespace set to false and validation set to true, check that
82 whitespace in element content is eliminated.
86 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#parameter-element-content-whitespace
109 canSet = domConfig.canSetParameter("element-content-whitespace",false);
117 domConfig.setParameter("element-content-whitespace", false);
elementcontentwhitespace03.js 81 Normalize document using Node.normalize with element-content-whitespace set to false and validation set to true, check that
82 whitespace in element content is preserved.
86 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#parameter-element-content-whitespace
122 canSet = domConfig.canSetParameter("element-content-whitespace",false);
127 domConfig.setParameter("element-content-whitespace", false);
documentnormalizedocument10.js 84 "element-content-whitespace" feature to false. Invoke the normalizeDocument method and verify if
90 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#parameter-element-content-whitespace
120 canSet = domConfig.canSetParameter("element-content-whitespace",true);
122 domConfig.setParameter("element-content-whitespace", true);
129 canSet = domConfig.canSetParameter("element-content-whitespace",false);
134 domConfig.setParameter("element-content-whitespace", false);
elementcontentwhitespace01.js 81 Normalize document with element-content-whitespace set to true, check that
82 whitespace in element content is preserved.
86 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#parameter-element-content-whitespace
110 domConfig.setParameter("element-content-whitespace", true);
domconfigelementcontentwhitespace1.js 71 * Checks behavior of "element-content-whitespace" configuration parameter.
73 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#parameter-element-content-whitespace
87 var parameter = "eLeMent-content-whitespace";
textiselementcontentwhitespace05.js 81 Replace the whitespace before the "p" element in barfoo with non-whitespace and normalize with validation.
82 isElementContentWhitespace should be false since the node is not whitespace.
  /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)
  /external/webkit/Tools/Scripts/webkitpy/style/
filter.py 31 ["-whitespace", "+whitespace/braces"]
33 ["whitespace/tabs", "whitespace/braces"]
optparser.py 52 [whitespace/indent]. See the options section below for an option that
63 any such category. The filter input "-whitespace,+whitespace/braces" fails
64 the category "whitespace/tab" and passes "whitespace/braces".
66 Examples: --filter=-whitespace,+whitespace/braces
67 --filter=-whitespace,-runtime/printf,+runtime/printf_format
306 '"--filter -whitespace,+whitespace/braces". To display
    [all...]
  /external/libvpx/libvpx/tools/
ftfy.sh 9 This script applies a whitespace transformation to the commit at HEAD. If no
17 --commit Creates a new commit containing only the whitespace changes
60 Cosmetic: Fix whitespace in change ${LAST_CHANGEID:0:9}
  /external/v8/test/mjsunit/third_party/
string-trim.js 47 var whitespace = [
72 for (var i = 0; i < whitespace.length; i++) {
73 assertEquals(whitespace[i].s.trim(), '');
74 assertEquals(whitespace[i].s.trimLeft(), '');
75 assertEquals(whitespace[i].s.trimRight(), '');
76 wsString += whitespace[i].s;
  /external/webkit/LayoutTests/fast/url/script-tests/
mailto.js 7 // Trailing whitespace is stripped.
  /external/webkit/Source/WebCore/xml/
XMLViewer.css 54 whitespace: pre;
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-31255.js 39 * Whitespace may occur before the --> on the same line.
69 --> but only if it follows a possible whitespace after line start
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
lexer.ml 6 (* Skip any whitespace. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
lexer.ml 6 (* Skip any whitespace. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
lexer.ml 6 (* Skip any whitespace. *)

Completed in 1068 milliseconds

1 2 3 4 5