HomeSort by relevance Sort by last modified time
    Searched defs:errors (Results 351 - 375 of 1189) sorted by null

<<11121314151617181920>>

  /external/annotation-tools/scene-lib/
junit.jar 
  /cts/hostsidetests/net/app/src/com/android/cts/net/hostside/
AbstractRestrictBackgroundNetworkTestCase.java 469 final StringBuilder errors = new StringBuilder(); local
481 errors.append(String.format("External site connection failed: expected %s, got %s\n",
485 errors.append(String.format("Connection state mismatch: expected %s/%s, got %s/%s\n",
489 if (errors.length() > 0) {
490 errors.append("\tnetworkInfo: " + networkInfo + "\n");
491 errors.append("\tconnectionCheckDetails: " + connectionCheckDetails + "\n");
493 return errors.toString();
1001 final String[] errors = new String[]{null}; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
textio.c 131 {"errors", (getter)textiobase_errors_get, NULL, textiobase_errors_doc},
192 PyObject *errors; member in struct:__anon4385
204 PyObject *errors = NULL; local
205 char *kwlist[] = {"decoder", "translate", "errors", NULL};
208 kwlist, &decoder, &translate, &errors))
214 if (errors == NULL) {
215 self->errors = PyUnicode_FromString("strict");
216 if (self->errors == NULL)
220 Py_INCREF(errors);
221 self->errors = errors;
669 PyObject *errors; member in struct:__anon4386
831 char *errors = NULL; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
bytearrayobject.c 754 static char *kwlist[] = {"source", "encoding", "errors", 0};
757 const char *errors = NULL; local
770 &arg, &encoding, &errors))
775 if (encoding != NULL || errors != NULL) {
777 "encoding or errors without sequence argument");
786 encoded = PyCodec_Encode(arg, encoding, errors);
812 encoded = PyCodec_Encode(arg, encoding, errors);
825 /* If it's not unicode, there can't be encoding or errors */
826 if (encoding != NULL || errors != NULL) {
828 "encoding or errors without a string argument");
2553 const char *errors = NULL; local
    [all...]
fileobject.c 558 PyFile_SetEncodingAndErrors(PyObject *f, const char *enc, char* errors)
567 if (errors) {
568 oerrors = PyString_FromString(errors);
1829 const char *encoding, *errors; local
2570 char *errors = fobj->f_errors == Py_None ? local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
pythonrun.c 150 char *errors = NULL; local
275 errors = strchr(p, ':');
276 if (errors) {
277 *errors = '\0';
278 errors++;
345 if (!PyFile_SetEncodingAndErrors(sys_stream, icodeset, errors))
357 if (!PyFile_SetEncodingAndErrors(sys_stream, codeset, errors))
369 if (!PyFile_SetEncodingAndErrors(sys_stream, codeset, errors))
470 * XXX triggers a comedy of errors as subsystem after subsystem
993 /* old style errors */
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
tarfile.py 226 def uts(s, encoding, errors):
229 if errors == "utf-8":
244 return s.encode(encoding, errors)
330 """General exception for extract errors."""
342 """Base exception for header errors."""
958 def get_info(self, encoding, errors):
982 info[key] = info[key].encode(encoding, errors)
986 def tobuf(self, format=DEFAULT_FORMAT, encoding=ENCODING, errors="strict"):
989 info = self.get_info(encoding, errors)
996 return self.create_pax_header(info, encoding, errors)
1493 errors = None # Error handler for unicode conversion. variable in class:TarFile
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
textio.c 131 {"errors", (getter)textiobase_errors_get, NULL, textiobase_errors_doc},
192 PyObject *errors; member in struct:__anon4698
204 PyObject *errors = NULL; local
205 char *kwlist[] = {"decoder", "translate", "errors", NULL};
208 kwlist, &decoder, &translate, &errors))
214 if (errors == NULL) {
215 self->errors = PyUnicode_FromString("strict");
216 if (self->errors == NULL)
220 Py_INCREF(errors);
221 self->errors = errors;
653 PyObject *errors; member in struct:__anon4699
815 char *errors = NULL; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_testcapimodule.c 1137 const char *encoding, *errors = NULL; local
1147 const char *encoding, *errors = NULL; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
bytearrayobject.c 748 static char *kwlist[] = {"source", "encoding", "errors", 0};
751 const char *errors = NULL; local
764 &arg, &encoding, &errors))
769 if (encoding != NULL || errors != NULL) {
771 "encoding or errors without sequence argument");
780 encoded = PyCodec_Encode(arg, encoding, errors);
806 encoded = PyCodec_Encode(arg, encoding, errors);
819 /* If it's not unicode, there can't be encoding or errors */
820 if (encoding != NULL || errors != NULL) {
822 "encoding or errors without a string argument");
2545 const char *errors = NULL; local
    [all...]
fileobject.c 551 PyFile_SetEncodingAndErrors(PyObject *f, const char *enc, char* errors)
560 if (errors) {
561 oerrors = PyString_FromString(errors);
1759 const char *encoding, *errors; local
2503 char *errors = fobj->f_errors == Py_None ? local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
pythonrun.c 144 char *errors = NULL; local
263 errors = strchr(p, ':');
264 if (errors) {
265 *errors = '\0';
266 errors++;
333 if (!PyFile_SetEncodingAndErrors(sys_stream, icodeset, errors))
345 if (!PyFile_SetEncodingAndErrors(sys_stream, codeset, errors))
357 if (!PyFile_SetEncodingAndErrors(sys_stream, codeset, errors))
458 * XXX triggers a comedy of errors as subsystem after subsystem
980 /* old style errors */
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
ErrorManager.java 50 /** Defines all the errors ANTLR can generator for both the tool and for
62 * find any errors/mismatches rather than leaving a mistyped string in
79 * During initialization of this class, all errors go straight to System.err.
81 * can I do errors properly? For example, if the string template group file
89 * TODO: get antlr.g etc.. parsing errors to come here.
92 // TOOL ERRORS
93 // file errors
112 // code gen errors
119 // GRAMMAR ERRORS
204 // Dependency sorting errors
261 public int errors; field in class:ErrorManager.ErrorState
    [all...]
  /external/curl/src/
tool_cfgable.h 102 bool failonerror; /* fail on (HTTP) errors */
259 int showerror; /* -1 == unset, default => show errors
260 0 => -s is used to NOT show errors
261 1 => -S has been used to show errors */
265 FILE *errors; /* Error stream, defaults to stderr */ member in struct:GlobalConfig
  /external/e2fsprogs/misc/
mke2fs.c 2752 short errors = fs->super->s_errors; local
    [all...]
tune2fs.c 23 * 93/12/29 - Added the -e option to change errors behavior
90 static unsigned short errors; variable
    [all...]
  /external/freetype/src/base/
ftobjs.c 2187 FT_Error errors[FT_RACCESS_N_RULES]; local
    [all...]
  /external/guice/extensions/throwingproviders/test/com/google/inject/throwingproviders/
CheckedProviderTest.java 1160 List<Message> errors = ImmutableList.copyOf(ce.getErrorMessages()); local
1192 List<Message> errors = ImmutableList.copyOf(ce.getErrorMessages()); local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
RBBIMonkeyTest.java 1041 StringBuilder errors = new StringBuilder(); local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
RBBIMonkeyTest.java 1038 StringBuilder errors = new StringBuilder(); local
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/
Parser.java 865 Parser.errorMessages[Parser.errors[this.action[1]]]);
5228 private static int[] errors; field in class:Parser
    [all...]
  /external/libpng/contrib/libtests/
pngimage.c 513 ERRORS, /* just errors */
525 #define STRICT 0x020 /* Fail on warnings as well as errors */
527 #define CONTINUE 0x080 /* Continue on APP_FAIL errors */
538 #define RESULT_RELAXED(r) (((r) & ~((1U<<ERRORS)-1)) == 0)
548 png_uint_32 results; /* A mask of errors seen */
705 case VERBOSE: case WARNINGS: case ERRORS: case QUIET:
761 /* Errors cause this routine to exit to the fail code */
762 if (level > APP_FAIL || (level > ERRORS && !(dp->options & CONTINUE)))
1663 int errors = 0; local
    [all...]
  /external/libpng/contrib/tools/
pngcp.c 124 ERRORS, /* just errors */
135 #define STRICT 0x010 /* Fail on warnings as well as errors */
137 #define CONTINUE 0x040 /* Continue on APP_FAIL errors */
155 #define RESULT_RELAXED(r) (((r) & ~((1U<<ERRORS)-1)) == 0)
294 S(errors, ERRORS)
438 png_uint_32 results; /* A mask of errors seen */
613 case VERBOSE: case WARNINGS: case ERRORS: case QUIET:
630 /* Errors cause this routine to exit to the fail code *
2332 int errors = 0; local
    [all...]
  /external/parameter-framework/upstream/parameter/
ParameterMgr.cpp 546 // Load can not fail, ie continue but log the load errors
1569 core::Results errors; local
    [all...]
  /external/protobuf/python/google/protobuf/pyext/
message.cc 1311 PyObject* errors = NULL; local
2175 vector<string> errors; local
    [all...]

Completed in 2784 milliseconds

<<11121314151617181920>>