OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ceBuffer
(Results
1 - 6
of
6
) sorted by null
/external/icu/icu4c/source/i18n/
collationiterator.cpp
32
CollationIterator::
CEBuffer
::~
CEBuffer
() {}
35
CollationIterator::
CEBuffer
::ensureAppendCapacity(int32_t appCap, UErrorCode &errorCode) {
154
int32_t length = other.
ceBuffer
.length;
155
if(length > 0 &&
ceBuffer
.ensureAppendCapacity(length, errorCode)) {
157
ceBuffer
.set(i, other.
ceBuffer
.get(i));
159
ceBuffer
.length = length;
177
ceBuffer
.length == other.
ceBuffer
.length &
[
all
...]
collationiterator.h
37
class
CEBuffer
{
42
CEBuffer
() : length(0) {}
43
~
CEBuffer
();
78
CEBuffer
(const
CEBuffer
&);
79
void operator=(const
CEBuffer
&);
113
if(cesIndex <
ceBuffer
.length) {
115
return
ceBuffer
.get(cesIndex++);
117
// assert cesIndex ==
ceBuffer
.length;
118
if(!
ceBuffer
.incLength(errorCode))
[
all
...]
/external/icu/icu4c/source/test/intltest/
colldata.h
114
uint32_t
ceBuffer
[CELIST_BUFFER_SIZE];
colldata.cpp
71
ces =
ceBuffer
;
102
if (ces !=
ceBuffer
) {
124
if (ces !=
ceBuffer
) {
/external/chromium_org/third_party/icu/source/i18n/unicode/
colldata.h
148
uint32_t
ceBuffer
[CELIST_BUFFER_SIZE];
/external/chromium_org/third_party/icu/source/i18n/
colldata.cpp
85
ces =
ceBuffer
;
120
if (ces !=
ceBuffer
) {
147
if (ces !=
ceBuffer
) {
Completed in 195 milliseconds