OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:code_unit
(Results
1 - 3
of
3
) sorted by null
/external/v8/src/
scanner.h
125
virtual void PushBack(int32_t
code_unit
) = 0;
130
// Ensures that the buffer_cursor_ points to the
code_unit
at
183
INLINE(void AddChar(uint32_t
code_unit
)) {
186
if (
code_unit
< kMaxAsciiCharCodeU) {
187
backing_store_[position_] = static_cast<byte>(
code_unit
);
193
ASSERT(
code_unit
< 0x10000u);
194
*reinterpret_cast<uc16*>(&backing_store_[position_]) =
code_unit
;
/external/chromium_org/v8/src/
scanner.h
108
virtual void PushBack(int32_t
code_unit
) = 0;
113
// Ensures that the buffer_cursor_ points to the
code_unit
at
217
INLINE(void AddChar(uint32_t
code_unit
)) {
220
if (
code_unit
<= unibrow::Latin1::kMaxChar) {
221
backing_store_[position_] = static_cast<byte>(
code_unit
);
227
ASSERT(
code_unit
< 0x10000u);
228
*reinterpret_cast<uc16*>(&backing_store_[position_]) =
code_unit
;
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
results.py
13
def __init__(self, cov,
code_unit
):
15
self.
code_unit
=
code_unit
17
self.filename = self.
code_unit
.filename
Completed in 169 milliseconds