/external/harfbuzz/src/ |
harfbuzz-impl.c | 36 HB_Error error = (HB_Error)0; local 43 error = ERR(HB_Err_Out_Of_Memory); 46 *perror = error; 57 HB_Error error = (HB_Error)0; local 61 error = ERR(HB_Err_Out_Of_Memory); 63 if ( !error ) 66 *perror = error;
|
harfbuzz-stream.c | 73 HB_Error error = (HB_Error)0; local 77 error = ERR(HB_Err_Read_Error); 79 LOG(( "_hb_stream_seek(%ld) -> 0x%04X\n", pos, error )); 80 return error; 88 HB_Error error = HB_Err_Ok; local 94 error = ERR(HB_Err_Read_Error); 103 LOG(( "_hb_stream_frame_enter(%ld) -> 0x%04X\n", count, error )); 104 return error;
|
/external/harfbuzz_ng/src/hb-old/ |
harfbuzz-impl.c | 36 HB_Error error = (HB_Error)0; local 43 error = ERR(HB_Err_Out_Of_Memory); 46 *perror = error; 57 HB_Error error = (HB_Error)0; local 61 error = ERR(HB_Err_Out_Of_Memory); 63 if ( !error ) 66 *perror = error;
|
harfbuzz-stream.c | 73 HB_Error error = (HB_Error)0; local 77 error = ERR(HB_Err_Read_Error); 79 LOG(( "_hb_stream_seek(%ld) -> 0x%04X\n", pos, error )); 80 return error; 88 HB_Error error = HB_Err_Ok; local 94 error = ERR(HB_Err_Read_Error); 103 LOG(( "_hb_stream_frame_enter(%ld) -> 0x%04X\n", count, error )); 104 return error;
|
/external/mesa3d/src/gallium/state_trackers/vega/ |
api_context.c | 39 VGErrorCode error = VG_NO_CONTEXT_ERROR; local 42 return error; 44 error = ctx->_error; 47 return error;
|
/external/oprofile/libpp/ |
name_storage.cpp | 53 // We ignore error here, the real path will be 56 // archive path will be ignored if an error occur. 57 image_error error; local 59 error, true);
|
/frameworks/compile/libbcc/lib/Support/ |
CompilerConfig.cpp | 78 std::string error; local 79 mTarget = llvm::TargetRegistry::lookupTarget(mTriple, error); 84 mTriple.c_str(), error.c_str());
|
/libcore/luni/src/main/java/javax/xml/transform/ |
ErrorListener.java | 23 * <p>To provide customized error handling, implement this interface and 72 * Receive notification of a recoverable error. 79 * @param exception The error information encapsulated in a 87 public abstract void error(TransformerException exception) method in interface:ErrorListener 91 * <p>Receive notification of a non-recoverable error.</p> 99 * @param exception The error information encapsulated in a
|
/libcore/luni/src/main/java/org/xml/sax/ |
ErrorHandler.java | 1 // SAX error handler. 10 * Basic interface for SAX error handlers. 19 * <p>If a SAX application needs to implement customized error 30 * with {@link #error error()} calls must be registered.</p> 78 * Receive notification of a recoverable error. 80 * <p>This corresponds to the definition of "error" in section 1.2 90 * a fatal error even if the XML recommendation does not require 96 * @param exception The error information encapsulated in a 102 public abstract void error (SAXParseException exception method in interface:ErrorHandler [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
anydbm.py | 36 class error(Exception): class in inherits:Exception 40 _errors = [error] 50 _errors.append(_mod.error) 55 error = tuple(_errors) variable 79 raise error, "need 'c' or 'n' flag to open new db" 82 raise error, "db type could not be determined"
|
dbhash.py | 13 __all__ = ["error","open"] 15 error = bsddb.error # Exported for anydbm variable
|
sunaudio.py | 10 class error(Exception): class in inherits:Exception 22 raise error, 'gethdr: bad magic word' 30 raise error, 'gethdr: bad hdr_size'
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/ |
syntax.py | 26 for each error rather than raising a SyntaxError for the 32 def error(self, node, msg): member in class:SyntaxErrorChecker 46 ## self.error(target, "can't assign to list comprehension")
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/ |
icopen.py | 54 from ic import error, settypecreator namespace 57 except error:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
anydbm.py | 36 class error(Exception): class in inherits:Exception 40 _errors = [error] 50 _errors.append(_mod.error) 55 error = tuple(_errors) variable 79 raise error, "need 'c' or 'n' flag to open new db" 82 raise error, "db type could not be determined"
|
dbhash.py | 13 __all__ = ["error","open"] 15 error = bsddb.error # Exported for anydbm variable
|
sunaudio.py | 10 class error(Exception): class in inherits:Exception 22 raise error, 'gethdr: bad magic word' 30 raise error, 'gethdr: bad hdr_size'
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/ |
syntax.py | 26 for each error rather than raising a SyntaxError for the 32 def error(self, node, msg): member in class:SyntaxErrorChecker 46 ## self.error(target, "can't assign to list comprehension")
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ |
UnsupportedClassVersionErrorTest.java | 32 UnsupportedClassVersionError error = new UnsupportedClassVersionError(); local 33 assertNotNull(error); 34 assertNull(error.getMessage()); 42 "Some Error Message"); 43 assertEquals("Wrong message", "Some Error Message", e.getMessage());
|
AbstractMethodErrorTest.java | 29 Error error = new AbstractMethodError(); local 30 assertNull(error.getCause()); 31 assertNull(error.getMessage()); 39 Error error = new AbstractMethodError(null); local 40 assertNull(error.getMessage()); 41 assertNull(error.getCause()); 43 error = new AbstractMethodError("msg"); 44 assertEquals("msg", error.getMessage()) [all...] |
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/ |
LogAbortException.java | 29 public void error(Log log) { method in class:LogAbortException 30 log.error(mFormat, mArgs);
|
/bionic/libc/upstream-netbsd/libc/gen/ |
nftw.c | 47 int ftsflags, fnflag, error, postorder, sverrno; local 66 error = 0; 100 error = -1; 105 error = fn(cur->fts_path, cur->fts_statp, fnflag, &f); 106 if (error != 0) 113 return (error);
|
/cts/tests/tests/opengl/libopengltest/ |
attach_shader_eleven.cpp | 41 GLint error = glGetError(); local 42 Data data = {error, count, -1};
|
attach_shader_four.cpp | 36 GLint error = glGetError(); local 37 Data data = {error, count, -1};
|
attach_shader_seven.cpp | 34 GLint error = glGetError(); local 35 Data data = {error, -9 , -1};
|