Home
last modified time | relevance | path

Searched refs:mErrors (Results 1 – 4 of 4) sorted by relevance

/frameworks/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/
DTestDelegates.java44 private List<String> mErrors = new ArrayList<String>(); field in TestDelegates
49 mErrors.clear(); in testNativeDelegates()
53 assertTrue(getErrors(), mErrors.isEmpty()); in testNativeDelegates()
58 mErrors.clear(); in testMethodDelegates()
66 assertTrue(getErrors(), mErrors.isEmpty()); in testMethodDelegates()
78 mErrors.add("Failed to load class: " + e.getMessage()); in loadAndCompareClasses()
80 mErrors.add("Failed to load class: " + e.getMessage()); in loadAndCompareClasses()
128 mErrors.add( in compare()
138 mErrors.add( in compare()
147 mErrors.add( in compare()
[all …]
/frameworks/base/core/java/android/net/http/
DSslError.java70 int mErrors; field in SslError
179 mErrors |= (0x1 << error); in addError()
193 rval = ((mErrors & (0x1 << error)) != 0); in hasError()
205 if (mErrors != 0) { in getPrimaryError()
208 if ((mErrors & (0x1 << error)) != 0) { in getPrimaryError()
/frameworks/native/services/surfaceflinger/DisplayHardware/
DComposerHal.cpp897 mErrors.emplace_back(CommandError{location, error}); in parseSetError()
999 mErrors.clear(); in resetData()
1018 return std::move(mErrors); in takeErrors()
DComposerHal.h127 std::vector<CommandError> mErrors; variable