Lines Matching defs:resultValue
243 ACELite::JSIValue resultValue = ACELite::HilogModule::Debug(thisVal, &args, LOG_ARG_NUMBER);
244 EXPECT_TRUE(resultValue == undefValue);
259 ACELite::JSIValue resultValue = ACELite::HilogModule::Info(thisVal, &args, LOG_ARG_NUMBER);
260 EXPECT_TRUE(resultValue == undefValue);
275 ACELite::JSIValue resultValue = ACELite::HilogModule::Error(thisVal, &args, LOG_ARG_NUMBER);
276 EXPECT_TRUE(resultValue == undefValue);
291 ACELite::JSIValue resultValue = ACELite::HilogModule::Warn(thisVal, &args, LOG_ARG_NUMBER);
292 EXPECT_TRUE(resultValue == undefValue);
307 ACELite::JSIValue resultValue = ACELite::HilogModule::Fatal(thisVal, &args, LOG_ARG_NUMBER);
308 EXPECT_TRUE(resultValue == undefValue);
325 ACELite::JSIValue resultValue = ACELite::HilogModule::IsLoggable(thisVal, args, ARG_NUMBER);
326 EXPECT_TRUE(ACELite::JSI::ValueToBoolean(resultValue) == true);
343 ACELite::JSIValue resultValue = ACELite::HilogModule::IsLoggable(thisVal, args, ARG_NUMBER);
344 EXPECT_TRUE(ACELite::JSI::ValueToBoolean(resultValue) == true);
361 ACELite::JSIValue resultValue = ACELite::HilogModule::IsLoggable(thisVal, args, ARG_NUMBER);
362 EXPECT_TRUE(ACELite::JSI::ValueToBoolean(resultValue) == true);
379 ACELite::JSIValue resultValue = ACELite::HilogModule::IsLoggable(thisVal, args, ARG_NUMBER);
380 EXPECT_TRUE(ACELite::JSI::ValueToBoolean(resultValue) == true);
397 ACELite::JSIValue resultValue = ACELite::HilogModule::IsLoggable(thisVal, args, ARG_NUMBER);
398 EXPECT_TRUE(ACELite::JSI::ValueToBoolean(resultValue) == true);
415 ACELite::JSIValue resultValue = ACELite::HilogModule::IsLoggable(thisVal, args, ARG_NUMBER);
416 EXPECT_TRUE(ACELite::JSI::ValueToBoolean(resultValue) == false);
432 size_t resultValue = ACELite::HilogString::Puts(fmtString, &fmtStringBuffer);
434 EXPECT_TRUE(resultValue == strlen(fmtString));
450 size_t resultValue = ACELite::HilogString::Puts(fmtString, &fmtStringBuffer, STRING_SIZE);
452 EXPECT_TRUE(resultValue == strlen(finalValue));
467 size_t resultValue = ACELite::HilogString::Puts(fmtString, &fmtStringBuffer);
468 EXPECT_TRUE(resultValue == strlen(fmtString));
483 size_t resultValue = ACELite::HilogString::Puts(fmtString, &fmtStringBuffer);
484 EXPECT_TRUE(resultValue == RET_SIZE);
498 char *resultValue = ACELite::HilogString::Get(&fmtStringBuffer);
499 EXPECT_TRUE(resultValue == nullptr);
511 char *resultValue = ACELite::HilogString::Get(nullptr);
512 EXPECT_TRUE(resultValue == nullptr);
526 size_t resultValue = ACELite::HilogString::Length(&fmtStringBuffer);
527 EXPECT_TRUE(resultValue == RET_SIZE);
539 size_t resultValue = ACELite::HilogString::Length(nullptr);
540 EXPECT_TRUE(resultValue == RET_SIZE);
570 char resultValue = ACELite::HilogString::Putc('0', nullptr);
571 EXPECT_TRUE(resultValue == rChar);