/external/pdfium/third_party/freetype/src/cid/ |
cidgload.c | 49 FT_Error error = FT_Err_Ok; local 72 error = inc->funcs->get_glyph_data( inc->object, 74 if ( error ) 84 if ( !error ) 91 if ( error ) 120 error = FT_THROW( Invalid_Offset ); 160 error = decoder->funcs.parse_charstrings( 170 if ( !error && inc && inc->funcs->get_glyph_metrics ) 180 error = inc->funcs->get_glyph_metrics( inc->object, 191 return error; 275 FT_Error error; local [all...] |
/external/pdfium/third_party/freetype/src/sfnt/ |
pngshim.c | 120 /* Use error callback to avoid png writing to stderr. */ 125 FT_Error* error = (FT_Error*)png_get_error_ptr( png ); local 130 *error = FT_THROW( Out_Of_Memory ); 155 FT_Error error; local 189 FT_Error error = FT_Err_Ok; local 204 error = FT_THROW( Invalid_Argument ); 214 error = FT_THROW( Invalid_Argument ); 221 &error, 226 error = FT_THROW( Out_Of_Memory ); 233 error = FT_THROW( Out_Of_Memory ) [all...] |
sfdriver.c | 161 FT_Error error; local 164 error = tt_face_get_ps_name( face, glyph_index, &gname ); 165 if ( !error ) 168 return error; 192 FT_Error error = tt_face_get_ps_name( face, i, &gname ); local 195 if ( error ) 260 FT_Error error = FT_Err_Ok; local 262 FT_UNUSED( error ); 302 FT_Error error = FT_Err_Ok; local 304 FT_UNUSED( error ); 352 FT_Error error; local [all...] |
ttkern.c | 47 FT_Error error; local 56 error = face->goto_table( face, TTAG_kern, stream, &table_size ); 57 if ( error ) 64 error = FT_THROW( Table_Missing ); 162 return error;
|
/external/pdfium/third_party/freetype/src/smooth/ |
ftsmooth.c | 64 FT_Error error = FT_Err_Ok; local 69 error = FT_THROW( Invalid_Argument ); 80 return error; 105 FT_Error error; local 129 error = FT_THROW( Invalid_Argument ); 136 error = FT_THROW( Cannot_Render_Glyph ); 205 * XXX: on 16bit system, we return an error for huge bitmap 211 error = FT_THROW( Invalid_Pixel_Size ); 221 error = FT_THROW( Raster_Overflow ); 281 error = render->raster_render( render->raster, ¶ms ) 402 FT_Error error; local 420 FT_Error error; local [all...] |
/external/pdfium/third_party/freetype/src/truetype/ |
ttdriver.c | 66 FT_Error error = FT_Err_Ok; local 77 error = FT_ERR( Unimplemented_Feature ); 82 return error; 96 FT_Error error = FT_Err_Ok; local 109 return error; 164 /* FreeType error code. 0 means success. */ 260 FT_Error error = FT_Err_Ok; local 278 error = sfnt->load_strike_metrics( ttface, strike_index, metrics ); 279 if ( error ) 283 return error; 294 FT_Error error = FT_Err_Ok; local 363 FT_Error error; local [all...] |
/external/pdfium/third_party/freetype/src/type1/ |
t1afm.c | 111 FT_Error error = FT_Err_Ok; local 131 error = FT_THROW( Unknown_File_Format ); 151 error = FT_THROW( Unknown_File_Format ); 159 error = FT_THROW( Unknown_File_Format ); 188 error = FT_Set_Charmap( t1_face, charmap ); 189 if ( error ) 212 error = FT_Set_Charmap( t1_face, oldcharmap ); 213 if ( error ) 221 if ( error ) 227 return error; 241 FT_Error error = FT_ERR( Unknown_File_Format ); local [all...] |
/external/protobuf/src/google/protobuf/io/ |
gzip_stream.cc | 103 int error = internalInflateInit2(&zcontext_, format_); local 104 if (error != Z_OK) { 105 return error; 112 int error = inflate(&zcontext_, flush); local 113 return error; 245 int error = Z_OK; local 258 error = deflate(&zcontext_, flush); 259 } while (error == Z_OK && zcontext_.avail_out == 0); 267 return error;
|
/external/regex-re2/re2/testing/ |
tester.h | 58 bool error() { return error_; } function in class:re2::TestInstance 78 bool error_; // error during constructor? 96 bool error() { return error_; } function in class:re2::Tester
|
/external/selinux/policycoreutils/gui/ |
semanagePage.py | 115 def error(self, message): member in class:semanagePage 143 self.error(e.args[0]) 156 self.error(e.args[0])
|
/external/skia/src/codec/ |
SkCodec_libico.cpp | 48 SkCodecPrintf("Error: unable to read ico directory header.\n"); 55 SkCodecPrintf("Error: No images embedded in ico.\n"); 64 SkCodecPrintf("Error: unable to read ico directory entries.\n"); 162 SkCodecPrintf("Error: could not find any valid embedded ico codecs.\n"); 208 // At least one image will have smaller error than this initial value 214 float error = SkTAbs(((float) (width * height)) - desiredSize); local 215 if (error < minError) { 216 minError = error; 244 // On a fatal error, keep trying to find an image to decode 256 SkCodecPrintf("Error: No matching candidate image in ico.\n") [all...] |
/external/slf4j/jcl-over-slf4j/src/test/java/org/apache/commons/logging/ |
InvokeJCLTest.java | 59 log.error(null); 60 log.error("error message"); 77 log.error(null, e); 78 log.error("error message", e);
|
/external/slf4j/slf4j-jcl/src/test/java/org/slf4j/ |
InvocationTest.java | 80 logger.error("Hello world 4."); 81 logger.error("Hello world {}", new Integer(3)); 82 logger.error("Hello world 4.", e); 90 logger.error(null); 96 logger.error(null, e); 105 logger.error(blue, "hello"); 110 logger.error(blue, "hello {}", "world"); 115 logger.error(blue, "hello {} and {} ", "world", "universe");
|
/external/slf4j/slf4j-jdk14/src/main/java/org/slf4j/impl/ |
JDK14LoggerAdapter.java | 475 public void error(String msg) { method in class:JDK14LoggerAdapter 495 public void error(String format, Object arg) { method in class:JDK14LoggerAdapter 518 public void error(String format, Object arg1, Object arg2) { method in class:JDK14LoggerAdapter 539 public void error(String format, Object... arguments) { method in class:JDK14LoggerAdapter 555 public void error(String msg, Throwable t) { method in class:JDK14LoggerAdapter
|
/external/slf4j/slf4j-nop/src/test/java/org/slf4j/ |
InvocationTest.java | 74 logger.error("Hello world 4."); 75 logger.error("Hello world {}", new Integer(3)); 76 logger.error("Hello world 4.", e); 84 logger.error(null); 90 logger.error(null, e); 99 logger.error(blue, "hello"); 104 logger.error(blue, "hello {}", "world"); 109 logger.error(blue, "hello {} and {} ", "world", "universe");
|
/external/slf4j/slf4j-simple/src/test/java/org/slf4j/ |
InvocationTest.java | 78 logger.error("Hello world 4."); 79 logger.error("Hello world {}", new Integer(3)); 80 logger.error("Hello world 4.", e); 96 logger.error(null); 102 logger.error(null, e); 111 logger.error(blue, "hello"); 116 logger.error(blue, "hello {}", "world"); 121 logger.error(blue, "hello {} and {} ", "world", "universe");
|
/external/squashfs-tools/squashfs-tools/ |
process_fragments.c | 44 #include "error.h" 88 ERROR("read_filesystem: Lseek on destination failed because %s, " 92 ERROR("Read on destination failed\n"); 161 ERROR("no space in reserve cache\n"); 178 int error; local 186 ERROR("Failed to read fragment from output" 194 block_size, &error); 196 BAD_ERROR("%s uncompress failed with error code %d\n", 197 comp->name, error); 203 ERROR("Failed to read fragment from output [all...] |
/external/toybox/toys/posix/ |
cpio.c | 147 // archive. Since doing so overwrites errno, report error now 214 unsigned nlen, error = 0, zero = 0; local 255 if (!error++) perror_msg("bad read from file '%s'", name);
|
/external/v8/test/cctest/ |
test-thread-termination.cc | 244 // triggered by the creation of error objects in connection with ICs. 470 v8::Local<v8::Value> error = v8::Exception::Error(v8_str("error")); local 472 CHECK(error->IsUndefined());
|
/external/valgrind/drd/tests/ |
omp_matinv.c | 244 /** Compute the average square error between the identity matrix and the 279 "-q: quiet mode -- do not print computed error.\n" 294 double error; local 312 fprintf(stderr, "Error: wrong number of arguments.\n"); 317 /* Error checking. */ 330 error = identity_error(prod, matrix_size); 331 ratio = error / (eps * matrix_size); 334 printf("error = %g; epsilon = %g; error / (epsilon * n) = %g\n", 335 error, eps, ratio) [all...] |
/external/wpa_supplicant_8/src/ap/ |
wpa_auth_ie.h | 29 const u8 *error; member in struct:wpa_eapol_ie_parse
|
/external/wpa_supplicant_8/src/radius/ |
radius_das.c | 54 int error = 405; local 70 error = 401; 81 error = 407; 93 error = 407; 115 error = 407; 150 error = 403; 155 error = 503; 161 error = 508; 164 error = 0; 169 reply = radius_msg_new(error ? RADIUS_CODE_DISCONNECT_NAK [all...] |
/external/wpa_supplicant_8/wpa_supplicant/dbus/ |
dbus_common.c | 280 DBusError error; local 284 dbus_error_init(&error); 285 priv->con = dbus_bus_get(DBUS_BUS_SYSTEM, &error); 292 error.name, error.message); 295 dbus_error_free(&error);
|
/external/wpa_supplicant_8/wpa_supplicant/ |
win_if_list.c | 78 int i, error; local 94 error = (int) GetLastError(); 95 if (error == ERROR_NO_MORE_ITEMS) 98 error); 150 fprintf(stderr, "Error - pcap_findalldevs: %s\n", err);
|
/external/zlib/src/contrib/iostream2/ |
zstream.h | 62 * decompression. errno can be checked to distinguish two error 63 * cases (if errno is zero, the zlib error is Z_MEM_ERROR). 78 * the zlib error number (see function error() below). 91 /* Returns the error message for the last error which occurred on the 92 * given compressed file. errnum is set to zlib error number. If an 93 * error occurred in the file system and not in the compression library, 95 * to get the exact error code. 97 const char* error(int* errnum) function in class:izstream 230 const char* error(int* errnum) { function in class:ozstream [all...] |