HomeSort by relevance Sort by last modified time
    Searched refs:Error (Results 201 - 225 of 824) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
maximum-age.js 11 var error; variable
23 error = e;
24 shouldBe('error.code', 'mockCode');
25 shouldBe('error.message', 'mockMessage');
39 testFailed('Error callback invoked unexpectedly');
52 testFailed('Error callback invoked unexpectedly');
58 // Update the mock service to report an error.
61 // The maximumAge is non-zero, so we expect the cached position, not the error from the service.
66 testFailed('Error callback invoked unexpectedly');
72 // The default maximumAge is zero, so we expect the error from the service
    [all...]
  /external/webkit/LayoutTests/fast/js/resources/
string-concatenate-outofmemory.js 5 shouldThrow('s = "a"; while (1) { s += s; }', '"Error: Out of memory"'); // Expand at end of string
6 shouldThrow('s = "a"; while (1) { s += ("a" + s); }', '"Error: Out of memory"'); // Expand at beginning of string
7 shouldThrow('s = "a"; while (1) { s = [s, s].join(); }', '"Error: Out of memory"'); // Expand using UString::append.
  /hardware/msm7k/libaudio-qdsp5v2/
AudioHardware.cpp 156 // We return an error code here to let the audioflinger do in-software
158 // return error - software mixer will handle it
227 goto Error;
237 goto Error;
249 goto Error;
261 goto Error;
267 goto Error;
287 Error:
292 // Simulate audio output timing in case of error
  /external/clang/lib/Parse/
ParseTentative.cpp 71 /// If during the disambiguation process a parsing error is encountered,
106 // TPResult::Error().
118 // In case of an error, let the declaration parsing code handle it.
119 if (TPR == TPResult::Error())
192 return TPResult::Error();
206 // issues the error regardless of outcome of this decision.
221 /// If during the disambiguation process a parsing error is encountered,
234 // TPResult::Error().
258 // In case of an error, let the declaration parsing code handle it.
259 if (TPR == TPResult::Error())
    [all...]
  /external/llvm/lib/MC/MCParser/
COFFAsmParser.cpp 312 return Error(startLoc, "offset is not a multiple of 16");
329 return Error(startLoc, "size is not a multiple of 8");
353 return Error(startLoc, "size is not a multiple of 8");
383 return Error(startLoc, "offset is not a multiple of 16");
399 return Error(startLoc, "expected @code");
425 return Error(startLoc, "expected @unwind or @except");
431 return Error(startLoc, "expected @unwind or @except");
455 return Error(startLoc, "expected non-volatile register");
460 return Error(startLoc,"register can't be represented in SEH unwind info");
468 return Error(startLoc, "register number is too high")
    [all...]
  /external/v8/test/mjsunit/
