Home
last modified time | relevance | path

Searched defs:allocator (Results 1 – 7 of 7) sorted by relevance

/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
Dvaluetest.cpp77 Value::AllocatorType allocator; in TEST() local
160 Value::AllocatorType allocator; in TEST() local
619 MemoryPoolAllocator<> allocator; in TEST() local
718 Value::AllocatorType allocator; in TEST() local
911 Value::AllocatorType allocator; in TEST() local
1192 Value::AllocatorType allocator; in TEST() local
1210 MemoryPoolAllocator<> allocator; in TEST() local
1231 MemoryPoolAllocator<> allocator; in TEST() local
1273 rapidjson::Document::AllocatorType& allocator = doc.GetAllocator(); in TEST() local
1287 V::AllocatorType allocator; in TEST() local
Ddocumenttest.cpp355 Allocator allocator; in TYPED_TEST() local
448 Allocator allocator; in TYPED_TEST() local
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
Dpointer.h106 …explicit GenericPointer(const Ch* source, Allocator* allocator = 0) : allocator_(allocator), ownAl… in allocator_() argument
117 …explicit GenericPointer(const std::basic_string<Ch>& source, Allocator* allocator = 0) : allocator… in allocator_() argument
129 …GenericPointer(const Ch* source, size_t length, Allocator* allocator = 0) : allocator_(allocator),… in allocator_() argument
504 …fault(ValueType& root, const ValueType& defaultValue, typename ValueType::AllocatorType& allocator in GetWithDefault()
511 …tWithDefault(ValueType& root, const Ch* defaultValue, typename ValueType::AllocatorType& allocator in GetWithDefault()
519 …ype& root, const std::basic_string<Ch>& defaultValue, typename ValueType::AllocatorType& allocator in GetWithDefault()
532 …GetWithDefault(ValueType& root, T defaultValue, typename ValueType::AllocatorType& allocator) cons… in GetWithDefault()
581 …ValueType& Set(ValueType& root, ValueType& value, typename ValueType::AllocatorType& allocator) co… in Set()
586 …lueType& Set(ValueType& root, const ValueType& value, typename ValueType::AllocatorType& allocator in Set()
591 …ValueType& Set(ValueType& root, const Ch* value, typename ValueType::AllocatorType& allocator) con… in Set()
[all …]
Dstringbuffer.h39 …explicit GenericStringBuffer(Allocator* allocator = 0, size_t capacity = kDefaultCapacity) : stack… in stack_() argument
Dprettywriter.h46 Base(os, allocator, levelDepth), indentChar_(' '), indentCharCount_(4) {} in Base() argument
/packages/apps/Test/connectivity/sl4n/rapidjson/example/tutorial/
Dtutorial.cpp103 Document::AllocatorType& allocator = document.GetAllocator(); in main() local
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
Dstack.h35 …Stack(Allocator* allocator, size_t stackCapacity) : allocator_(allocator), ownAllocator_(0), stack… in Stack()