/external/chromium_org/v8/test/webkit/ |
string-trim-expected.txt | 29 PASS whitespace[0].s.trim() is '' 30 PASS whitespace[0].s.trimLeft() is '' 31 PASS whitespace[0].s.trimRight() is '' 32 PASS whitespace[1].s.trim() is '' 33 PASS whitespace[1].s.trimLeft() is '' 34 PASS whitespace[1].s.trimRight() is '' 35 PASS whitespace[2].s.trim() is '' 36 PASS whitespace[2].s.trimLeft() is '' 37 PASS whitespace[2].s.trimRight() is '' 38 PASS whitespace[3].s.trim() is ' [all...] |
/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/chromium_org/content/test/data/accessibility/ |
em-expected-android.txt | 1 #<skip - whitespace error
|
span-expected-android.txt | 1 #<skip - whitespace error
|
wbr-expected-android.txt | 1 #<skip - whitespace error
|
br-expected-android.txt | 1 #<skip - need whitespace between lines.
|
/external/clang/test/Preprocessor/ |
first-line-indent.c | 2 // RUN: %clang_cc1 -E %s | FileCheck -strict-whitespace %s
|
macro_space.c | 1 // RUN: %clang_cc1 -E %s | FileCheck --strict-whitespace %s
|
skipping_unclean.c | 1 // RUN: %clang_cc1 -E %s | FileCheck --strict-whitespace %s
|
comment_save_macro.c | 1 // RUN: %clang_cc1 -E -C %s | FileCheck -check-prefix=CHECK-C -strict-whitespace %s 4 // RUN: %clang_cc1 -E -CC %s | FileCheck -check-prefix=CHECK-CC -strict-whitespace %s 7 // RUN: %clang_cc1 -E %s | FileCheck -check-prefix=CHECK -strict-whitespace %s
|
_Pragma-physloc.c | 1 // RUN: %clang_cc1 -E %s | FileCheck --strict-whitespace %s
|
macro_rparen_scan2.c | 1 // RUN: %clang_cc1 -E %s | FileCheck -strict-whitespace %s
|
print_line_count.c | 1 /* RUN: %clang -E -C -P %s | FileCheck --strict-whitespace %s
|
c90.c | 7 #define foo`bar /* expected-error {{whitespace required after macro name}} */ 8 #define foo2!bar /* expected-warning {{whitespace recommended after macro name}} */
|
/external/doclava/res/assets/templates/ |
yaml_navtree.cs | 5 whitespace: Whitespace to insert before any text in the structure, which helps 10 def:write_child_nodes(page,whitespace,isRoot) ?> 11 <?cs var:whitespace ?>- title: "<?cs var:page.label ?>" 12 <?cs var:whitespace ?> path: <?cs var:page.link ?><?cs 14 <?cs var:whitespace ?> section: <?cs 17 <?cs var:whitespace ?> - title: "<?cs var:child.label ?>" 18 <?cs var:whitespace ?> path: <?cs var:child.link ?><?cs 20 <?cs var:whitespace ?> section:<?cs
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/ |
python_unittest_input.py | 2 # problems, one that will generate a PEP-8 warning for trailing whitespace
|
/external/clang/test/Lexer/ |
bcpl-escaped-newline.c | 11 // Trailing whitespace!
|
token-concat.c | 1 // RUN: %clang_cc1 -E %s | FileCheck --strict-whitespace %s
|
unicode.c | 3 // RUN: FileCheck --strict-whitespace --input-file=%t %s 7 extern int x; // expected-warning {{treating Unicode character as whitespace}} 8 extern int?x; // expected-warning {{treating Unicode character as whitespace}}
|
/external/llvm/utils/lint/ |
remove_trailing_whitespace.sh | 2 # Deletes trailing whitespace in-place in the passed-in files.
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
XMLCharacterRecognizer.java | 25 * conforms to the XML 1.0 definition of whitespace. 33 * of whitespace. Refer to <A href="http://www.w3.org/TR/1998/REC-xml-19980210#NT-S"> 35 * @param ch Character to check as XML whitespace. 36 * @return =true if <var>ch</var> is XML whitespace; otherwise =false. 44 * Tell if the string is whitespace. 46 * @param ch Character array to check as XML whitespace. 50 * XML whitespace; otherwise, false. 67 * Tell if the string is whitespace. 69 * @param buf StringBuffer to check as XML whitespace. 70 * @return True if characters in buffer are XML whitespace, false otherwis [all...] |
/external/clang/test/Format/ |
style-on-command-line.cpp | 2 // RUN: clang-format -style="{BasedOnStyle: Google, IndentWidth: 8}" %t.cpp | FileCheck -strict-whitespace -check-prefix=CHECK1 %s 3 // RUN: clang-format -style="{BasedOnStyle: LLVM, IndentWidth: 7}" %t.cpp | FileCheck -strict-whitespace -check-prefix=CHECK2 %s 4 // RUN: clang-format -style="{BasedOnStyle: invalid, IndentWidth: 7}" %t.cpp 2>&1 | FileCheck -strict-whitespace -check-prefix=CHECK3 %s 5 // RUN: clang-format -style="{lsjd}" %t.cpp 2>&1 | FileCheck -strict-whitespace -check-prefix=CHECK4 %s 7 // RUN: clang-format -style=file %t.cpp 2>&1 | FileCheck -strict-whitespace -check-prefix=CHECK5 %s 9 // RUN: clang-format -style=file %t.cpp 2>&1 | FileCheck -strict-whitespace -check-prefix=CHECK6 %s
|
multiple-inputs-inplace.cpp | 4 // RUN: FileCheck -strict-whitespace -input-file=%t-1.cpp %s 5 // RUN: FileCheck -strict-whitespace -input-file=%t-2.cpp %s
|
/external/jsilver/src/com/google/clearsilver/jsilver/template/ |
HtmlWhiteSpaceStripper.java | 22 * HTML whitespace stripper to be used by JSilver. It removes leading and 23 * trailing whitespace, it reduces contiguous whitespace characters with just 24 * the first character, and removes lines of nothing but whitespace. 26 * It does not strip whitespace inside the following elements: 33 * It also strips out empty lines and leading whitespace inside HTML tags (i.e. 35 * whitespace since that is more costly to remove and tends to not be common 36 * based on how templates are created (they don't have trailing whitespace). 38 * Loadtests indicate that this class can strip whitespace almost as quickly 50 // Level of whitespace stripping to perform. (Currently not used) [all...] |
/external/clang/test/FixIt/ |
fixit-newline-style.c | 1 // RUN: %clang_cc1 -pedantic -Wunused-label -x c %s 2>&1 | FileCheck %s -strict-whitespace
|