OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MaybeStackArray
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/icu/source/common/
charstr.h
22
// Windows needs us to DLL-export the
MaybeStackArray
template specialization,
25
template class U_COMMON_API
MaybeStackArray
<char, 40>;
111
MaybeStackArray
<char, 40> buffer;
cmemory.h
206
class
MaybeStackArray
{
211
MaybeStackArray
() : ptr(stackArray), capacity(stackCapacity), needToRelease(FALSE) {}
215
~
MaybeStackArray
() { releaseArray(); }
291
/* No comparison operators with other
MaybeStackArray
's. */
292
bool operator==(const
MaybeStackArray
& /*other*/) {return FALSE;};
293
bool operator!=(const
MaybeStackArray
& /*other*/) {return TRUE;};
295
MaybeStackArray
(const
MaybeStackArray
& /*other*/) {};
296
void operator=(const
MaybeStackArray
& /*other*/) {};
300
// MSVC insists on exporting an instantiation of
MaybeStackArray
, whic
[
all
...]
/external/icu4c/common/
charstr.h
22
// Windows needs us to DLL-export the
MaybeStackArray
template specialization,
25
template class U_COMMON_API
MaybeStackArray
<char, 40>;
118
MaybeStackArray
<char, 40> buffer;
cmemory.h
253
class
MaybeStackArray
{
258
MaybeStackArray
() : ptr(stackArray), capacity(stackCapacity), needToRelease(FALSE) {}
262
~
MaybeStackArray
() { releaseArray(); }
340
/* No comparison operators with other
MaybeStackArray
's. */
341
bool operator==(const
MaybeStackArray
& /*other*/) {return FALSE;}
342
bool operator!=(const
MaybeStackArray
& /*other*/) {return TRUE;}
344
MaybeStackArray
(const
MaybeStackArray
& /*other*/) {}
345
void operator=(const
MaybeStackArray
& /*other*/) {}
349
// MSVC insists on exporting an instantiation of
MaybeStackArray
, whic
[
all
...]
Completed in 32 milliseconds