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

<<11121314151617181920>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
header.py 42 (?=[ \t]|$) # whitespace or the end of the string
45 # Field name regexp, including trailing colon, but not separating whitespace,
171 continuation_ws must be RFC 2822 compliant folding whitespace (usually
199 # columns of the continuation whitespace prefix.
369 # Don't add more folding whitespace than necessary
427 # Ignore any leading whitespace (i.e. continuation whitespace) already
437 # whitespace.
447 # Now split the line on the character plus trailing whitespace
472 # splitting on whitespace, try to recursively split this lin
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
header.py 42 (?=[ \t]|$) # whitespace or the end of the string
45 # Field name regexp, including trailing colon, but not separating whitespace,
171 continuation_ws must be RFC 2822 compliant folding whitespace (usually
199 # columns of the continuation whitespace prefix.
369 # Don't add more folding whitespace than necessary
427 # Ignore any leading whitespace (i.e. continuation whitespace) already
437 # whitespace.
447 # Now split the line on the character plus trailing whitespace
472 # splitting on whitespace, try to recursively split this lin
    [all...]
  /external/openssh/
hostfile.c 152 * pointer over the key. Skips any whitespace at the beginning and at end.
160 /* Skip leading whitespace. */
167 /* Skip trailing whitespace. */
204 /* Markers are terminated by whitespace */
220 /* Skip past marker and any whitespace that follows it */
256 /* Skip any leading whitespace, comments and empty lines. */
291 * whitespace. Ignore badly formatted lines.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidXmlAutoEditStrategy.java 180 // However, if you're editing in leading whitespace (e.g. you press
185 // whitespace on the current line such that if we have
244 // See if there is whitespace on the insert line that
258 // Is there just whitespace left of this text tag
302 * Returns the offset of the start of the line (which might be whitespace)
316 * Finds the first non-whitespace character on the given line
322 * @return the offset of the first non whitespace character, or the maximum position,
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
ecmalintrules.py 319 if token.previous and token.previous.type == Type.WHITESPACE:
329 Type.WHITESPACE, Type.SEMICOLON, Type.END_PAREN):
356 elif token.previous and token.previous.type == Type.WHITESPACE:
369 if (token.previous and token.previous.type == Type.WHITESPACE and
384 elif type == Type.WHITESPACE:
389 'Illegal tab in whitespace before "%s"' % token.next.string,
393 'Illegal tab in whitespace',
397 'Illegal tab in whitespace after "%s"' % token.previous.string,
400 # Check whitespace length if it's not the first token of the line and
403 # Check for extra whitespace at the end of a line
    [all...]
  /external/chromium_org/third_party/closure_linter/closure_linter/
ecmalintrules.py 319 if token.previous and token.previous.type == Type.WHITESPACE:
329 Type.WHITESPACE, Type.SEMICOLON, Type.END_PAREN):
356 elif token.previous and token.previous.type == Type.WHITESPACE:
369 if (token.previous and token.previous.type == Type.WHITESPACE and
384 elif type == Type.WHITESPACE:
389 'Illegal tab in whitespace before "%s"' % token.next.string,
393 'Illegal tab in whitespace',
397 'Illegal tab in whitespace after "%s"' % token.previous.string,
400 # Check whitespace length if it's not the first token of the line and
403 # Check for extra whitespace at the end of a line
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
pep8.py 39 200 whitespace
116 WHITESPACE = ' \t'
168 JCR: Trailing whitespace is superfluous.
178 return len(stripped), "W291 trailing whitespace"
263 Avoid extraneous whitespace in the following situations:
285 return found + 1, "E201 whitespace after '%s'" % char
289 return found, "E202 whitespace before '%s'" % char
293 return found, "E203 whitespace before '%s'" % char
298 JCR: Each comma, semicolon or colon should be followed by whitespace.
312 if char in ',;:' and line[index + 1] not in WHITESPACE
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
cpp.py     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/line/
BreakingContextInlineHeaders.h 143 inline void TrailingObjects::setTrailingWhitespace(RenderText* whitespace)
145 ASSERT(whitespace);
146 m_whitespace = whitespace;
321 || (whitespacePosition == TrailingWhitespace && style->whiteSpace() == PRE_WRAP && (!lineInfo.isEmpty() || !lineInfo.previousLineBrokeCleanly()));
339 // ignorable whitespace should should also have line boxes.
401 m_currWS = m_current.object()->isReplaced() ? m_current.object()->parent()->style()->whiteSpace() : m_currentStyle->whiteSpace();
402 m_lastWS = m_lastObject->isReplaced() ? m_lastObject->parent()->style()->whiteSpace() : m_lastObject->style()->whiteSpace();
414 // Clear out our character space bool, since inline <pre>s don't collapse whitespace
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
Splitter.java 52 * or that you wish to trim whitespace. If you want features like these, simply
85 * behavior of using five particular whitespace characters as separators, like
275 * CharMatcher#WHITESPACE whitespace} from each returned substring; equivalent
276 * to {@code trimResults(CharMatcher.WHITESPACE)}. For example, {@code
284 return trimResults(CharMatcher.WHITESPACE);
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/base/
Splitter.java 52 * or that you wish to trim whitespace. If you want features like these, simply
85 * behavior of using five particular whitespace characters as separators, like
298 * CharMatcher#WHITESPACE whitespace} from each returned substring; equivalent
299 * to {@code trimResults(CharMatcher.WHITESPACE)}. For example, {@code
306 return trimResults(CharMatcher.WHITESPACE);
CharMatcher.java 58 * Determines whether a character is whitespace according to the latest
62 * of several definitions of "whitespace" at
68 public static final CharMatcher WHITESPACE =
73 * Determines whether a character is a breaking whitespace (that is,
74 * a whitespace which can be interpreted as a break between words
75 * for formatting purposes). See {@link #WHITESPACE} for a discussion
110 * Determines whether a character is whitespace according to {@link
112 * to use {@link #WHITESPACE}. See a comparison of several definitions of
113 * "whitespace" at <a href="http://go/white+space">go/white+space</a>.
228 * Determines whether a character is whitespace according to an arbitrary definition used b
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
Splitter.java 52 * or that you wish to trim whitespace. If you want features like these, simply
85 * behavior of using five particular whitespace characters as separators, like
298 * CharMatcher#WHITESPACE whitespace} from each returned substring; equivalent
299 * to {@code trimResults(CharMatcher.WHITESPACE)}. For example, {@code
306 return trimResults(CharMatcher.WHITESPACE);
CharMatcher.java 58 * Determines whether a character is whitespace according to the latest
62 * of several definitions of "whitespace" at
68 public static final CharMatcher WHITESPACE =
73 * Determines whether a character is a breaking whitespace (that is,
74 * a whitespace which can be interpreted as a break between words
75 * for formatting purposes). See {@link #WHITESPACE} for a discussion
110 * Determines whether a character is whitespace according to {@link
112 * to use {@link #WHITESPACE}. See a comparison of several definitions of
113 * "whitespace" at <a href="http://go/white+space">go/white+space</a>.
228 * Determines whether a character is whitespace according to an arbitrary definition used b
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemUse.java 55 * attribute is a whitespace-separated list of names of attribute
79 * attribute is a whitespace-separated list of names of attribute
97 * attribute is a whitespace-separated list of names of attribute
  /external/chromium/chrome/browser/autocomplete/
keyword_provider_unittest.cc 90 // Check that tokenization only collapses whitespace between first tokens,
135 // Check that tokenization only collapses whitespace between first tokens
162 // Check that tokenization only collapses whitespace between first tokens
  /external/chromium_org/ppapi/native_client/src/trusted/plugin/
nacl_http_response_headers_unittest.cc 43 // Test both (strong) ETag and Last-Modified, with some whitespace.
73 // Keys w/ leading whitespace are invalid.
134 // Test with extra whitespace, in the values.
  /external/chromium_org/tools/grit/grit/
grd_reader.py 103 def ignorableWhitespace(self, whitespace):
132 def ignorableWhitespace(self, whitespace):
133 self.parent.ignorableWhitespace(whitespace)
  /external/chromium_org/ui/views/controls/
styled_label.cc 171 // Don't put whitespace at beginning of a line with an exception for the
172 // first line (so the text's leading whitespace is respected).
203 // If x is 0, first line may have leading whitespace that doesn't fit in a
  /external/chromium_org/v8/src/
scanner.cc 58 // Skip initial whitespace allowing HTML comment ends just like
265 // We treat byte-order marks (BOMs) as whitespace for better
278 // line (with only whitespace in front of it), we treat the rest
313 return Token::WHITESPACE;
330 // consume the '/' and insert a whitespace. This way all
331 // multi-line comments are treated as whitespace.
334 return Token::WHITESPACE;
369 token = Token::WHITESPACE;
375 token = Token::WHITESPACE;
580 token = Token::WHITESPACE;
    [all...]
  /external/clang/include/clang/Basic/
CharInfo.h 67 /// Returns true if this character is horizontal ASCII whitespace:
76 /// Returns true if this character is vertical ASCII whitespace: '\\n', '\\r'.
84 /// Return true if this character is horizontal or vertical ASCII whitespace:
  /external/jsilver/src/com/google/streamhtmlparser/util/
JavascriptTokenBuffer.java 38 * <li> Repeated whitespace is folded into just one character to
88 * to the buffer. Sequences of whitespace and newlines
105 * Appends a character to the buffer. We fold sequences of whitespace and
  /external/v8/src/
scanner.cc 53 // Skip initial whitespace allowing HTML comment ends just like
260 // We treat byte-order marks (BOMs) as whitespace for better
273 // line (with only whitespace in front of it), we treat the rest
308 return Token::WHITESPACE;
325 // consume the '/' and insert a whitespace. This way all
326 // multi-line comments are treated as whitespace.
329 return Token::WHITESPACE;
364 token = Token::WHITESPACE;
370 token = Token::WHITESPACE;
575 token = Token::WHITESPACE;
    [all...]
  /libcore/luni/src/main/java/java/util/
ServiceLoader.java 35 * Whitespace is ignored, and {@code #} is used to begin a comment that continues to the
37 * Lines that are empty after comment removal and whitespace trimming are ignored.
227 // Strip comments and whitespace...
  /libcore/luni/src/main/java/org/w3c/dom/
Text.java 63 * element content whitespace</a>, often abusively called "ignorable whitespace". The text node is
64 * determined to contain whitespace in element content during the load

Completed in 1541 milliseconds

<<11121314151617181920>>