Searched refs:Throw (Results 1 - 25 of 73) sorted by relevance

123

/external/compiler-rt/lib/asan/tests/
H A Dasan_exceptions_test.cc11 void Throw(const char& arg) const { function in class:Action
21 a.Throw('c');
/external/jmonkeyengine/engine/src/bullet-native/
H A DjmeBulletUtil.cpp44 env->Throw(env->ExceptionOccurred());
49 env->Throw(env->ExceptionOccurred());
54 env->Throw(env->ExceptionOccurred());
71 env->Throw(env->ExceptionOccurred());
76 env->Throw(env->ExceptionOccurred());
82 env->Throw(env->ExceptionOccurred());
93 env->Throw(env->ExceptionOccurred());
98 env->Throw(env->ExceptionOccurred());
103 env->Throw(env->ExceptionOccurred());
108 env->Throw(en
[all...]
H A DjmeClasses.cpp118 env->Throw(env->ExceptionOccurred());
126 env->Throw(env->ExceptionOccurred());
132 env->Throw(env->ExceptionOccurred());
137 env->Throw(env->ExceptionOccurred());
153 env->Throw(env->ExceptionOccurred());
168 env->Throw(env->ExceptionOccurred());
175 env->Throw(env->ExceptionOccurred());
189 env->Throw(env->ExceptionOccurred());
195 env->Throw(env->ExceptionOccurred());
201 env->Throw(en
[all...]
H A Dcom_jme3_bullet_util_DebugShapeFactory.cpp61 env->Throw(env->ExceptionOccurred());
67 env->Throw(env->ExceptionOccurred());
72 env->Throw(env->ExceptionOccurred());
131 env->Throw(env->ExceptionOccurred());
136 env->Throw(env->ExceptionOccurred());
141 env->Throw(env->ExceptionOccurred());
H A DjmePhysicsSpace.cpp45 env->Throw(env->ExceptionOccurred());
217 env->Throw(env->ExceptionOccurred());
231 env->Throw(env->ExceptionOccurred());
256 env->Throw(env->ExceptionOccurred());
H A Dcom_jme3_bullet_objects_PhysicsGhostObject.cpp190 m_env->Throw(m_env->ExceptionOccurred());
/external/oprofile/libutil++/tests/
H A Dutility_tests.cpp67 template <typename Throw, typename Catch>
73 throw Throw("");
80 template <typename Throw, typename Catch>
86 throw Throw("");
/external/clang/test/SemaCXX/
H A Dmember-init.cpp40 struct Throw { ThrowCtor tc = 42; }; struct
43 static_assert(!noexcept(Throw()), "incorrect exception specification");
/external/webkit/Source/JavaScriptCore/runtime/
H A DCompletion.cpp45 return Completion(Throw, error);
59 return Completion(Throw, exception);
70 ComplType exceptionType = Throw;
H A DCompletion.h34 enum ComplType { Normal, Break, Continue, ReturnValue, Throw, Interrupted, Terminated }; enumerator in enum:JSC::ComplType
/external/libpng/contrib/visupng/
H A Dcexcept.h69 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 \ macro
[all...]
H A DPngFile.c42 Throw msg;
354 Throw "Visualpng: Out of memory";
/external/webkit/Source/JavaScriptCore/API/
H A DJSBase.cpp57 if (completion.complType() == Throw) {
77 if (completion.complType() == Throw) {
/external/clang/include/clang/AST/
H A DStmtObjC.h315 Stmt *Throw; member in class:clang::ObjCAtThrowStmt
319 : Stmt(ObjCAtThrowStmtClass), Throw(throwExpr) {
325 const Expr *getThrowExpr() const { return reinterpret_cast<Expr*>(Throw); }
326 Expr *getThrowExpr() { return reinterpret_cast<Expr*>(Throw); }
327 void setThrowExpr(Stmt *S) { Throw = S; }
333 if (Throw)
334 return SourceRange(AtThrowLoc, Throw->getLocEnd());
344 child_range children() { return child_range(&Throw, &Throw+1); }
/external/webkit/Source/JavaScriptGlue/
H A DJSRun.cpp77 return JSC::checkSyntax(fGlobalObject->globalExec(), makeSource(fSource)).complType() != Throw;
/external/webkit/Source/WebCore/bridge/
H A Dtestqtbindings.cpp112 if (comp.complType() == Throw) {
H A Dtestbindings.mm260 if (comp.complType() == Throw) {
H A Dtestbindings.cpp392 if (comp.complType() == Throw) {
/external/webkit/Source/JavaScriptCore/
H A Djsc.cpp234 if (result.complType() == Throw)
253 if (result.complType() == Throw)
404 success = success && completion.complType() != Throw;
406 if (completion.complType() == Throw)
457 if (completion.complType() == Throw)
/external/chromium/testing/gmock/include/gmock/
H A Dgmock-more-actions.h211 // Action Throw(exception) can be used in a mock function of any type
220 ACTION_P(Throw, exception) { throw exception; }
/external/webkit/Source/WebCore/bindings/js/
H A DWorkerScriptController.cpp140 if (completionType == Throw) {
/external/clang/lib/Sema/
H A DSemaStmt.cpp2560 StmtResult Sema::BuildObjCAtThrowStmt(SourceLocation AtLoc, Expr *Throw) { argument
2561 if (Throw) {
2562 ExprResult Result = DefaultLvalueConversion(Throw);
2566 Throw = MaybeCreateExprWithCleanups(Result.take());
2567 QualType ThrowType = Throw->getType();
2574 << Throw->getType() << Throw->getSourceRange());
2578 return Owned(new (Context) ObjCAtThrowStmt(AtLoc, Throw));
2582 Sema::ActOnObjCAtThrowStmt(SourceLocation AtLoc, Expr *Throw, argument
2587 if (!Throw) {
[all...]
/external/chromium/testing/gmock/test/
H A Dgmock_link_test.h61 // Throw
185 using testing::Throw;
407 // Tests the linkage of the Throw action.
411 EXPECT_CALL(mock, VoidFromString(_)).WillOnce(Throw(42));
/external/v8/src/
H A Daccessors.cc133 return isolate->Throw(
672 return isolate->Throw(
H A Dast.h104 V(Throw) \
1996 class Throw: public Expression { class in namespace:v8::internal
1998 DECLARE_NODE_TYPE(Throw)
2006 Throw(Isolate* isolate, Expression* exception, int pos) function in class:v8::internal::Throw
2931 Throw* NewThrow(Expression* exception, int pos) {
2932 Throw* t = new(zone_) Throw(isolate_, exception, pos);
2933 VISIT_AND_RETURN(Throw, t)

Completed in 738 milliseconds

123