OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:currentChar
(Results
1 - 25
of
51
) sorted by null
1
2
3
/libcore/luni/src/main/java/java/math/
Conversion.java
80
int
currentChar
= resLengthInChars;
95
int previous =
currentChar
;
97
result[--
currentChar
] = Character.forDigit(
99
} while (((resDigit /= radix) != 0) && (
currentChar
!= 0));
100
int delta = charsPerInt - previous +
currentChar
;
101
for (i = 0; i < delta &&
currentChar
> 0; i++) {
102
result[--
currentChar
] = '0';
115
for (int j = 0; (j < 8) && (
currentChar
> 0); j++) {
117
result[--
currentChar
] = Character.forDigit(resDigit, 16);
121
while (result[
currentChar
] == '0')
[
all
...]
/libcore/luni/src/main/java/java/io/
LineNumberInputStream.java
120
int
currentChar
= lastChar;
121
if (
currentChar
== -1) {
122
currentChar
= in.read();
126
switch (
currentChar
) {
128
currentChar
= '\n';
137
return
currentChar
;
162
int
currentChar
;
164
currentChar
= read();
171
if (
currentChar
== -1) {
174
buffer[byteOffset + i] = (byte)
currentChar
;
[
all
...]
StreamTokenizer.java
264
int
currentChar
= peekChar == -2 ? read() : peekChar;
266
if (lastCr &&
currentChar
== '\n') {
268
currentChar
= read();
270
if (
currentChar
== -1) {
274
byte currentType =
currentChar
> 255 ? TOKEN_WORD
275
: tokenTypes[
currentChar
];
280
if (
currentChar
== '\r') {
287
if ((
currentChar
= read()) == '\n') {
288
currentChar
= read();
290
} else if (
currentChar
== '\n')
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
InputStreamPreprocessor.h
56
m_nextInputCharacter = source.
currentChar
();
91
ASSERT(m_nextInputCharacter == source.
currentChar
());
98
m_nextInputCharacter = source.
currentChar
();
114
m_nextInputCharacter = source.
currentChar
();
HTMLSourceTracker.cpp
78
source.append(m_previousSource.
currentChar
());
83
source.append(m_currentSource.
currentChar
());
HTMLEntityParser.cpp
109
cc = source.
currentChar
();
136
cc = source.
currentChar
();
142
cc = source.
currentChar
();
176
UChar cc = source.
currentChar
();
XSSAuditor.cpp
598
UChar
currentChar
= decodedSnippet[currentLength];
599
if (
currentChar
== '?'
600
||
currentChar
== '#'
601
|| ((
currentChar
== '/' ||
currentChar
== '\\') && (commaSeen || ++slashCount > 2))
602
|| (
currentChar
== '<' && commaSeen)) {
606
if (
currentChar
== ',')
/libcore/luni/src/main/java/org/apache/harmony/security/utils/
Array.java
82
char
currentChar
= (char)(currentByte & 0xffff);
85
(Character.isISOControl(
currentChar
) ? '.' :
currentChar
));
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
BufferedLineReader.cpp
56
UChar c = m_buffer.
currentChar
();
BufferedLineReader.h
76
if (m_buffer.
currentChar
() == c)
/external/jsilver/src/com/google/streamhtmlparser/impl/
ParserStateTable.java
98
* @param
currentChar
the character received
101
InternalState getNextState(InternalState from, int
currentChar
) {
103
if (from == null ||
currentChar
< 0)
112
if (
currentChar
< MAX_CHARS) {
113
result = stateTable[id][
currentChar
];
/external/protobuf/java/src/main/java/com/google/protobuf/nano/
MessageNanoPrinter.java
140
char
currentChar
= identifier.charAt(i);
142
out.append(Character.toLowerCase(
currentChar
));
143
} else if (Character.isUpperCase(
currentChar
)) {
144
out.append('_').append(Character.toLowerCase(
currentChar
));
146
out.append(
currentChar
);
/external/chromium_org/third_party/WebKit/Source/platform/text/
SegmentedString.h
261
ASSERT_UNUSED(expectedCharacter,
currentChar
() == expectedCharacter);
267
ASSERT_UNUSED(expectedCharacter, WTF::Unicode::foldCase(
currentChar
()) == WTF::Unicode::foldCase(expectedCharacter));
273
ASSERT(
currentChar
() != '\n');
279
ASSERT(
currentChar
() == '\n');
311
UChar
currentChar
() const { return m_currentChar; }
SegmentedString.cpp
236
consumedCharacters[i] =
currentChar
();
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/
SystemIDResolver.java
197
char
currentChar
= buf.charAt(i);
199
if (
currentChar
== ' ')
207
else if (
currentChar
== '\\')
/external/apache-xml/src/main/java/org/apache/xml/utils/
SystemIDResolver.java
190
char
currentChar
= buf.charAt(i);
192
if (
currentChar
== ' ')
200
else if (
currentChar
== '\\')
/packages/services/Telephony/src/com/android/phone/
DTMFTonePlayer.java
129
char
currentChar
) {
133
if (!mToneMap.containsKey(
currentChar
)) {
136
startLocalToneIfNeeded(
currentChar
);
CallHandlerServiceProxy.java
240
char
currentChar
) {
/cts/tools/vm-tests-tf/src/util/build/
BuildDalvikSuite.java
551
char
currentChar
;
553
while ((
currentChar
= (char) reader.read()) != -1 && blocks > 0) {
554
switch (
currentChar
) {
557
builder.append(
currentChar
);
562
builder.append(
currentChar
);
566
builder.append(
currentChar
);
/external/icu4c/layout/
IndicReordering.cpp
[
all
...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ExpandableDictionary.java
461
final int
currentChar
= currentChars[j];
462
if (
currentChar
== Constants.NOT_A_CODE) {
465
if (
currentChar
== lowerC ||
currentChar
== c) {
651
final char
currentChar
= word.charAt(offset);
654
if (node.mCode ==
currentChar
) {
[
all
...]
/external/chromium_org/third_party/skia/src/ports/
SkFontHost_win.cpp
[
all
...]
/external/javassist/src/main/javassist/bytecode/
Descriptor.java
826
public char
currentChar
() { return desc.charAt(curPos); }
832
char c =
currentChar
();
/external/skia/src/ports/
SkFontHost_win.cpp
[
all
...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.ds_1.2.1.R36x_v20100803.jar
Completed in 521 milliseconds
1
2
3