Searched refs:CtxType (Results 1 – 4 of 4) sorted by relevance
/external/antlr/runtime/Cpp/include/ |
D | antlr3cyclicdfa.inl | 3 template<class ImplTraits, class CtxType> 4 CyclicDFA<ImplTraits, CtxType>::CyclicDFA( ANTLR_INT32 decisionNumber 25 template<class ImplTraits, class CtxType> 26 CyclicDFA<ImplTraits, CtxType>::CyclicDFA( const CyclicDFA& dfa ) 39 template<class ImplTraits, class CtxType> 40 CyclicDFA<ImplTraits, CtxType>& CyclicDFA<ImplTraits, CtxType>::operator=( const CyclicDFA& dfa) 54 template<class ImplTraits, class CtxType> 55 ANTLR_INT32 CyclicDFA<ImplTraits, CtxType>::specialStateTransition(CtxType * , argument 62 template<class ImplTraits, class CtxType> 63 ANTLR_INT32 CyclicDFA<ImplTraits, CtxType>::specialTransition(CtxType * ctx, [all …]
|
D | antlr3cyclicdfa.hpp | 48 template<class ImplTraits, class CtxType> 52 typedef typename CtxType::StreamType StreamType; 53 typedef typename CtxType::ExceptionBaseType ExceptionBaseType; 58 typedef CtxType ContextType; 90 …ANTLR_INT32 specialStateTransition(CtxType * ctx, RecognizerType* recognizer, IntStreamType* is, A… 91 …ANTLR_INT32 specialTransition(CtxType * ctx, RecognizerType* recognizer, IntStreamType* is, ANTLR_… 94 …ANTLR_INT32 predict(CtxType* ctx, RecognizerType* recognizer, IntStreamType* is, SuperType& super);
|
/external/nos/host/generic/libnos_transport/test/ |
D | test.cpp | 55 using CtxType = StrictMock<MockDevice>; typedef 59 return reinterpret_cast<CtxType*>(ctx)->Read(command, buf, len); in read_datagram() 62 return reinterpret_cast<CtxType*>(ctx)->Write(command, buf, len); in write_datagram() 65 return reinterpret_cast<CtxType*>(ctx)->WaitForInterrupt(msecs); in wait_for_interrupt() 68 return reinterpret_cast<CtxType*>(ctx)->Reset(); in reset() 71 delete reinterpret_cast<CtxType*>(ctx); in close_device() 78 dev->ctx = new CtxType; in nos_device_open() 92 mock_dev_ = reinterpret_cast<CtxType*>(dev_.ctx); in SetUp() 99 CtxType& mock_dev() { return *mock_dev_; } in mock_dev() 103 CtxType* mock_dev_;
|
/external/antlr/tool/src/main/resources/org/antlr/codegen/templates/Cpp/ |
D | Cpp.stg | 2059 typedef BaseType::ContextType CtxType; 2064 CtxType* m_ctx; 2092 const CtxType::CommonTokenType* LT(ANTLR_INT32 k) 2105 …ANTLR_INT32 specialStateTransition(CtxType * ctx, RecognizerType* recognizer, IntStreamType* is, …
|