error-constructors.js 28 var e = new Error();
30 Error.prototype.toString = Object.prototype.toString;
31 assertEquals("[object Error]", Error.prototype.toString());
32 assertEquals(Object.prototype, Error.prototype.__proto__);
34 // Check that error construction does not call setters for the
35 // properties on error objects in prototypes.
51 // Check that the name property on error prototypes is read-only and
53 // name property with a getter can leaks error objects from different
55 // disallow changes to the name property on error objects
    [all...]
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp 81 bool Error(SMLoc L, const Twine &Msg) { return Parser.Error(L, Msg); }
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
SerializationStressTest2.java 830 } catch (Error err) {
831 System.out.println("Error when obj = " + objToSave);
864 } catch (Error err) {
865 System.out.println("Error when obj = " + objToSave);
896 } catch (Error err) {
897 System.out.println("Error when obj = " + objToSave);
928 } catch (Error err) {
929 System.out.println("Error when obj = " + objToSave);
961 } catch (Error err) {
962 System.out.println("Error when obj = " + objToSave)
    [all...]
  /development/tools/glesv2debugger/src/com/android/glesv2debugger/
MessageQueue.java 110 Error(e);
141 Error(e);
153 Error(e);
273 Error(new Exception("EOF"));
282 Error(new Exception("EOF"));
285 Error(new Exception("read length = " + read));
319 void Error(Exception e) {
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 177 /// Error* - These are little helper functions for error handling.
178 ExprAST *Error(const char *Str) { fprintf(stderr, "Error: %s\n", Str);return 0;}
179 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
180 FunctionAST *ErrorF(const char *Str) { Error(Str); return 0; }
207 return Error("Expected ')' or ',' in argument list");
232 return Error("expected ')'");
243 default: return Error("unknown token when expecting an expression");
352 Value *ErrorV(const char *Str) { Error(Str); return 0;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
MessageQueue.java 109 Error(e);
140 Error(e);
152 Error(e);
272 Error(new Exception("EOF"));
281 Error(new Exception("EOF"));
284 Error(new Exception("read length = " + read));
318 void Error(Exception e) {
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 213 /// Error* - These are little helper functions for error handling.
214 ExprAST *Error(const char *Str) { fprintf(stderr, "Error: %s\n", Str);return 0;}
215 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
216 FunctionAST *ErrorF(const char *Str) { Error(Str); return 0; }
243 return Error("Expected ')' or ',' in argument list");
268 return Error("expected ')'");
282 return Error("expected then");
289 return Error("expected else")
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 241 /// Error* - These are little helper functions for error handling.
242 ExprAST *Error(const char *Str) { fprintf(stderr, "Error: %s\n", Str);return 0;}
243 PrototypeAST *ErrorP(const char *Str) { Error(Str); return 0; }
244 FunctionAST *ErrorF(const char *Str) { Error(Str); return 0; }
271 return Error("Expected ')' or ',' in argument list");
296 return Error("expected ')'");
310 return Error("expected then");
317 return Error("expected else")
    [all...]
  /external/skia/src/animator/
SkScript.h 30 enum Error {
88 Error getError() const { return fError; }
222 Error opError();
225 bool setError(Error , const char* pos);
252 Error fError;
SkBase64.cpp 45 SkBase64::Error SkBase64::decode(const void* srcPtr, size_t size, bool writeDestination) {
157 SkBase64::Error SkBase64::decode(const char* src, size_t len) {
158 Error err = decode(src, len, false);
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp 44 bool Error(SMLoc L, const Twine &Msg,
46 return Parser.Error(L, Msg, Ranges);
408 return Error(StartLoc, "invalid register name",
427 return Error(StartLoc, "register %"
446 return Error(IntTok.getLoc(), "expected stack index");
456 default: return Error(IntTok.getLoc(), "invalid stack index");
460 return Error(Parser.getTok().getLoc(), "expected ')'");
490 return Error(StartLoc, "invalid register name",
509 Error(Start, "%eiz and %riz can only be used as index registers",
597 Error(StartLoc, "eiz and riz can only be used as index registers"
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
socketadapters.h 141 void Error(int error);
167 void Error(int error);
192 void Error(int error);
221 void Error(int error);
  /external/clang/examples/clang-interpreter/
main.cpp 50 std::string Error;
52 llvm::ExecutionEngine::createJIT(Mod, &Error));
54 llvm::errs() << "unable to make execution engine: " << Error << "\n";
  /external/clang/lib/FrontendTool/
ExecuteCompilerInvocation.cpp 140 std::string Error;
141 if (llvm::sys::DynamicLibrary::LoadLibraryPermanently(Path.c_str(), &Error))
143 << Path << Error;
  /external/llvm/unittests/ExecutionEngine/JIT/
MultiJITTest.cpp 24 SMDiagnostic Error;
26 NULL != ParseAssemblyString(assembly, M, Error, M->getContext());
29 Error.print("", os);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Exceptions/
errstack-001.js 38 * SUMMARY: Testing that Error.stack distinguishes between:
54 * NOTE: At present Rhino does not have an Error.stack property. It is an
60 var summary = 'Testing Error.stack';
90 throw new Error('meep!');
207 * Make a user-defined error via the Error() function -
210 myErr = Error(message, fileName, lineNumber);
221 myErr = new Error(message, fileName, lineNumber);
  /external/llvm/lib/TableGen/
TGParser.cpp 70 return Error(Loc, "New definition of '" + RV.getName() + "' of type '" +
81 /// Return true on error, false on success.
90 return Error(Loc, "Value '" + ValName->getAsUnquotedString()
107 return Error(Loc, "Value '" + ValName->getAsUnquotedString()
114 return Error(Loc, "Initializer is not compatible with bit range");
127 return Error(Loc, "Cannot set bit #" + utostr(Bit) + " of value '" +
140 return Error(Loc, "Value '" + ValName->getAsUnquotedString() + "' of type '"
161 return Error(SubClass.RefLoc, "More template args specified than expected");
179 return Error(SubClass.RefLoc,"Value not specified for template argument #"
190 return Error(SubClass.RefLoc
    [all...]
  /external/clang/tools/libclang/
CIndexer.cpp 96 std::string Error;
106 if (P.makeUnique(false, &Error))
  /external/guava/src/com/google/common/util/concurrent/
AbstractFuture.java 113 * to an error, {@code throwable}. This will set the state of the future to
119 * @throws Error if the throwable was an {@link Error}.
127 // If it's an Error, we want to make sure it reaches the top of the
129 if (throwable instanceof Error) {
130 throw (Error) throwable;
231 * an error.
261 "Error, synchronizer in invalid state: " + state);
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
toplevel.ml 28 with Stream.Error s ->
29 (* Skip token for error recovery. *)

Completed in 4002 milliseconds

1 2 3 4 5 6 7 891011>>