HomeSort by relevance Sort by last modified time
    Searched refs:Throw (Results 1 - 25 of 55) sorted by null

1 2 3

  /dalvik/tests/003-omnibus-opcodes/src/
Throw.java 20 public class Throw {
22 throw new NullPointerException("npe!");
26 throw new ArithmeticException();
30 System.out.println("Throw.one");
43 System.out.println("Throw.twoA");
65 System.out.println("Throw.twoN");
87 System.out.println("Throw.rethrow");
102 throw (NullPointerException) ex;
117 Throw th = new Throw();
    [all...]
Main.java 29 throw new RuntimeException();
59 Throw.run();
  /external/webkit/JavaScriptCore/runtime/
Completion.cpp 44 return Completion(Throw, error);
57 return Completion(Throw, error);
67 return Completion(Throw, exception);
Completion.h 34 enum ComplType { Normal, Break, Continue, ReturnValue, Throw, Interrupted };
  /external/libpng/contrib/visupng/
cexcept.h 69 The Try/Catch and Throw statements (described below) implicitly
97 Try/Catch/Throw macros, so it shouldn't be expensive or have side
118 The Try/Catch/Throw macros are capitalized in order to avoid
132 If a Throw that uses the same exception context as the Try/Catch is
137 such Throw is executed, then the assignment is not performed, and
151 from a Try clause, it will suffice to use Throw, and then return
163 Throw expression;
165 A Throw statement is very much like a return statement, except that
167 where the current function was called, Throw jumps back to the Catch
243 #define Throw \
    [all...]
PngFile.c 42 Throw msg;
354 Throw "Visualpng: Out of memory";
  /external/webkit/JavaScriptCore/API/
JSBase.cpp 56 if (completion.complType() == Throw) {
76 if (completion.complType() == Throw) {
  /external/webkit/JavaScriptGlue/
JSRun.cpp 82 return JSC::checkSyntax(fGlobalObject->globalExec(), makeSource(fSource)).complType() != Throw;
  /libcore/luni/src/main/native/
java_util_regex_Pattern.cpp 41 env->Throw(reinterpret_cast<jthrowable>(exception));
java_lang_ProcessManager.cpp 359 // Re-throw exception if present.
361 if (env->Throw(exception) < 0) {
  /external/webkit/WebCore/bridge/
testqtbindings.cpp 112 if (comp.complType() == Throw) {
testbindings.mm 260 if (comp.complType() == Throw) {
testbindings.cpp 392 if (comp.complType() == Throw) {
  /external/webkit/WebCore/bindings/js/
WorkerScriptController.cpp 129 if (comp.complType() == Throw)
  /external/v8/test/mjsunit/
call-non-function-call.js 28 // Throw exception when invoking Function.prototype.call with a
  /external/webkit/JavaScriptCore/
jsc.cpp 236 if (result.complType() == Throw)
252 if (result.complType() == Throw)
395 success = success && completion.complType() != Throw;
397 if (completion.complType() == Throw)
445 if (completion.complType() == Throw)
  /external/v8/src/
data-flow.cc 212 void AstLabeler::VisitThrow(Throw* expr) {
506 void LivenessAnalyzer::VisitThrow(Throw* expr) {
fast-codegen.cc 301 void FastCodeGenSyntaxChecker::VisitThrow(Throw* expr) {
302 BAILOUT("Throw");
665 void FastCodeGenerator::VisitThrow(Throw* expr) {
rewriter.cc 381 void AstOptimizer::VisitThrow(Throw* node) {
762 void Processor::VisitThrow(Throw* node) {
runtime.h 247 F(Throw, 1, 1) \
top.h 196 // This method is called by the api after operations that may throw
284 // of Throw() as its return value.
285 static Failure* Throw(Object* exception, MessageLocation* location = NULL);
286 // Re-throw an exception. This involves no error reporting since
usage-analyzer.cc 284 void UsageComputer::VisitThrow(Throw* node) {
top.cc 606 Failure* Top::Throw(Object* exception, MessageLocation* location) {
620 return Throw(Heap::illegal_access_symbol());
625 // When scheduling a throw we first throw the exception to get the
627 Throw(exception);
637 // Re-throw the exception to avoid getting repeated error reporting.
    [all...]
  /external/v8/src/mips/
codegen-mips.cc 245 void CodeGenerator::VisitThrow(Throw* node) {
  /dalvik/libnativehelper/
JNIHelp.c 169 * Throw an exception with the specified class and an optional message.
190 LOGW("Discarding pending exception (%s) to throw %s\n", buf, className);
214 * Throw a java.lang.NullPointerException, with an optional message.
222 * Throw a java.lang.RuntimeException, with an optional message.
230 * Throw a java.io.IOException, generating the message from errno.
261 (*env)->Throw(env, exception); // rethrow

Completed in 1217 milliseconds

1 2 3