HomeSort by relevance Sort by last modified time
    Searched refs:err_string (Results 1 - 11 of 11) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pyfpe.h 136 #define PyFPE_START_PROTECT(err_string, leave_stmt) \
138 PyErr_SetString(PyExc_FloatingPointError, err_string); \
168 #define PyFPE_START_PROTECT(err_string, leave_stmt)
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pyfpe.h 136 #define PyFPE_START_PROTECT(err_string, leave_stmt) \
138 PyErr_SetString(PyExc_FloatingPointError, err_string); \
168 #define PyFPE_START_PROTECT(err_string, leave_stmt)
  /external/lldb/test/lang/objc/objc-checker/
TestObjCCheckers.py 85 err_string = expr_error.GetCString()
86 self.assertTrue ("selector" in err_string)
  /external/lldb/source/API/
SBError.cpp 225 const char * err_string = GetCString(); local
226 description.Printf ("error: %s", (err_string != NULL ? err_string : ""));
  /external/chromium_org/ppapi/
PRESUBMIT.py 11 def RunCmdAndCheck(cmd, err_string, output_api, cwd=None, warning=False):
20 '%s\n\n%s' % (err_string, p_stderr)))
23 output_api.PresubmitError(err_string,
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
lexer.py 155 assert s[i].isdigit() or s[i] in "abcdefABCDEF", self.err_string()
193 raise LexError( self.err_string() + "unterminated char constant" )
216 def err_string(self): member in class:Lexer
parse_core.py 81 sys.stderr.write( lexer.err_string() )
  /external/chromium_org/third_party/libusb/src/libusb/os/
wince_usb.c 61 static char err_string[ERR_BUFFER_SIZE]; local
87 if (WideCharToMultiByte(CP_ACP, 0, wErr_string, -1, err_string, ERR_BUFFER_SIZE, NULL, NULL) < 0)
89 strcpy(err_string, "Unable to convert error string");
91 return err_string;
    [all...]
windows_usb.c 151 static char err_string[ERR_BUFFER_SIZE]; local
159 safe_sprintf(err_string, ERR_BUFFER_SIZE, "[%u] ", error_code);
162 MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), &err_string[safe_strlen(err_string)],
163 ERR_BUFFER_SIZE - (DWORD)safe_strlen(err_string), NULL);
167 safe_sprintf(err_string, ERR_BUFFER_SIZE,
170 safe_sprintf(err_string, ERR_BUFFER_SIZE, "Unknown error code %u", error_code);
173 for (i=safe_strlen(err_string)-1; (i>=0) && ((err_string[i]==0x0A) || (err_string[i]==0x0D)); i--)
    [all...]
  /external/lldb/source/Plugins/Process/gdb-remote/
ProcessGDBRemote.cpp 2253 const char *err_string = error.AsCString(); local
    [all...]
  /art/runtime/
dex_file_verifier.cc 92 const DexFile::MethodId* DexFileVerifier::CheckLoadMethodId(uint32_t idx, const char* err_string) {
93 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumMethodIds(), err_string))) {
    [all...]

Completed in 494 milliseconds