Lines Matching refs:get
62 LOGE("Failed to get native context instance");
76 LOGE("Failed to get underlying preferences instance.");
339 v.integer = (int64_t)std::get<int>(pValue.value_);
342 v.integer = std::get<int64_t>(pValue.value_);
345 v.float64 = (double)std::get<float>(pValue.value_);
348 v.float64 = std::get<double>(pValue.value_);
351 auto pValueStr = std::get<std::string>(pValue.value_);
356 v.boolean = std::get<bool>(pValue.value_);
359 auto boolVector = std::get<std::vector<bool>>(pValue.value_);
363 auto doubleVector = std::get<std::vector<double>>(pValue.value_);
367 auto stringVector = std::get<std::vector<std::string>>(pValue.value_);