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

12345

/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/compiler-rt/lib/asan/lit_tests/TestCases/
H A Dthrow_call_test.cc18 void Throw() { function
25 fprintf(stderr, "Throw stack = %p\n", &a);
40 Throw();
H A Dthrow_invoke_test.cc22 void Throw() { function
29 fprintf(stderr, "Throw stack = %p\n", &a);
44 Throw();
/external/clang/test/CXX/except/except.spec/
H A Dp14.cpp124 template<typename T> struct Throw { struct in namespace:InhCtor
125 Throw() throw(T);
127 struct Derived : Base, Throw<X<3>> {
129 Throw<X<4>> x;
/external/clang/test/SemaCXX/
H A Dmember-init.cpp40 struct Throw { ThrowCtor tc = 42; }; struct
43 static_assert(!noexcept(Throw()), "incorrect exception specification");
/external/compiler-rt/lib/asan/lit_tests/TestCases/Linux/
H A Dswapcontext_test.cc21 void Throw() { function
28 Throw();
/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/clang/include/clang/AST/
H A DStmtObjC.h314 Stmt *Throw; member in class:clang::ObjCAtThrowStmt
318 : Stmt(ObjCAtThrowStmtClass), Throw(throwExpr) {
324 const Expr *getThrowExpr() const { return reinterpret_cast<Expr*>(Throw); }
325 Expr *getThrowExpr() { return reinterpret_cast<Expr*>(Throw); }
326 void setThrowExpr(Stmt *S) { Throw = S; }
333 return Throw ? Throw->getLocEnd() : AtThrowLoc;
340 child_range children() { return child_range(&Throw, &Throw+1); }
/external/chromium_org/v8/src/
H A Dd8.cc82 static Handle<Value> Throw(const char* message) { function in namespace:v8
304 Throw("Invalid argument");
318 Throw("Invalid argument");
323 Throw("Invalid realm index");
354 Throw("Invalid argument");
361 Throw("Invalid realm index");
374 Throw("Invalid argument");
379 Throw("Invalid realm index");
391 Throw("Invalid argument");
396 Throw("Invali
[all...]
H A Druntime.cc780 return isolate->Throw(
790 return isolate->Throw(*isolate->factory()->
952 return isolate->Throw(*isolate->factory()->
969 return isolate->Throw(*isolate->factory()->
1018 return isolate->Throw(*isolate->factory()->NewTypeError( \
1053 return isolate->Throw(*isolate->factory()->NewTypeError(
1069 return isolate->Throw(*isolate->factory()->NewRangeError(
1279 return isolate->Throw(*isolate->factory()->NewRangeError( \
1362 return isolate->Throw(*isolate->factory()->NewRangeError( \
1956 return isolate->Throw(*erro
[all...]
/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/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));
H A Dgmock-more-actions_test.cc597 const Action<void(int n)> a = Throw('a');
604 const Action<double(char ch)> a = Throw(MyException());
609 const Action<double()> a = Throw(MyException());
/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)
H A Djson-parser.h226 isolate()->Throw(*result, &location);
/external/clang/lib/Sema/
H A DSemaStmt.cpp2881 StmtResult Sema::BuildObjCAtThrowStmt(SourceLocation AtLoc, Expr *Throw) { argument
2882 if (Throw) {
2883 ExprResult Result = DefaultLvalueConversion(Throw);
2890 Throw = Result.take();
2892 QualType ThrowType = Throw->getType();
2899 << Throw->getType() << Throw->getSourceRange());
2903 return Owned(new (Context) ObjCAtThrowStmt(AtLoc, Throw));
2907 Sema::ActOnObjCAtThrowStmt(SourceLocation AtLoc, Expr *Throw, argument
2912 if (!Throw) {
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DDFA.as58 * to the underlying CFL). Return an alternative number 1..n. Throw

Completed in 463 milliseconds

12345