/external/pdfium/third_party/freetype/src/base/ |
ftgxval.c | 44 FT_Error error; local 49 error = FT_THROW( Invalid_Face_Handle ); 55 error = FT_THROW( Invalid_Argument ); 62 error = service->validate( face, 67 error = FT_THROW( Unimplemented_Feature ); 70 return error; 96 FT_Error error; local 101 error = FT_THROW( Invalid_Face_Handle ); 107 error = FT_THROW( Invalid_Argument ); 114 error = service->validate( face [all...] |
ftpfr.c | 48 FT_Error error = FT_Err_Ok; local 58 error = service->get_metrics( face, 89 error = FT_THROW( Unknown_File_Format ); 92 return error; 104 FT_Error error; local 116 error = service->get_kerning( face, left, right, avector ); 118 error = FT_Get_Kerning( face, left, right, 121 return error; 132 FT_Error error; local 144 error = service->get_advance( face, gindex, aadvance ) [all...] |
ftsnames.c | 47 FT_Error error = FT_ERR( Invalid_Argument ); local 83 error = FT_Err_Ok; 87 return error;
|
/external/pdfium/third_party/freetype/src/cff/ |
cffpic.c | 91 FT_Error error = FT_Err_Ok; local 98 return error; 104 error = FT_Create_Class_cff_services( library, 106 if ( error ) 109 error = FT_Create_Class_cff_field_handlers( 111 if ( error ) 130 if ( error ) 132 return error;
|
/external/pdfium/third_party/freetype/src/pshinter/ |
pshpic.c | 52 FT_Error error = FT_Err_Ok; local 59 return error; 67 if ( error ) 70 return error;
|
/external/pdfium/third_party/freetype/src/psnames/ |
pspic.c | 67 FT_Error error = FT_Err_Ok; local 74 return error; 80 error = FT_Create_Class_pscmaps_services( 82 if ( error ) 88 if ( error ) 90 return error;
|
/external/pdfium/third_party/freetype/src/sfnt/ |
sfntpic.c | 98 FT_Error error = FT_Err_Ok; local 105 return error; 111 error = FT_Create_Class_sfnt_services( library, 113 if ( error ) 116 error = FT_Create_Class_tt_cmap_classes( library, 118 if ( error ) 135 if ( error ) 137 return error;
|
/external/pdfium/third_party/freetype/src/truetype/ |
ttpic.c | 68 FT_Error error = FT_Err_Ok; local 75 return error; 81 error = FT_Create_Class_tt_services( library, 83 if ( error ) 93 if ( error ) 95 return error;
|
/external/vboot_reference/scripts/image_signing/ |
common.sh | 63 # Prints the specified error and exit the script with an error code. 66 error() { function 67 echo -e >&2 "${V_BOLD_RED}ERROR : $1${V_VIDOFF}" 70 # Prints an error message and exit with an error code. 74 error "$1"
|
/frameworks/base/tools/aapt2/ |
Logger.cpp | 33 std::ostream& Logger::error() { function in class:aapt::Logger 34 return sLog->err << "error: "; 37 std::ostream& Logger::error(const Source& source) { function in class:aapt::Logger 38 return sLog->err << source << ": error: "; 41 std::ostream& Logger::error(const SourceLine& source) { function in class:aapt::Logger 42 return sLog->err << source << ": error: "; 73 std::ostream& SourceLogger::error() { function in class:aapt::SourceLogger 74 return Logger::error(mSource); 77 std::ostream& SourceLogger::error(size_t line) { function in class:aapt::SourceLogger 78 return Logger::error(SourceLine{ mSource.path, line }) [all...] |
/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...] |
/ndk/sources/android/crazy_linker/src/ |
crazy_linker_thread_unittest.cpp | 21 const char* error = data->GetError(); local 22 EXPECT_TRUE(error); 23 EXPECT_STREQ("", error); 44 const char* error = data->GetError(); local 45 EXPECT_STREQ("Hello", error); 47 error = data->GetError(); 48 EXPECT_STREQ("Hello", error); 84 const char* error = data->GetError(); local 85 size_t error_len = strlen(error); 91 TEST_TEXT << "Checking error[" << n << "]" [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")
|
/system/bt/test/suite/cases/ |
pan.c | 27 int error; local 35 CALL_AND_WAIT(error = pan_interface->enable(local_role), pan_control_state_changed); 36 TASSERT(error == BT_STATUS_SUCCESS, "Error enabling PAN: %d", error); 39 TASSERT(pan_get_error() == BT_STATUS_SUCCESS, "Error in control callback: %d", pan_get_error()); 45 int error; local 51 CALL_AND_WAIT(error = pan_interface->connect(&bt_remote_bdaddr, local_role, remote_role), pan_connection_state_changed); 52 TASSERT(error == BT_STATUS_SUCCESS, "Error connecting to remote host: %d", error) 68 int error; local [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);
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/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());
|