/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
|
/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...] |