Searched defs:error (Results 176 - 200 of 293) sorted by path

1234567891011>>

/frameworks/base/tools/aapt2/unflatten/
H A DResChunkPullParser.h63 const std::string& error() const;
118 inline const std::string& ResChunkPullParser::error() const { return error_; } function in class:aapt::ResChunkPullParser
/frameworks/base/tools/aapt2/xml/
H A DXmlActionExecutor.cpp51 bool error = false; local
53 error |= !action(el, diag);
60 error |= !iter->second.Execute(policy, diag, child_el);
70 error = true;
74 return !error;
H A DXmlPullParser.cpp101 const std::string& XmlPullParser::error() const { return error_; } function in class:aapt::xml::XmlPullParser
/frameworks/base/tools/apilint/
H A Dapilint.py209 def __init__(self, sig, clazz, detail, error, rule, msg):
211 self.error = error
215 if error:
242 def _fail(clazz, detail, error, rule, msg):
249 failures[sig] = Failure(sig, clazz, detail, error, rule, msg)
255 def error(clazz, detail, rule, msg): function
269 error(clazz, f, "C2", "Constant field names must be FOO_NAME")
274 error(clazz, f, None, "All constants must be defined at compile time")
280 error(claz
[all...]
/frameworks/base/tools/bit/
H A Dmake.cpp110 json_error(const string& filename, const char* error, bool quiet) argument
113 print_error("Unable to parse module info file (%s): %s", error, filename.c_str());
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java474 Bridge.getLog().error(LayoutLog.TAG_UNSUPPORTED, "Path.op() not supported", null);
484 /*package*/ static float[] nApproximate(long nPath, float error) { argument
490 PathIterator iterator = pathDelegate.getJavaShape().getPathIterator(null, error);
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DLog.java49 public void error(String format, Object... args) { method in class:Log
59 error(format + "\n" + sw.toString(), args);
H A DLogAbortException.java29 public void error(Log log) { method in class:LogAbortException
30 log.error(mFormat, mArgs);
/frameworks/compile/libbcc/bcinfo/
H A DBitcodeTranslator.cpp132 std::string error; local
H A DMetadataExtractor.cpp92 // Return true on success, false on error.
98 // An error occurs if one of the metadata operands doesn't have a
613 std::string error; local
/frameworks/compile/libbcc/lib/
H A DCompilerConfig.cpp85 std::string error; local
86 mTarget = llvm::TargetRegistry::lookupTarget(mTriple, error);
91 mTriple.c_str(), error.c_str());
H A DRSCompilerDriver.cpp120 // functions. Fail if verification returns an error.
165 std::error_code error; local
166 llvm::raw_fd_ostream out_stream(pOutputPath, error, llvm::sys::fs::F_RW);
167 if (error) {
169 error.message().c_str());
196 path.c_str(), error, llvm::sys::fs::F_RW | llvm::sys::fs::F_Text));
197 if (error) {
199 error.message().c_str());
H A DRSScriptGroupFusion.cpp138 int error = getFusedFuncSig(sources, slots, signature); local
140 if (error < 0) {
/frameworks/compile/mclinker/include/mcld/Support/
H A DFileHandle.h28 GoodBit = 0, // no error
29 BadBit = 1L << 0, // error due to the inappropriate operation
118 int error() const { return errno; } function in class:mcld::FileHandle
H A DMsgHandling.h30 MsgHandler error(unsigned int pID);
49 inline mcld::MsgHandler mcld::error(unsigned int pID) { function in class:mcld
/frameworks/compile/mclinker/lib/Core/
H A DLinker.cpp276 error(diag::err_cannot_open_output_file) << "Linker::emit()" << pPath;
327 std::string error; local
331 m_pConfig->targets().getArch(), triple, error);
335 fatal(diag::fatal_cannot_init_target) << triple.str() << error;
/frameworks/compile/mclinker/lib/Support/
H A DTargetRegistry.cpp92 std::string error; local
93 result = lookupTarget(pTriple.getTriple(), error);
96 "'\n" + "(Detail: " + error + ")\n";
/frameworks/data-binding/compilationTests/src/test/java/android/databinding/compilationTest/
H A DCompilationResult.java31 public final String error; field in class:CompilationResult
33 public CompilationResult(int resultCode, String output, String error) { argument
36 this.error = error;
44 return resultCode != 0 && error.indexOf(text) > 0;
48 List<ScopedException> errors = ScopedException.extractErrors(error);
52 assertEquals(error, 1, errors.size());
58 for (String line : error.split(StringUtils.LINE_SEPARATOR)) {
67 return ScopedException.extractErrors(error);
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/util/
H A DPreconditions.java23 public static void check(boolean value, String error, Object... args) { argument
25 L.e(error, args);
29 public static void checkNotNull(Object value, String error, Object... args) { argument
31 L.e(error, args);
35 public static void checkNull(Object value, String error, Object... args) { argument
37 L.e(error, args);
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DCameraAgent.java162 public void onError(int error, CameraProxy camera); argument
231 * camera device. This error callback is different from the one defined
261 * @param cameraId The camera which is causing the open error.
418 * @param cb The callback when any error happens.
/frameworks/ex/camera2/public/src/com/android/ex/camera2/blocking/
H A DBlockingCameraManager.java68 * Returns the error code {@link ERROR_DISCONNECTED} if disconnected, or one of
69 * {@code CameraDevice.StateCallback#ERROR_*} if there was another error.
71 * @return int Disconnect/error code
78 * Thrown when camera device enters error state during open, or if
252 public void onError(CameraDevice camera, int error) { argument
257 if (error <= 0) {
258 throw new AssertionError("Expected error to be a positive number");
264 mError = error;
274 if (mProxy != null) mProxy.onError(camera, error);
319 "Failed to open camera device: error cod
[all...]
H A DBlockingStateCallback.java93 * Device has encountered a fatal error
127 public void onError(CameraDevice camera, int error) { argument
129 mProxy.onError(camera, error);
/frameworks/ex/camera2/utils/tests/src/com/android/ex/camera2/utils/
H A DCamera2DeviceTester.java78 public void onError(CameraDevice camera, int error) {} argument
/frameworks/ex/framesequence/jni/
H A DBitmapDecoderJNI.cpp27 void throwException(JNIEnv* env, const char* error) { argument
29 env->ThrowNew(clazz, error);

Completed in 472 milliseconds

1234567891011>>