HomeSort by relevance Sort by last modified time
    Searched defs:isOk (Results 1 - 25 of 134) sorted by null

1 2 3 4 5 6

  /external/autotest/frontend/client/src/autotest/moblab/rpc/
OperationStatus.java 31 public boolean isOk() {
  /external/deqp/modules/internal/
ditSRGB8ConversionTest.cpp 70 bool isOk = true;
85 isOk = false;
88 if (isOk)
ditBuildInfoTests.cpp 128 const bool isOk = valueName != DE_NULL;
133 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
134 isOk ? "Pass" : "No enum name found");
157 const bool isOk = *((const deUint8*)&multiByte) == (deUint8)0x01;
159 const bool isOk = *((const deUint8*)&multiByte) == (deUint8)0x02;
167 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
168 isOk ? "Pass" : "Configured endianness inconsistent");
ditImageCompareTests.cpp 96 const bool isOk = de::inRange(result, m_minBound, m_maxBound);
97 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
98 isOk ? "Pass" : "Metric out of bounds");
142 const bool isOk = result == m_expectedResult;
143 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
144 isOk ? "Pass" : "Wrong comparison result");
  /system/security/keystore/include/keystore/
keystore_return_types.h 61 inline bool isOk() const {
133 inline bool isOk() const {
keymaster_tags.h 59 * value1.isOk() yields false, but value2.isOk() yields true, thus value2.value() is save to access.
287 * !isOk(). If the wrapped type is a pointer or value and !isOk(), it is still safe to access the
311 bool isOk() const { return !null_; }
323 if (v.isOk()) return v;
329 if (head.isOk()) return head;
338 if (optional.isOk()) return optional.value();
  /system/security/keystore/
keystore_attestation_id.h 36 bool isOk() const { return NO_ERROR == _status; }
56 * .isOk() before accessing.
  /frameworks/hardware/interfaces/sensorservice/1.0/vts/functional/
VtsHalSensorManagerV1_0TargetTest.cpp 48 static inline ::testing::AssertionResult isOk(const Return<T> &ret) {
49 return (ret.isOk()
56 inline ::testing::AssertionResult isOk(const Return<Result> &ret) {
57 return ((ret.isOk() && ret == Result::OK)
61 << (ret.isOk() ? toString(static_cast<Result>(ret)) : "");
64 static inline ::testing::AssertionResult isOk(Result result) {
89 #define EXPECT_OK(__ret__) EXPECT_TRUE(isOk(__ret__))
90 #define ASSERT_OK(__ret__) ASSERT_TRUE(isOk(__ret__))
  /external/deqp/modules/egl/
teglClientExtensionTests.cpp 188 bool isOk = true;
220 isOk = false;
229 isOk = false;
233 if (isOk)
teglNativeColorMappingTests.cpp 329 bool isOk = true;
351 isOk = false;
363 return isOk;
372 bool isOk = true;
392 isOk = false;
404 return isOk;
412 bool isOk = true;
433 isOk = false;
445 return isOk;
teglRenderCase.cpp 123 bool isOk = true;
146 isOk = false;
170 isOk = false;
197 isOk = false;
202 if (!isOk && m_testCtx.getTestResult() == QP_TEST_RESULT_PASS)
  /external/deqp/modules/gles2/functional/
es2fImplementationLimitTests.cpp 162 const bool isOk = compare<T>(m_minRequiredValue, value);
167 if (!isOk)
170 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
171 isOk ? "Pass" : "Requirement not satisfied");
es2fDepthTests.cpp 184 bool isOk = errorCodesOk && imagesOk;
185 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
186 isOk ? "Pass" : failReason);
es2fShaderFragDataTests.cpp 76 const bool isOk = compareThreshold(resultColor, expectedColor, threshold);
78 if (!isOk)
180 if (!program.isOk())
202 bool isOk;
207 isOk = compareSingleColor(m_testCtx.getLog(), result, tcu::RGBA::green(), threshold);
209 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
210 isOk ? "Pass" : "Image comparison failed");
es2fBufferTestUtil.cpp 77 bool isOk = true;
93 isOk = false;
131 log << TestLog::Message << (isOk ? "Verification passed." : "Verification FAILED!") << TestLog::EndMessage;
134 return isOk;
298 if (!m_program->isOk())
418 bool isOk = true;
471 isOk = false;
481 return isOk;
508 if (!m_program->isOk())
586 bool isOk = true
    [all...]
  /frameworks/native/libs/binder/include/binder/
Status.h 47 // if (!remote_exception.isOk()) {
132 bool isOk() const { return mException == EX_NONE; }
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/imap/
ImapResponse.java 52 public boolean isOk() {
  /packages/apps/Email/provider_src/com/android/email/mail/store/imap/
ImapResponse.java 61 public boolean isOk() {
  /external/deqp/modules/gles3/functional/
es3fDepthTests.cpp 187 bool isOk = errorCodesOk && imagesOk;
188 m_testCtx.setTestResult(isOk ? QP_TEST_RESULT_PASS : QP_TEST_RESULT_FAIL,
189 isOk ? "Pass" : failReason);
  /external/v8/src/inspector/
v8-debugger-script.cc 109 bool isOk = false;
110 m_executionContextId = executionContextId.toInteger(&isOk);
111 if (!isOk) m_executionContextId = 0;
  /hardware/interfaces/keymaster/3.0/vts/functional/
keymaster_tags.h 59 * value1.isOk() yields false, but value2.isOk() yields true, thus value2.value() is save to access.
271 * !isOk(). If the wrapped type is a pointer or value and !isOk(), it is still safe to access the
295 bool isOk() const { return !null_; }
307 if (v.isOk()) return v;
313 if (head.isOk()) return head;
322 if (optional.isOk()) return optional.value();
  /packages/apps/Email/tests/src/com/android/email/mail/store/imap/
ImapResponseParserTest.java 231 assertTrue(r.isOk());
235 assertTrue(r.isOk());
239 assertTrue(r.isOk());
374 assertTrue(p.readResponse().isOk());
  /system/libhidl/base/include/hidl/
Status.h 49 // if (!remote_exception.isOk()) {
110 bool isOk() const { return mException == EX_NONE; }
159 bool isOk() const {
161 return mStatus.isOk();
249 if (other.mStatus.isOk() || !other.mCheckedStatus) {
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
DynamicTableModel.java 183 private boolean isOk = true;
228 return isOk && lastElement < calculatedNumElements;
234 isOk = false;
272 isOk = false;
  /external/deqp/framework/common/
tcuImageCompare.cpp 125 const bool isOk = boolAll(lessThanEqual(diff, threshold));
127 if (isOk)
144 const bool isOk = boolAll(lessThanEqual(diff, threshold));
146 pixelFoundForReference = isOk;
167 const bool isOk = boolAll(lessThanEqual(diff, threshold));
169 pixelFoundForResult = isOk;
222 bool isOk = difference <= threshold;
226 if (!isOk || logMode == COMPARE_LOG_EVERYTHING)
235 if (!isOk)
254 return isOk;
    [all...]

Completed in 614 milliseconds

1 2 3 4 5 6