/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_xpickle.py | 37 error = KeyError variable in class:DumpCPickle_LoadPickle 49 error = cPickle.BadPickleGet variable in class:DumpPickle_LoadCPickle 78 error = None variable in class:AbstractCompatTests 83 self.assertTrue(self.error) 187 error = cPickle.BadPickleGet variable in class:.CPicklePython24Compat 200 error = KeyError variable in class:PicklePython24Compat 212 error = cPickle.BadPickleGet variable in class:.CPicklePython25Compat 217 error = KeyError variable in class:PicklePython25Compat 229 error = cPickle.BadPickleGet variable in class:.CPicklePython26Compat 234 error = KeyErro variable in class:PicklePython26Compat [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/ |
pulldom.py | 205 def error(self, exception): member in class:ErrorHandler
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/ |
saxutils.py | 206 def error(self, exception): member in class:XMLFilterBase 207 self._err_handler.error(exception)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
HTMLParser.py | 120 def error(self, message): member in class:HTMLParser 213 self.error("EOF in middle of entity or char ref") 237 self.error('unexpected call to parse_html_declaration()') 258 self.error('unexpected call to parse_comment()') 347 self.error("malformed empty start tag")
|
sgmllib.py | 110 def error(self, message): member in class:SGMLParser 198 self.error('neither < nor & ??') 225 self.error('unexpected call to parse_pi()') 274 self.error('unexpected call to parse_starttag')
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/ |
__init__.py | 79 error = db.DBError # So bsddb.error will mean something... variable 253 raise error, "BSDDB object has already been closed" 412 raise error, "cachesize must be >= 20480" 434 raise error, "flags should be one of 'r', 'w', 'c' or 'n'"
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_cpickle.py | 49 error = cPickle.BadPickleGet variable in class:cPickleTests 72 error = cPickle.BadPickleGet variable in class:cPicklePicklerTests 99 error = cPickle.BadPickleGet variable in class:cPickleListPicklerTests 132 error = cPickle.BadPickleGet variable in class:cPickleFastPicklerTests
|
test_runpy.py | 92 self.fail("Expected import error for " + mod_name) namespace
|
test_xpickle.py | 37 error = KeyError variable in class:DumpCPickle_LoadPickle 49 error = cPickle.BadPickleGet variable in class:DumpPickle_LoadCPickle 78 error = None variable in class:AbstractCompatTests 83 self.assertTrue(self.error) 187 error = cPickle.BadPickleGet variable in class:.CPicklePython24Compat 200 error = KeyError variable in class:PicklePython24Compat 212 error = cPickle.BadPickleGet variable in class:.CPicklePython25Compat 217 error = KeyError variable in class:PicklePython25Compat 229 error = cPickle.BadPickleGet variable in class:.CPicklePython26Compat 234 error = KeyErro variable in class:PicklePython26Compat [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/ |
pulldom.py | 205 def error(self, exception): member in class:ErrorHandler
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/ |
saxutils.py | 206 def error(self, exception): member in class:XMLFilterBase 207 self._err_handler.error(exception)
|
/sdk/apps/SdkController/src/com/android/tools/sdkcontroller/activities/ |
MainActivity.java | 191 String error = binder == null ? "" : binder.getServiceError(); local 192 if (error == null) { 193 error = ""; 196 mTextError.setVisibility(error.length() == 0 ? View.GONE : View.VISIBLE); 197 mTextError.setText(error);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/ |
ConvertSwitchQuickFixProcessor.java | 87 IProblemLocation error = location[0]; local 88 int errorStart = error.getOffset(); 89 int errorLength = error.getLength(); 94 // method will ALSO be called on lines where there is no such error. In particular, 120 // the exact error, so we'll need to resort to the actual message 122 // localized... This can also break if the error messages change. Yuck. 129 AdtPlugin.log(e, "Can't validate error message in %1$s", file.getName()); 141 // See if the caret is on the same line as the error
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
RenderLogger.java | 87 for (String error : mErrors) { 88 sb.append(error).append('\n'); 107 sb.append("Exception details are logged in Window > Show View > Error Log"); 126 public void error(String tag, String message, Object data) { method in class:RenderLogger 129 appendToIdeLog(null, IStatus.ERROR, description); 131 // Workaround: older layout libraries don't provide a tag for this error 141 public void error(String tag, String message, Throwable throwable, Object data) { method in class:RenderLogger 143 appendToIdeLog(throwable, IStatus.ERROR, description); 207 appendToIdeLog(throwable, IStatus.ERROR, description);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/ |
RenameResourcePage.java | 122 String error = mValidator.isValid(newName); local 123 if (error != null) { 124 return RefactoringStatus.createErrorStatus(error);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/welcome/ |
UsagePermissionPage.java | 121 "Browser Error", message); 134 String error = null; local 137 error = "Select Yes or No"; 140 setPageComplete(error == null); 141 if (error != null) { 142 setMessage(error, IMessageProvider.ERROR);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/ |
ProjectSelectionPage.java | 195 * Enables/disables the finish button on the wizard and displays error messages as needed. 198 String error = null; local 201 error = ExportMessages.NoProjectsError; 209 error = MessageFormat.format(ExportMessages.CyclicProjectsError, 214 error = mBuilder.setProject(mSelectedJavaProjects); 215 if (error != null) { 223 setErrorMessage(error); 224 setPageComplete(error == null);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/ |
TestTargetPage.java | 274 String error = null; local 278 error = "Please select an existing Android project as a test target."; 280 error = "The main project name and the test project name must be different."; 284 // -- update UI & enable finish if there's no error 285 setPageComplete(error == null); 286 if (error != null) { 287 setMessage(error, IMessageProvider.ERROR);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newxmlfile/ |
ChooseConfigurationPage.java | 237 String error = null; local 241 if (error == null) { 246 error = 251 error = "The Region qualifier requires the Language qualifier."; 256 if (error == null) { 259 error = String.format("Target folder must start with %1$s.", RES_FOLDER_ABS); 264 if (error == null) { 271 // -- update UI & enable finish if there's no error 272 setPageComplete(error == null); 273 if (error != null) [all...] |
NewXmlFileWizard.java | 175 AdtPlugin.log(IStatus.ERROR, "Failed to create %1$s: missing type", name); //$NON-NLS-1$ 182 AdtPlugin.log(IStatus.ERROR, "Failed to create %1$s: missing root element", //$NON-NLS-1$ 270 String error = null; local 290 error = e.getMessage(); 292 error = e.getMessage(); 295 error = String.format("Failed to generate %1$s: %2$s", name, error); 296 AdtPlugin.displayError("New Android XML File", error);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
TemplateTestPage.java | 88 String error = null; local 92 error = "Select a template directory"; 97 error = String.format("%1$s does not exist", path); 104 error = String.format("Not a template: missing template.xml file in %1$s ", 111 error = String.format("Select a directory containing a template"); 117 setPageComplete(error == null); 118 if (error != null) { 119 setMessage(error, IMessageProvider.ERROR); 125 return error == null [all...] |
/sdk/find_java2/src/ |
utils.cpp | 26 // Application name used in error dialog. Defined using initUtils()
29 // Called by the application to initialize the app name used in error dialog boxes.
52 return; // do nothing on error
101 // If message is non-null, it is prepended to the last error string.
124 // Displays GetLastError prefixed with a description in an error dialog box
132 CString error = getLastWin32Error(NULL);
local 134 formatted.Append(error);
140 name.Append(_T(" - Error"));
|
/system/bt/osi/src/ |
alarm.c | 95 goto error; 100 int error = pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE); local 101 if (error) { 102 LOG_ERROR("%s unable to create a recursive mutex: %s", __func__, strerror(error)); 103 goto error; 106 error = pthread_mutex_init(&ret->callback_lock, &attr); 107 if (error) { 108 LOG_ERROR("%s unable to initialize mutex: %s", __func__, strerror(error)); 109 goto error; 115 error: [all...] |
/system/bt/stack/rfcomm/ |
port_api.c | 44 #define error(fmt, ...) LOG_ERROR ("## ERROR : %s: " fmt "##",__FUNCTION__, ## __VA_ARGS__) macro 50 "Unknown error", 57 "Unspecified error", 60 "Line error", 1007 ** error and reports current status of a connection. The 1008 ** function should be called when an error occures to clear 1009 ** the connection error flag and to enable additional read 1013 ** p_errors - pointer of the variable to receive error codes 1038 /* This is the only call to clear error status. We can not clear * [all...] |
/system/core/toolbox/ |
mount.c | 169 int error = 0; local 207 error = errno; 212 if (error == ENODEV || error == EINVAL) 220 if (error == EACCES && 229 if (error) { 230 errno = error;
|