Lines Matching refs:source

105 …explicit GenericPointer(const Ch* source, Allocator* allocator = 0) : allocator_(allocator), ownAl…  in allocator_()
106 Parse(source, internal::StrLen(source)); in allocator_()
116 …explicit GenericPointer(const std::basic_string<Ch>& source, Allocator* allocator = 0) : allocator… in allocator_()
117 Parse(source.c_str(), source.size()); in allocator_()
128 …GenericPointer(const Ch* source, size_t length, Allocator* allocator = 0) : allocator_(allocator),… in allocator_()
129 Parse(source, length); in allocator_()
918 void Parse(const Ch* source, size_t length) { in Parse() argument
919 RAPIDJSON_ASSERT(source != NULL); in Parse()
929 for (const Ch* s = source; s != source + length; s++) in Parse()
939 if (source[i] == '#') { in Parse()
944 if (i != length && source[i] != '/') { in Parse()
950 RAPIDJSON_ASSERT(source[i] == '/'); in Parse()
956 while (i < length && source[i] != '/') { in Parse()
957 Ch c = source[i]; in Parse()
961 PercentDecodeStream is(&source[i], source + length); in Parse()
990 c = source[i]; in Parse()
1077 GenericStringStream<typename ValueType::EncodingType> source(&t->name[j]); in Stringify()
1079 if (!Transcoder<EncodingType, UTF8<> >().Validate(source, target)) in Stringify()
1081 j += source.Tell() - 1; in Stringify()
1105 …PercentDecodeStream(const Ch* source, const Ch* end) : src_(source), head_(source), end_(end), val… in PercentDecodeStream() argument
1178 typename T::ValueType& CreateValueByPointer(T& root, const CharType(&source)[N], typename T::Alloca… in CreateValueByPointer()
1179 return GenericPointer<typename T::ValueType>(source, N - 1).Create(root, a); in CreateValueByPointer()
1190 …DocumentType::ValueType& CreateValueByPointer(DocumentType& document, const CharType(&source)[N]) { in CreateValueByPointer()
1191 return GenericPointer<typename DocumentType::ValueType>(source, N - 1).Create(document); in CreateValueByPointer()
1207 typename T::ValueType* GetValueByPointer(T& root, const CharType (&source)[N], size_t* unresolvedTo…
1208 return GenericPointer<typename T::ValueType>(source, N - 1).Get(root, unresolvedTokenIndex);
1212 const typename T::ValueType* GetValueByPointer(const T& root, const CharType(&source)[N], size_t* u…
1213 return GenericPointer<typename T::ValueType>(source, N - 1).Get(root, unresolvedTokenIndex);
1242 typename T::ValueType& GetValueByPointerWithDefault(T& root, const CharType(&source)[N], const type… in GetValueByPointerWithDefault()
1243 … return GenericPointer<typename T::ValueType>(source, N - 1).GetWithDefault(root, defaultValue, a); in GetValueByPointerWithDefault()
1247 typename T::ValueType& GetValueByPointerWithDefault(T& root, const CharType(&source)[N], const type… in GetValueByPointerWithDefault()
1248 … return GenericPointer<typename T::ValueType>(source, N - 1).GetWithDefault(root, defaultValue, a); in GetValueByPointerWithDefault()
1253 typename T::ValueType& GetValueByPointerWithDefault(T& root, const CharType(&source)[N], const std:… in GetValueByPointerWithDefault()
1254 … return GenericPointer<typename T::ValueType>(source, N - 1).GetWithDefault(root, defaultValue, a); in GetValueByPointerWithDefault()
1260 GetValueByPointerWithDefault(T& root, const CharType(&source)[N], T2 defaultValue, typename T::Allo… in GetValueByPointerWithDefault()
1261 … return GenericPointer<typename T::ValueType>(source, N - 1).GetWithDefault(root, defaultValue, a); in GetValueByPointerWithDefault()
1290 …pe& GetValueByPointerWithDefault(DocumentType& document, const CharType(&source)[N], const typenam… in GetValueByPointerWithDefault()
1291 …return GenericPointer<typename DocumentType::ValueType>(source, N - 1).GetWithDefault(document, de… in GetValueByPointerWithDefault()
1295 …pe& GetValueByPointerWithDefault(DocumentType& document, const CharType(&source)[N], const typenam… in GetValueByPointerWithDefault()
1296 …return GenericPointer<typename DocumentType::ValueType>(source, N - 1).GetWithDefault(document, de… in GetValueByPointerWithDefault()
1301 …pe& GetValueByPointerWithDefault(DocumentType& document, const CharType(&source)[N], const std::ba… in GetValueByPointerWithDefault()
1302 …return GenericPointer<typename DocumentType::ValueType>(source, N - 1).GetWithDefault(document, de… in GetValueByPointerWithDefault()
1308 GetValueByPointerWithDefault(DocumentType& document, const CharType(&source)[N], T2 defaultValue) { in GetValueByPointerWithDefault()
1309 …return GenericPointer<typename DocumentType::ValueType>(source, N - 1).GetWithDefault(document, de… in GetValueByPointerWithDefault()
1343 typename T::ValueType& SetValueByPointer(T& root, const CharType(&source)[N], typename T::ValueType… in SetValueByPointer()
1344 return GenericPointer<typename T::ValueType>(source, N - 1).Set(root, value, a); in SetValueByPointer()
1348 typename T::ValueType& SetValueByPointer(T& root, const CharType(&source)[N], const typename T::Val… in SetValueByPointer()
1349 return GenericPointer<typename T::ValueType>(source, N - 1).Set(root, value, a); in SetValueByPointer()
1353 typename T::ValueType& SetValueByPointer(T& root, const CharType(&source)[N], const typename T::Ch*… in SetValueByPointer()
1354 return GenericPointer<typename T::ValueType>(source, N - 1).Set(root, value, a); in SetValueByPointer()
1359 typename T::ValueType& SetValueByPointer(T& root, const CharType(&source)[N], const std::basic_stri… in SetValueByPointer()
1360 return GenericPointer<typename T::ValueType>(source, N - 1).Set(root, value, a); in SetValueByPointer()
1366 SetValueByPointer(T& root, const CharType(&source)[N], T2 value, typename T::AllocatorType& a) { in SetValueByPointer()
1367 return GenericPointer<typename T::ValueType>(source, N - 1).Set(root, value, a); in SetValueByPointer()
1401 typename DocumentType::ValueType& SetValueByPointer(DocumentType& document, const CharType(&source)… in SetValueByPointer()
1402 return GenericPointer<typename DocumentType::ValueType>(source, N - 1).Set(document, value); in SetValueByPointer()
1406 typename DocumentType::ValueType& SetValueByPointer(DocumentType& document, const CharType(&source)… in SetValueByPointer()
1407 return GenericPointer<typename DocumentType::ValueType>(source, N - 1).Set(document, value); in SetValueByPointer()
1411 typename DocumentType::ValueType& SetValueByPointer(DocumentType& document, const CharType(&source)… in SetValueByPointer()
1412 return GenericPointer<typename DocumentType::ValueType>(source, N - 1).Set(document, value); in SetValueByPointer()
1417 typename DocumentType::ValueType& SetValueByPointer(DocumentType& document, const CharType(&source)… in SetValueByPointer()
1418 return GenericPointer<typename DocumentType::ValueType>(source, N - 1).Set(document, value); in SetValueByPointer()
1424 SetValueByPointer(DocumentType& document, const CharType(&source)[N], T2 value) { in SetValueByPointer()
1425 return GenericPointer<typename DocumentType::ValueType>(source, N - 1).Set(document, value); in SetValueByPointer()
1436 typename T::ValueType& SwapValueByPointer(T& root, const CharType(&source)[N], typename T::ValueTyp… in SwapValueByPointer()
1437 return GenericPointer<typename T::ValueType>(source, N - 1).Swap(root, value, a); in SwapValueByPointer()
1446 typename DocumentType::ValueType& SwapValueByPointer(DocumentType& document, const CharType(&source in SwapValueByPointer()
1447 return GenericPointer<typename DocumentType::ValueType>(source, N - 1).Swap(document, value); in SwapValueByPointer()
1458 bool EraseValueByPointer(T& root, const CharType(&source)[N]) { in EraseValueByPointer()
1459 return GenericPointer<typename T::ValueType>(source, N - 1).Erase(root); in EraseValueByPointer()