OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:hexToInt
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/inspector/
JSONParser.cpp
258
inline int
hexToInt
(CharType c)
304
c = (
hexToInt
(*start) << 4) +
305
hexToInt
(*(start + 1));
309
c = (
hexToInt
(*start) << 12) +
310
(
hexToInt
(*(start + 1)) << 8) +
311
(
hexToInt
(*(start + 2)) << 4) +
312
hexToInt
(*(start + 3));
/libcore/luni/src/main/java/libcore/net/
UriCodec.java
55
int d1 =
hexToInt
(uri.charAt(i + 1));
56
int d2 =
hexToInt
(uri.charAt(i + 2));
165
&& (d1 =
hexToInt
(s.charAt(i + 1))) != -1
166
&& (d2 =
hexToInt
(s.charAt(i + 2))) != -1) {
193
private static int
hexToInt
(char c) {
/packages/apps/Exchange/src/com/android/exchange/utility/
UriCodec.java
74
int d1 =
hexToInt
(uri.charAt(i + 1));
75
int d2 =
hexToInt
(uri.charAt(i + 2));
181
int d1 =
hexToInt
(s.charAt(i + 1));
182
int d2 =
hexToInt
(s.charAt(i + 2));
207
private static int
hexToInt
(char c) {
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/
PEMDecoder.java
33
private static int
hexToInt
(char c)
65
int hi =
hexToInt
(hex.charAt(i * 2));
66
int lo =
hexToInt
(hex.charAt((i * 2) + 1));
/external/chromium_org/third_party/sqlite/src/src/
test_malloc.c
272
static int
hexToInt
(int h){
287
v =
hexToInt
(*z++);
[
all
...]
/external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c
[
all
...]
Completed in 1172 milliseconds