OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:whitespace
(Results
476 - 500
of
2404
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
tokenize.py
48
Whitespace
= r'[ \f\t]*'
50
Ignore =
Whitespace
+ any(r'\\\r?\n' +
Whitespace
) + maybe(Comment)
99
PseudoToken =
Whitespace
+ group(PseudoExtras, Number, Funny, ContStr, Name)
318
while pos < max: # measure leading
whitespace
/packages/apps/UnifiedEmail/src/com/android/mail/lib/base/
StringUtil.java
49
* A completely arbitrary selection of eight
whitespace
characters. See
51
* about
whitespace
characters.
53
* @deprecated Rewrite your code to use {@link CharMatcher#
WHITESPACE
}, or
74
*
whitespace
characters, as defined by {@link CharMatcher#
WHITESPACE
}.
76
* <p><b>Warning:</b> there are many competing definitions of "
whitespace
";
82
*
whitespace
characters only
85
return string == null || CharMatcher.
WHITESPACE
.matchesAllOf(string);
106
* non-
whitespace
character; {@code null} otherwise. See comment in {@link
107
* #isEmptyOrWhitespace} on the definition of
whitespace
[
all
...]
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
StringUtil.java
50
* A completely arbitrary selection of eight
whitespace
characters. See
52
* about
whitespace
characters.
54
* @deprecated Rewrite your code to use {@link CharMatcher#
WHITESPACE
}, or
75
*
whitespace
characters, as defined by {@link CharMatcher#
WHITESPACE
}.
77
* <p><b>Warning:</b> there are many competing definitions of "
whitespace
";
83
*
whitespace
characters only
86
return string == null || CharMatcher.
WHITESPACE
.matchesAllOf(string);
107
* non-
whitespace
character; {@code null} otherwise. See comment in {@link
108
* #isEmptyOrWhitespace} on the definition of
whitespace
[
all
...]
/external/clang/lib/Frontend/
TextDiagnostic.cpp
355
// caret has already been inserted into CaretLine so the above
whitespace
371
// because the characters up until FixItStart are all ASCII
whitespace
427
// Skip over any
whitespace
we see here; we're looking for
429
// FIXME: Detect non-ASCII
whitespace
characters too.
453
// Skip over any
whitespace
we see here; we're looking for
455
// FIXME: Detect non-ASCII
whitespace
characters too.
514
/// \brief Skip over
whitespace
in the string, starting at the given
517
/// \returns The index of the first non-
whitespace
character that is
[
all
...]
/external/openssh/
misc.c
157
/* Characters considered
whitespace
in strsep calls. */
158
#define
WHITESPACE
" \t\r\n"
173
*s = strpbrk(*s,
WHITESPACE
QUOTE "=");
184
*s += strspn(*s + 1,
WHITESPACE
) + 1;
194
/* Skip any extra
whitespace
after first token */
195
*s += strspn(*s + 1,
WHITESPACE
) + 1;
197
*s += strspn(*s + 1,
WHITESPACE
) + 1;
/libcore/luni/src/main/java/java/util/
Properties.java
259
* character ("\r", "\n", "\r\n"). If there's
whitespace
after the
260
* backslash it will just escape that
whitespace
instead of concatenating
263
* the value, and the value. The key goes up to the first
whitespace
, "=" or
265
* either one
whitespace
, one "=" or one ":" and any amount of additional
266
*
whitespace
before and after that character. The value starts with the
323
mode = IGNORE; // Ignore
whitespace
on the next line
365
mode = IGNORE; // Ignore
whitespace
on the next line
/external/clang/include/clang/Lex/
Lexer.h
61
/// ExtendedTokenMode - The lexer can optionally keep comments and
whitespace
63
///
whitespace
preservation can be useful for some clients that want to lex
66
/// When this is set to 2 it returns comments and
whitespace
. When set to 1
167
/// every character in the file, including
whitespace
and comments. This
175
///
whitespace
retention mode.
178
"Can only retain
whitespace
in raw mode or -traditional-cpp");
193
"Can't play with comment retention state when retaining
whitespace
");
199
/// produces comment and
whitespace
tokens.
414
/// the given location (this excludes comments and
whitespace
). Returns the
Token.h
74
StartOfLine = 0x01, // At start of line or only after
whitespace
.
75
LeadingSpace = 0x02, //
Whitespace
exists before this token.
234
/// \brief Return true if this token has
whitespace
before it.
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/
istream
671
* @param __noskipws Whether to consume
whitespace
or not.
683
* @c is.flags(), the sentry extracts and discards
whitespace
685
* used to determine whether each character is
whitespace
.
754
* - the next character is
whitespace
according to the current locale
829
* @brief Quick and easy way to eat
whitespace
831
* This manipulator extracts
whitespace
characters, stopping when the
832
* next character is non-
whitespace
, or when the input sequence is empty.
836
* The current locale is used to distinguish
whitespace
characters.
844
* will skip leading
whitespace
before calling operator>> on cin and your
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/
istream
671
* @param __noskipws Whether to consume
whitespace
or not.
683
* @c is.flags(), the sentry extracts and discards
whitespace
685
* used to determine whether each character is
whitespace
.
754
* - the next character is
whitespace
according to the current locale
829
* @brief Quick and easy way to eat
whitespace
831
* This manipulator extracts
whitespace
characters, stopping when the
832
* next character is non-
whitespace
, or when the input sequence is empty.
836
* The current locale is used to distinguish
whitespace
characters.
844
* will skip leading
whitespace
before calling operator>> on cin and your
/prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/
istream
673
* @param __noskipws Whether to consume
whitespace
or not.
685
* @c is.flags(), the sentry extracts and discards
whitespace
687
* used to determine whether each character is
whitespace
.
756
* - the next character is
whitespace
according to the current locale
835
* @brief Quick and easy way to eat
whitespace
837
* This manipulator extracts
whitespace
characters, stopping when the
838
* next character is non-
whitespace
, or when the input sequence is empty.
842
* The current locale is used to distinguish
whitespace
characters.
850
* will skip leading
whitespace
before calling operator>> on cin and your
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
rhino-python.extensions
52
of the next line is examined. If non-leading-
whitespace
token,
54
the column of the next non-
whitespace
token will dictate indent vs
56
in the LEADING_WS token + 1 (to move past the
whitespace
). The
/external/apache-xml/src/main/java/org/apache/xml/serializer/
ToStream.java
80
* preserve
whitespace
.
90
* State flag to tell if preservation of
whitespace
101
* was text, so we can tell if we should preserve
whitespace
.
293
* that all
whitespace
is removed,and will include the enclosing
831
* the separator "|" and all
whitespace
removed.</p>
[
all
...]
/external/chromium_org/base/json/
json_parser.h
156
// Skips over
whitespace
and comments to find the next token in the stream.
157
// This does not advance the parser for non-
whitespace
or comment chars.
160
// Consumes
whitespace
characters and comments until the next non-that is
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/utf/
utf.h
236
// isspacerune tests for
whitespace
characters, including "C" locale
237
//
whitespace
, Unicode defined
whitespace
, and the "zero-width
/external/clang/lib/Edit/
EditedSource.cpp
253
/// \brief Returns true if it is ok to eliminate the trailing
whitespace
between
262
return false; // the
whitespace
was intentional, keep it.
267
/// -Remove any trailing
whitespace
if possible.
/external/jpeg/
rdswitch.c
45
/* Skip any leading
whitespace
, detect EOF */
76
* The file is plain ASCII text: decimal numbers with
whitespace
between.
167
* The file is free format text: any
whitespace
may appear between numbers
/external/openssh/openbsd-compat/
base64.c
190
/* skips all
whitespace
anywhere.
207
if (isspace(ch)) /* Skip
whitespace
anywhere. */
287
*
whitespace
after it?
/external/qemu/distrib/jpeg-6b/
rdswitch.c
45
/* Skip any leading
whitespace
, detect EOF */
76
* The file is plain ASCII text: decimal numbers with
whitespace
between.
167
* The file is free format text: any
whitespace
may appear between numbers
/libcore/luni/src/main/java/org/xml/sax/
HandlerBase.java
256
* Receive notification of ignorable
whitespace
in element content.
260
*
whitespace
(such as adding data to a node or buffer, or printing
263
* @param ch The
whitespace
characters.
/system/core/liblog/
event_tag_map.c
156
* Determine whether "c" is a
whitespace
char.
245
/* might be leading
whitespace
before tag num, keep going */
302
/* looks like leading
whitespace
; keep scanning */
/bootable/recovery/edify/
README
44
quotes are only needed if you want characters like
whitespace
to
/dalvik/dexgen/src/com/android/dexgen/util/
HexParser.java
35
* hex digits freely interspersed with
whitespace
. If a pound sign
/dalvik/dx/src/com/android/dx/util/
HexParser.java
35
* hex digits freely interspersed with
whitespace
. If a pound sign
/external/antlr/antlr-3.4/gunit/
CHANGES.txt
37
*
whitespace
ignored and "x y z" turned into x y z now in expected tree p\
Completed in 1375 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>