Searched refs:StrLen (Results 1 - 7 of 7) sorted by relevance

/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
H A Dstrfunc.h30 inline SizeType StrLen(const Ch* s) { function in namespace:internal
/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
H A Dunittest.h45 inline unsigned StrLen(const Ch* s) { function
59 size_t bufferSize = sizeof(Ch) * (StrLen(str) + 1);
H A Dreadertest.cpp483 EXPECT_EQ(StrLen(e), h.length_); \
490 EXPECT_EQ(StrLen(e), h2.length_); \
567 EXPECT_EQ(StrLen(e), h.length_);
578 EXPECT_EQ(StrLen(e), h.length_);
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
H A Dprettywriter.h141 bool String(const Ch* str) { return String(str, internal::StrLen(str)); }
142 bool Key(const Ch* str) { return Key(str, internal::StrLen(str)); }
H A Dwriter.h175 bool String(const Ch* str) { return String(str, internal::StrLen(str)); }
176 bool Key(const Ch* str) { return Key(str, internal::StrLen(str)); }
H A Ddocument.h309 : s(str), length(internal::StrLen(str)){ RAPIDJSON_ASSERT(s != NULL); }
349 return GenericStringRef<CharType>(str, internal::StrLen(str));
855 \note Compared to \ref operator[](T*), this version is faster because it does not need a StrLen().
917 This version is faster because it does not need a StrLen(). It can also handle string with null character.
948 This version is faster because it does not need a StrLen(). It can also handle string with null character.
1513 GenericValue& SetString(const Ch* s, Allocator& allocator) { return SetString(s, internal::StrLen(s), allocator); }
H A Dpointer.h107 Parse(source, internal::StrLen(source));
233 return Append(name, StrLen(name), allocator);

Completed in 470 milliseconds