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

1 2 3 4 5 6 7

  /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/third_party/WebKit/Source/devtools/front_end/
inspectorSyntaxHighlight.css 82 .webkit-whitespace-1::before {
86 .webkit-whitespace-2::before {
90 .webkit-whitespace-4::before {
94 .webkit-whitespace-8::before {
98 .webkit-whitespace-16::before {
102 .webkit-whitespace::before {
  /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/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
34 LSAN_LIT_TEST_LINT_FILTER=${LSAN_RTL_LINT_FILTER},-whitespace/line_length
42 LLVM_LINT_FILTER=-,+whitespace
  /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/chromium_org/v8/test/webkit/
string-trim.js 37 var whitespace = [
62 for (var i = 0; i < whitespace.length; i++) {
63 shouldBe("whitespace["+i+"].s.trim()", "''");
64 shouldBe("whitespace["+i+"].s.trimLeft()", "''");
65 shouldBe("whitespace["+i+"].s.trimRight()", "''");
66 wsString += whitespace[i].s;
regexp-negative-special-characters.js 38 test("\\s", " \\t\\f\\v\\r\\n", 0); // ASCII whitespace.
39 test("\\S", "????????", 0); // Cyrillic letters are non-whitespace...
40 test("\\s", "????????", 8); // ...and they aren't 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/chromium_org/third_party/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/chromium_org/third_party/android_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)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
text_file.py 19 leading and/or trailing whitespace. All of these are optional
41 strip from "#" to end-of-line, as well as any whitespace
44 strip leading whitespace from each line before returning it
46 strip trailing whitespace (including line terminator!) from
50 whitespace. (If both lstrip_ws and rstrip_ws are false,
51 then some lines may consist of solely whitespace: these will
55 after stripping comments and whitespace, join the following line
60 strip leading whitespace from lines that are joined to their
67 an all-whitespace line), if 'rstrip_ws' is true but 'skip_blanks' is
193 # strip the comment, strip whitespace before it, an
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
text_file.py 19 leading and/or trailing whitespace. All of these are optional
41 strip from "#" to end-of-line, as well as any whitespace
44 strip leading whitespace from each line before returning it
46 strip trailing whitespace (including line terminator!) from
50 whitespace. (If both lstrip_ws and rstrip_ws are false,
51 then some lines may consist of solely whitespace: these will
55 after stripping comments and whitespace, join the following line
60 strip leading whitespace from lines that are joined to their
67 an all-whitespace line), if 'rstrip_ws' is true but 'skip_blanks' is
193 # strip the comment, strip whitespace before it, an
    [all...]
  /external/chromium_org/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/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
61 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;
  /art/build/
Android.cpplint.mk 18 ART_CPPLINT_FILTER := --filter=-whitespace/line_length,-build/include,-readability/function,-readability/streams,-readability/todo,-runtime/references,-runtime/sizeof,-runtime/threadsafe_fn,-runtime/printf
  /external/chromium_org/build/linux/
sysroot_ld_path.sh 81 log_error_and_exit $1 contains whitespace.
  /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. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
lexer.ml 6 (* Skip any whitespace. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
lexer.ml 6 (* Skip any whitespace. *)

Completed in 479 milliseconds

1 2 3 4 5 6 7