OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:in_word
(Results
1 - 1
of
1
) sorted by null
/external/google-breakpad/src/processor/
minidump.cc
245
uint16_t
in_word
= *iterator;
local
247
Swap(&
in_word
);
249
// Convert the input value (
in_word
) into a Unicode code point (unichar).
251
if (
in_word
>= 0xdc00 &&
in_word
<= 0xdcff) {
253
HexString(
in_word
) << " without high";
255
} else if (
in_word
>= 0xd800 &&
in_word
<= 0xdbff) {
257
unichar = (
in_word
- 0xd7c0) << 10;
260
HexString(
in_word
) << " at end of string"
[
all
...]
Completed in 80 milliseconds