Home
last modified time | relevance | path

Searched refs:Evt (Results 1 – 22 of 22) sorted by relevance

/external/python/cpython2/Lib/plat-mac/
Dargvemulator.py12 from Carbon import Evt
38 stoptime = Evt.TickCount() + timeout
39 while not self.quitting and Evt.TickCount() < stoptime:
48 got, event = Evt.WaitNextEvent(mask, timeout)
DMiniAEFrame.py16 from Carbon import Evt
64 got, event = Evt.WaitNextEvent(mask, timeout)
Daetools.py29 from Carbon import Evt
159 Evt.WaitNextEvent(0,0)
DEasyDialogs.py29 from Carbon import Dlg,Win,Evt,Events # sdm7g
310 ready, ev = Evt.WaitNextEvent( Events.mDownMask, 1 )
Dgensuitemodule.py234 import Carbon.Evt
235 Carbon.Evt.WaitNextEvent(0,0)
DFrameWork.py17 from Carbon.Evt import *
/external/python/cpython2/Mac/Demo/quicktime/
DMovieInWindow.py10 from Carbon import Evt
60 while not theMovie.IsMovieDone() and not Evt.Button():
DVerySimplePlayer.py10 from Carbon import Evt
61 gotone, evt = Evt.WaitNextEvent(0xffff, 0)
/external/catch2/docs/
Dlist-of-examples.md15 - Listener: [Listeners](../examples/210-Evt-EventListeners.cpp)
Devent-listeners.md22 For example ([complete source code](../examples/210-Evt-EventListeners.cpp)):
/external/catch2/examples/
DCMakeLists.txt46 210-Evt-EventListeners.cpp
/external/python/cpython2/Doc/library/
Dcarbon.rst209 :mod:`Carbon.Evt` --- Event Manager
212 .. module:: Carbon.Evt
/external/llvm-project/clang/include/clang/AST/
DOpenMPClause.h7330 Stmt *Evt = nullptr; variable
7333 void setEventHandler(Expr *E) { Evt = E; } in setEventHandler()
7345 OMPDetachClause(Expr *Evt, SourceLocation StartLoc, SourceLocation LParenLoc, in OMPDetachClause() argument
7348 LParenLoc(LParenLoc), Evt(Evt) {} in OMPDetachClause()
7358 Expr *getEventHandler() const { return cast_or_null<Expr>(Evt); } in getEventHandler()
7360 child_range children() { return child_range(&Evt, &Evt + 1); } in children()
7363 return const_child_range(&Evt, &Evt + 1); in children()
/external/llvm/lib/Target/PowerPC/
DPPCFastISel.cpp283 EVT Evt = TLI.getValueType(DL, Ty, true); in isTypeLegal() local
286 if (Evt == MVT::Other || !Evt.isSimple()) return false; in isTypeLegal()
287 VT = Evt.getSimpleVT(); in isTypeLegal()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DPPCFastISel.cpp275 EVT Evt = TLI.getValueType(DL, Ty, true); in isTypeLegal() local
278 if (Evt == MVT::Other || !Evt.isSimple()) return false; in isTypeLegal()
279 VT = Evt.getSimpleVT(); in isTypeLegal()
/external/llvm-project/llvm/lib/Target/PowerPC/
DPPCFastISel.cpp276 EVT Evt = TLI.getValueType(DL, Ty, true); in isTypeLegal() local
279 if (Evt == MVT::Other || !Evt.isSimple()) return false; in isTypeLegal()
280 VT = Evt.getSimpleVT(); in isTypeLegal()
/external/llvm-project/clang/lib/AST/
DStmtProfile.cpp475 if (Expr *Evt = C->getEventHandler()) in VisitOMPDetachClause() local
476 Profiler->VisitStmt(Evt); in VisitOMPDetachClause()
/external/llvm-project/clang/lib/Sema/
DSemaOpenMP.cpp18412 OMPClause *Sema::ActOnOpenMPDetachClause(Expr *Evt, SourceLocation StartLoc, in ActOnOpenMPDetachClause() argument
18415 if (!Evt->isValueDependent() && !Evt->isTypeDependent() && in ActOnOpenMPDetachClause()
18416 !Evt->isInstantiationDependent() && in ActOnOpenMPDetachClause()
18417 !Evt->containsUnexpandedParameterPack()) { in ActOnOpenMPDetachClause()
18418 if (!findOMPEventHandleT(*this, Evt->getExprLoc(), DSAStack)) in ActOnOpenMPDetachClause()
18422 auto *Ref = dyn_cast<DeclRefExpr>(Evt->IgnoreParenImpCasts()); in ActOnOpenMPDetachClause()
18424 Diag(Evt->getExprLoc(), diag::err_omp_var_expected) in ActOnOpenMPDetachClause()
18425 << "omp_event_handle_t" << 0 << Evt->getSourceRange(); in ActOnOpenMPDetachClause()
18430 Diag(Evt->getExprLoc(), diag::err_omp_var_expected) in ActOnOpenMPDetachClause()
18431 << "omp_event_handle_t" << 0 << Evt->getSourceRange(); in ActOnOpenMPDetachClause()
[all …]
DTreeTransform.h1991 OMPClause *RebuildOMPDetachClause(Expr *Evt, SourceLocation StartLoc, in RebuildOMPDetachClause() argument
1994 return getSema().ActOnOpenMPDetachClause(Evt, StartLoc, LParenLoc, EndLoc); in RebuildOMPDetachClause()
9100 if (Expr *Evt = C->getEventHandler()) { in TransformOMPDetachClause() local
9101 E = getDerived().TransformExpr(Evt); in TransformOMPDetachClause()
/external/llvm-project/clang/lib/CodeGen/
DCGOpenMPRuntime.cpp4308 const Expr *Evt = DC->getEventHandler()->IgnoreParenImpCasts(); in emitTaskInit() local
4309 LValue EvtLVal = CGF.EmitLValue(Evt); in emitTaskInit()
4320 EvtVal = CGF.EmitScalarConversion(EvtVal, C.VoidPtrTy, Evt->getType(), in emitTaskInit()
4321 Evt->getExprLoc()); in emitTaskInit()
/external/libexif/po/
Dda.po1139 # Evt. Centrum-højre
3650 # Evt. "Farvekanalerne for hver komponent"
/external/llvm-project/clang/include/clang/Sema/
DSema.h10730 OMPClause *ActOnOpenMPDetachClause(Expr *Evt, SourceLocation StartLoc,