HomeSort by relevance Sort by last modified time
    Searched defs:RAPIDJSON_NOEXCEPT (Results 1 - 2 of 2) sorted by null

  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
rapidjson.h 463 #define RAPIDJSON_NOEXCEPT noexcept
465 #define RAPIDJSON_NOEXCEPT /* noexcept */
document.h 286 GenericStringRef(const CharType (&str)[N]) RAPIDJSON_NOEXCEPT // NOLINT, implicit
439 GenericValue() RAPIDJSON_NOEXCEPT : data_(), flags_(kNullFlag) {}
443 GenericValue(GenericValue&& rhs) RAPIDJSON_NOEXCEPT : data_(rhs.data_), flags_(rhs.flags_) {
469 explicit GenericValue(Type type) RAPIDJSON_NOEXCEPT : data_(), flags_() {
500 explicit GenericValue(T b, RAPIDJSON_ENABLEIF((internal::IsSame<T,bool>))) RAPIDJSON_NOEXCEPT
502 explicit GenericValue(bool b) RAPIDJSON_NOEXCEPT
510 explicit GenericValue(int i) RAPIDJSON_NOEXCEPT : data_(), flags_(kNumberIntFlag) {
517 explicit GenericValue(unsigned u) RAPIDJSON_NOEXCEPT : data_(), flags_(kNumberUintFlag) {
524 explicit GenericValue(int64_t i64) RAPIDJSON_NOEXCEPT : data_(), flags_(kNumberInt64Flag) {
538 explicit GenericValue(uint64_t u64) RAPIDJSON_NOEXCEPT : data_(), flags_(kNumberUint64Flag) {
    [all...]

Completed in 284 milliseconds