OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:whitespace
(Results
451 - 475
of
2404
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/external/markdown/MarkdownTest/
MarkdownTest.pl
67
$t_result =~ s/\s+\z//; # trim trailing
whitespace
68
$t_output =~ s/\s+\z//; # trim trailing
whitespace
/external/mdnsresponder/mDNSPosix/
nss_mdns.conf.5
19
Lines containing only
whitespace
or lines whose first non-
whitespace
character is
/external/mesa3d/src/glsl/
s_expression.cpp
136
* next character (guaranteed to be
whitespace
, parens, or semicolon) with
137
* a nul-byte. But overwriting non-
whitespace
would mess up parsing.
/external/proguard/src/proguard/
WordReader.java
132
// Skip leading
whitespace
.
166
// Skip leading
whitespace
.
/external/sepolicy/
README
92
is stripped of comments and
whitespace
. This is to preserve space on the
103
whitespace
during processing.
/external/skia/src/views/
SkTextBox.cpp
42
// eat the rest of the
whitespace
50
// backup until a
whitespace
(or 1 char)
/external/skia/tools/
sanitize_source_files.py
89
print 'Removing trailing
whitespace
in %s:%s' % (file_path, line_number)
103
print 'Replacing Tab with
whitespace
in %s:%s' % (file_path, line_number)
/external/smack/src/org/xbill/DNS/
Tokenizer.java
43
/**
Whitespace
; only returned when wantWhitespace is set */
44
public static final int
WHITESPACE
= 2;
100
case
WHITESPACE
:
101
return "<
whitespace
>";
226
* @param wantWhitespace If true, leading
whitespace
will be returned as a
240
if (current.type ==
WHITESPACE
) {
254
return current.set(
WHITESPACE
, null);
339
* Gets the next token from a tokenizer, ignoring
whitespace
and comments.
/frameworks/base/core/java/android/text/
AndroidBidi.java
56
* @param chars the character array (used to determine
whitespace
)
79
// add final run for trailing counter-directional
whitespace
/libcore/dom/src/test/java/org/w3c/domts/
BatikTestDocumentBuilderFactory.java
208
* element content
whitespace
.
209
* @return true if ignoring element content
whitespace
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
TextImpl.java
65
// Undefined because we don't validate. Whether
whitespace
characters
66
// constitute "element content
whitespace
" is defined by the containing
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
RecapitalizeStatus.java
148
* Remove leading/trailing
whitespace
from the considered string.
165
//
whitespace
, so we leave it as is.
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
FormatParagraph.py
13
# * If a comment block has leading
whitespace
that mixes tabs and
127
continue # Can happen when line ends in
whitespace
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
netrc.py
57
lexer.
whitespace
= ' \t'
61
lexer.
whitespace
= ' \t\r\n'
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
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
FormatParagraph.py
13
# * If a comment block has leading
whitespace
that mixes tabs and
127
continue # Can happen when line ends in
whitespace
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
netrc.py
57
lexer.
whitespace
= ' \t'
61
lexer.
whitespace
= ' \t\r\n'
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringProposal.java
96
// Look backwards to the beginning of the line (and strip
whitespace
)
107
// Look forwards to the end of the line (and strip
whitespace
)
/libcore/xml/src/main/java/org/xmlpull/v1/
XmlPullParser.java
49
* (when in validating mode next() will not report ignorable
whitespace
, use nextToken() instead)
265
* Ignorable
whitespace
was just read.
270
* Validating parsers may be able to detect ignorable
whitespace
at
272
* The ignorable
whitespace
string is available by calling getText()
276
* may be
whitespace
but not ignorable.
278
* Ignorable
whitespace
is skipped by next() automatically; this event
677
* Checks whether the current TEXT event contains only
whitespace
685
* able to distinguish
whitespace
and ignorable
whitespace
,
686
* except from
whitespace
outside the root element. Ignorabl
[
all
...]
/cts/libs/json/src/com/android/json/stream/
JsonWriter.java
159
* @param indent a string containing only
whitespace
.
210
* Enters a new scope by appending any necessary
whitespace
and the given
221
* Closes the current scope by appending any necessary
whitespace
and the
417
* Inserts any necessary separators and
whitespace
before a name. Also
432
* Inserts any necessary separators and
whitespace
before a literal value,
/external/apache-http/src/org/apache/http/message/
BasicTokenIterator.java
359
* Checks whether a character is a
whitespace
character.
360
* RFC 2616, section 2.2 defines space and horizontal tab as
whitespace
.
366
* @return <code>true</code> if the character is
whitespace
,
372
// many control characters which are not
whitespace
as per RFC 2616
379
*
Whitespace
, control characters, and HTTP separators are not
/external/apache-xml/src/main/java/org/apache/xml/serializer/
ToXMLStream.java
206
* Starts a
whitespace
preserving section. All characters printed
212
* The contents of the
whitespace
preserving section will be delivered
227
* Ends a
whitespace
preserving section.
317
* Don't write out any indentation
whitespace
now,
318
* because there may be non-
whitespace
text after this.
/external/openssh/
auth2-pubkey.c
215
/* Skip leading
whitespace
. */
223
/* Trim trailing
whitespace
. */
228
* If the line has internal
whitespace
then assume it has
288
/* Skip leading
whitespace
, empty and comment lines. */
305
/* Skip remaining
whitespace
. */
/frameworks/base/core/java/android/util/
JsonWriter.java
161
* @param indent a string containing only
whitespace
.
235
* Enters a new scope by appending any necessary
whitespace
and the given
246
* Closes the current scope by appending any necessary
whitespace
and the
473
* Inserts any necessary separators and
whitespace
before a name. Also
488
* Inserts any necessary separators and
whitespace
before a literal value,
/libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
DocumentBuilderImpl.java
192
* text at the first
whitespace
character.
219
* Found some ignorable
whitespace
. We only add it if the client
220
* wants to see
whitespace
.
Whitespace
before and after the
378
* Controls whether this DocumentBuilder ignores element content
whitespace
.
Completed in 868 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>