OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:read_from
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/base/
pickle.cc
25
const char*
read_from
= GetReadPointerAndAdvance<Type>();
local
26
if (!
read_from
)
29
memcpy(result,
read_from
, sizeof(*result));
31
*result = *reinterpret_cast<const Type*>(
read_from
);
101
const char*
read_from
= GetReadPointerAndAdvance(len);
local
102
if (!
read_from
)
105
result->assign(
read_from
, len);
113
const char*
read_from
= GetReadPointerAndAdvance(len, sizeof(wchar_t));
local
114
if (!
read_from
)
117
result->assign(reinterpret_cast<const wchar_t*>(
read_from
), len)
125
const char*
read_from
= GetReadPointerAndAdvance(len, sizeof(char16));
local
144
const char*
read_from
= GetReadPointerAndAdvance(length);
local
[
all
...]
/external/chromium_org/tools/python/google/
process_utils.py
83
read_from
= proc.stdout
85
read_from
= proc.stderr
86
line =
read_from
.readline()
106
line =
read_from
.readline()
192
read_from
= procs[i].stdout
194
read_from
= procs[i].stderr
195
line =
read_from
.readline()
Completed in 5780 milliseconds