HomeSort by relevance Sort by last modified time
    Searched full:whitespace (Results 226 - 250 of 2404) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
checker_unittest.py 225 assertCheck(path, "whitespace/carriage_return")
537 base_rules = ["-whitespace", "+whitespace/tab"]
542 max_reports_per_category={"whitespace/newline": 1},
553 {"whitespace/newline": 1})
561 self.assertTrue(config.is_reportable("whitespace/tab", 3, "foo.txt"))
564 self.assertFalse(config.is_reportable("whitespace/tab", 2, "foo.txt"))
567 self.assertFalse(config.is_reportable("whitespace/line", 4, "foo.txt"))
571 config.write_style_error(category="whitespace/tab",
581 ["foo.h:100: message [whitespace/tab] [5]\n"]
    [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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
string.py 10 whitespace -- a string containing all characters considered whitespace
23 whitespace = ' \t\n\r\v\f' variable
34 printable = digits + letters + punctuation + whitespace
51 runs of whitespace characters are replaced by a single space
52 and leading and trailing whitespace are removed, otherwise
252 whitespace removed.
263 Return a copy of the string s with leading whitespace removed.
273 Return a copy of the string s with trailing whitespace removed.
287 is not specified or is None, any whitespace string is a separator
528 from strop import maketrans, lowercase, uppercase, whitespace namespace
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
string.py 10 whitespace -- a string containing all characters considered whitespace
23 whitespace = ' \t\n\r\v\f' variable
34 printable = digits + letters + punctuation + whitespace
51 runs of whitespace characters are replaced by a single space
52 and leading and trailing whitespace are removed, otherwise
252 whitespace removed.
263 Return a copy of the string s with leading whitespace removed.
273 Return a copy of the string s with trailing whitespace removed.
287 is not specified or is None, any whitespace string is a separator
528 from strop import maketrans, lowercase, uppercase, whitespace namespace
    [all...]
  /external/apache-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...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
UnbufferedTokenStream.cs 44 * You can't use this stream if you pass whitespace or other off-channel
59 /** Skip tokens on any channel but this one; this is how we skip whitespace... */
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
UnbufferedTokenStream.cs 45 * You can't use this stream if you pass whitespace or other off-channel
61 /** Skip tokens on any channel but this one; this is how we skip whitespace... */
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
UnbufferedTokenStream.java 40 * You can't use this stream if you pass whitespace or other off-channel
54 /** Skip tokens on any channel but this one; this is how we skip whitespace... */
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
Base64.java 116 * decode the base 64 encoded String data - whitespace will be ignored.
140 * whitespace characters will be ignored.
HexEncoder.java 76 * whitespace characters will be ignored.
134 * whitespace characters will be ignored.
  /external/chromium_org/chrome/browser/resources/options/chromeos/
internet_detail_ip_address_field.js 10 * should have all whitespace stripped already.
83 * whitespace and leading zeros from each of the octets so that they conform
  /external/chromium_org/chrome/tools/profile_reset/
jtl_parser.h 20 // be stripped of all comments and whitespace (except inside string literals).
27 // Removes comments from |verbose_text| and compacts it into whitespace-free
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
inet_pton.c 27 /* strtol() won't treat whitespace characters in the beginning as an error,
76 /* strtol() won't treat whitespace characters in the beginning as an error,
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
nacl_http_response_headers.cc 63 // Strip trailing whitespace from the key to normalize.
67 // Strip leading whitespace from the value to normalize.
  /external/chromium_org/third_party/WebKit/Source/core/css/
make-css-file-arrays.pl 66 # Crunch whitespace just to make it a little smaller.
68 # Could crunch further based on places where whitespace is optional.
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLOptGroupElement.cpp 129 // In WinIE, leading and trailing whitespace is ignored in options and optgroups. We match this behavior.
131 // We want to collapse our whitespace too. This will match other browsers.
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
common_unittest.py 40 _category = "whitespace/carriage_return"
106 self.assertEqual(category, 'whitespace/tab')
text_unittest.py 57 self.assertEqual('whitespace/tab', category)
61 self.assertTrue(self.had_error, '%s should have an error [whitespace/tab].' % lines)
  /external/chromium_org/third_party/icu/source/io/
ustream.cpp 81 /* ipfx should eat whitespace when ios::skipws is set */
99 /* We need to consume one byte at a time to see what is considered whitespace. */
  /external/chromium_org/tools/grit/grit/format/
android_xml_unittest.py 39 <message name="IDS_WHITESPACE" desc="A string with extra whitespace.">
68 <string name="whitespace">" How old fashioned -- she thought. "</string>
  /external/chromium_org/tools/grit/grit/tool/
xmb_unittest.py 92 # trailing whitespace (these come in via structures only, as
93 # message nodes already strip and store whitespace).
  /external/chromium_org/url/
url_parse_internal.h 33 // Strip leading whitespace and control characters.
38 // Strip trailing whitespace and control characters. We need the >i test
  /external/clang/test/Misc/
ast-dump-decl.c 1 // RUN: %clang_cc1 -triple x86_64-unknown-unknown -ast-dump -ast-dump-filter Test %s | FileCheck -check-prefix CHECK -strict-whitespace %s
2 // RUN: %clang_cc1 -triple x86_64-unknown-unknown -ast-dump %s | FileCheck -check-prefix CHECK-TU -strict-whitespace %s
  /external/clang/test/SemaObjC/
unused.m 34 // expected-note {{or insert whitespace before ':' to use 'x' as parameter name and have an empty entry in the selector}}
38 // expected-note {{or insert whitespace before ':' to use 'y' as parameter name and have an empty entry in the selector}}

Completed in 432 milliseconds

1 2 3 4 5 6 7 8 91011>>