/external/python/cpython2/Lib/plat-mac/ |
D | argvemulator.py | 12 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)
|
D | MiniAEFrame.py | 16 from Carbon import Evt 64 got, event = Evt.WaitNextEvent(mask, timeout)
|
D | aetools.py | 29 from Carbon import Evt 159 Evt.WaitNextEvent(0,0)
|
D | EasyDialogs.py | 29 from Carbon import Dlg,Win,Evt,Events # sdm7g 310 ready, ev = Evt.WaitNextEvent( Events.mDownMask, 1 )
|
D | gensuitemodule.py | 234 import Carbon.Evt 235 Carbon.Evt.WaitNextEvent(0,0)
|
D | FrameWork.py | 17 from Carbon.Evt import *
|
/external/python/cpython2/Mac/Demo/quicktime/ |
D | MovieInWindow.py | 10 from Carbon import Evt 60 while not theMovie.IsMovieDone() and not Evt.Button():
|
D | VerySimplePlayer.py | 10 from Carbon import Evt 61 gotone, evt = Evt.WaitNextEvent(0xffff, 0)
|
/external/catch2/docs/ |
D | list-of-examples.md | 15 - Listener: [Listeners](../examples/210-Evt-EventListeners.cpp)
|
D | event-listeners.md | 22 For example ([complete source code](../examples/210-Evt-EventListeners.cpp)):
|
/external/catch2/examples/ |
D | CMakeLists.txt | 46 210-Evt-EventListeners.cpp
|
/external/python/cpython2/Doc/library/ |
D | carbon.rst | 209 :mod:`Carbon.Evt` --- Event Manager 212 .. module:: Carbon.Evt
|
/external/llvm-project/clang/include/clang/AST/ |
D | OpenMPClause.h | 7330 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/ |
D | PPCFastISel.cpp | 283 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/ |
D | PPCFastISel.cpp | 275 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/ |
D | PPCFastISel.cpp | 276 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/ |
D | StmtProfile.cpp | 475 if (Expr *Evt = C->getEventHandler()) in VisitOMPDetachClause() local 476 Profiler->VisitStmt(Evt); in VisitOMPDetachClause()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 18412 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 …]
|
D | TreeTransform.h | 1991 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/ |
D | CGOpenMPRuntime.cpp | 4308 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/ |
D | da.po | 1139 # Evt. Centrum-højre 3650 # Evt. "Farvekanalerne for hver komponent"
|
/external/llvm-project/clang/include/clang/Sema/ |
D | Sema.h | 10730 OMPClause *ActOnOpenMPDetachClause(Expr *Evt, SourceLocation StartLoc,
|