/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/support/ |
D | terminal.hpp | 33 template <typename Terminal, typename Args> 36 typedef Terminal terminal_type; 41 terminal_ex(Args const& args_, Terminal const& term_) in terminal_ex() 46 Terminal term; 49 template <typename Terminal, typename Actor, int Arity> 52 typedef Terminal terminal_type; 58 lazy_terminal(Actor const& actor_, Terminal const& term_) in lazy_terminal() 62 Terminal term; 65 template <typename Domain, typename Terminal, int Arity, typename Enable = void> 68 template <typename Domain, typename Terminal, int Arity, typename Enable = void> [all …]
|
/external/jline/src/src/main/java/jline/ |
D | Terminal.java | 19 public abstract class Terminal implements ConsoleOperations { class 20 private static Terminal term; 25 public static Terminal getTerminal() { in getTerminal() 51 public static synchronized Terminal setupTerminal() { in setupTerminal() 56 final Terminal t; in setupTerminal() 63 t = (Terminal) Class.forName(termProp).newInstance(); in setupTerminal() 180 return Terminal.class.getResourceAsStream( in getDefaultBindings()
|
/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/repository/home/qi/directive/ |
D | kwd.hpp | 643 template <typename Terminal> 644 …result_type create_kwd_string(Terminal const &term, Subject const & subject, boost::mpl::true_ ) c… in create_kwd_string() 653 template <typename Terminal> 654 …result_type create_kwd_string(Terminal const &term, Subject const & subject, boost::mpl::false_ ) … in create_kwd_string() 661 template <typename Terminal> 662 …result_type create_kwd(Terminal const &term, Subject const & subject, Modifiers const& /*modifiers… in create_kwd() 667 template <typename Terminal> 668 …result_type create_kwd(Terminal const &term , Subject const & subject, Modifiers const& modifiers,… in create_kwd() 676 template <typename Terminal> 678 Terminal const& term, Subject const& subject, Modifiers const& modifiers) const in operator ()() [all …]
|
/external/jline/src/src/test/java/jline/ |
D | ConsoleReaderTest.java | 22 if (!(Terminal.getTerminal() instanceof WindowsTerminal)) in testDeleteAndBackspaceKeymappings() 44 if (!(Terminal.getTerminal() instanceof WindowsTerminal)) in testDeleteOnWindowsTerminal() 57 if (!(Terminal.getTerminal() instanceof WindowsTerminal)) in testNumpadDeleteOnWindowsTerminal() 70 if (!(Terminal.getTerminal() instanceof WindowsTerminal)) in testHomeKeyOnWindowsTerminal() 82 if (!(Terminal.getTerminal() instanceof WindowsTerminal)) in testEndKeyOnWindowsTerminal() 95 if (!(Terminal.getTerminal() instanceof WindowsTerminal)) in testPageUpOnWindowsTerminal() 105 if (!(Terminal.getTerminal() instanceof WindowsTerminal)) in testPageDownOnWindowsTerminal() 115 if (!(Terminal.getTerminal() instanceof WindowsTerminal)) in testEscapeOnWindowsTerminal() 126 if (!(Terminal.getTerminal() instanceof WindowsTerminal)) in testInsertOnWindowsTerminal()
|
/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/lex/lexer/ |
D | char_token_def.hpp | 177 template <typename Terminal> 178 result_type operator()(Terminal const& term, unused_type) const in operator ()() 195 template <typename Terminal> 196 result_type operator()(Terminal const& term, unused_type) const in operator ()() 214 template <typename Terminal> 215 result_type operator()(Terminal const& term, unused_type) const in operator ()() 233 template <typename Terminal> 234 result_type operator()(Terminal const& term, unused_type) const in operator ()()
|
D | string_token_def.hpp | 151 template <typename Terminal> 152 result_type operator()(Terminal const& term, unused_type) const in operator ()() 168 template <typename Terminal> 169 result_type operator()(Terminal const& term, unused_type) const in operator ()()
|
/external/grpc-grpc/test/core/surface/ |
D | channel_init_test.cc | 59 b.RegisterFilter(GRPC_CLIENT_CHANNEL, FilterNamed("terminator")).Terminal(); in TEST() 68 b.RegisterFilter(GRPC_CLIENT_CHANNEL, FilterNamed("terminator")).Terminal(); in TEST() 69 b.RegisterFilter(GRPC_SERVER_CHANNEL, FilterNamed("terminator")).Terminal(); in TEST() 84 b.RegisterFilter(GRPC_CLIENT_CHANNEL, FilterNamed("aaa")).Terminal(); in TEST() 96 b.RegisterFilter(GRPC_CLIENT_CHANNEL, FilterNamed("aaa")).Terminal(); in TEST() 108 b.RegisterFilter(GRPC_CLIENT_CHANNEL, FilterNamed("aaa")).Terminal(); in TEST() 120 b.RegisterFilter(GRPC_CLIENT_CHANNEL, FilterNamed("aaa")).Terminal(); in TEST() 138 b.RegisterFilter(GRPC_CLIENT_CHANNEL, FilterNamed("bar")).Terminal(); in TEST() 148 .Terminal() in TEST() 151 .Terminal() in TEST() [all …]
|
/external/clang/include/clang/Analysis/Analyses/ |
D | ThreadSafetyLogical.h | 25 Terminal, enumerator 43 class Terminal : public LExpr { 47 Terminal(til::SExpr *Expr) : LExpr(LExpr::Terminal), Expr(Expr) {} in Terminal() function 52 static bool classof(const LExpr *E) { return E->kind() == LExpr::Terminal; } in classof()
|
/external/mtools/ |
D | tty.c | 33 typedef struct termios Terminal; typedef 39 typedef struct termios Terminal; typedef 45 typedef struct termio Terminal; typedef 51 typedef struct sgttyb Terminal; typedef 87 static Terminal in_orig; 129 Terminal in_raw; in set_raw_tty()
|
/external/clang/lib/Analysis/ |
D | ThreadSafetyLogical.cpp | 63 case LExpr::Terminal: in implies() 88 case LExpr::Terminal: in implies() 99 return cast<Terminal>(LHS)->expr() == cast<Terminal>(RHS)->expr(); in implies()
|
/external/sdv/vsomeip/third_party/boost/phoenix/include/boost/phoenix/core/ |
D | terminal.hpp | 21 #define BOOST_PHOENIX_DEFINE_CUSTOM_TERMINAL(Template, Terminal, IsNullary, EvalFun)\ argument 29 Terminal \ 36 struct is_custom_terminal<Terminal >: mpl::true_ {}; \ 39 struct custom_terminal<Terminal > : proto::call<EvalFun > {}; \
|
/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/karma/auxiliary/ |
D | lazy.hpp | 43 template <typename Terminal, typename Actor, int Arity> 243 template <typename Terminal, typename Actor, int Arity, typename Modifiers> 244 struct make_primitive<lazy_terminal<Terminal, Actor, Arity>, Modifiers> 248 lazy_terminal<Terminal, Actor, Arity> const& lt in operator ()() 256 typename Terminal, typename Actor, int Arity, typename Subject 258 struct make_directive<lazy_terminal<Terminal, Actor, Arity> 263 lazy_terminal<Terminal, Actor, Arity> const& lt in operator ()()
|
/external/sdv/vsomeip/third_party/boost/phoenix/example/ |
D | identity_transform.cpp | 48 template <typename Terminal, typename Context> 49 std::string operator()(Terminal const & terminal, Context) const in operator ()() 70 template <typename Terminal, typename Context> 71 std::string operator()(Terminal const & terminal, Context) const in operator ()()
|
/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/qi/auxiliary/ |
D | lazy.hpp | 44 template <typename Terminal, typename Actor, int Arity> 244 template <typename Terminal, typename Actor, int Arity, typename Modifiers> 245 struct make_primitive<lazy_terminal<Terminal, Actor, Arity>, Modifiers> 249 lazy_terminal<Terminal, Actor, Arity> const& lt in operator ()() 256 template <typename Terminal, typename Actor, int Arity, typename Subject, typename Modifiers> 257 struct make_directive<lazy_terminal<Terminal, Actor, Arity>, Subject, Modifiers> 261 lazy_terminal<Terminal, Actor, Arity> const& lt in operator ()()
|
/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/qi/directive/ |
D | repeat.hpp | 233 template <typename Terminal> 235 Terminal const& term, Subject const& subject, unused_type) const in operator ()() 248 template <typename Terminal> 250 Terminal const& term, Subject const& subject, unused_type) const in operator ()() 269 template <typename Terminal> 271 Terminal const& term, Subject const& subject, unused_type) const in operator ()()
|
/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/karma/directive/ |
D | columns.hpp | 211 template <typename Terminal> 212 result_type operator()(Terminal const& term, Subject const& subject in operator ()() 242 template <typename Terminal> 243 result_type operator()(Terminal const& term, Subject const& subject in operator ()() 265 template <typename Terminal> 266 result_type operator()(Terminal const& term, Subject const& subject in operator ()()
|
D | left_alignment.hpp | 227 template <typename Terminal> 228 result_type operator()(Terminal const& term, Subject const& subject in operator ()() 253 template <typename Terminal> 254 result_type operator()(Terminal const& term, Subject const& subject in operator ()() 275 template <typename Terminal> 276 result_type operator()(Terminal const& term, Subject const& subject in operator ()()
|
D | right_alignment.hpp | 237 template <typename Terminal> 238 result_type operator()(Terminal const& term, Subject const& subject in operator ()() 263 template <typename Terminal> 264 result_type operator()(Terminal const& term, Subject const& subject in operator ()() 285 template <typename Terminal> 286 result_type operator()(Terminal const& term, Subject const& subject in operator ()()
|
D | center_alignment.hpp | 244 template <typename Terminal> 245 result_type operator()(Terminal const& term, Subject const& subject in operator ()() 270 template <typename Terminal> 271 result_type operator()(Terminal const& term, Subject const& subject in operator ()() 292 template <typename Terminal> 293 result_type operator()(Terminal const& term, Subject const& subject in operator ()()
|
D | repeat.hpp | 312 template <typename Terminal> 314 Terminal const& term, Subject const& subject, unused_type) const in operator ()() 332 template <typename Terminal> 334 Terminal const& term, Subject const& subject, unused_type) const in operator ()() 358 template <typename Terminal> 360 Terminal const& term, Subject const& subject, unused_type) const in operator ()()
|
/external/bcc/examples/tracing/ |
D | undump_example.txt | 6 Terminal 1, UNIX Socket Server: 15 Terminal 2, UNIX socket Client: 24 Terminal 3, receive tracing:
|
/external/angle/third_party/glslang/src/Test/baseResults/ |
D | 100Limits.vert.out | 42 0:30 Loop Terminal Expression 88 0:34 Loop Terminal Expression 108 0:35 Loop Terminal Expression 136 0:36 Loop Terminal Expression 152 0:37 Loop Terminal Expression 182 0:38 Loop Terminal Expression 213 0:39 Loop Terminal Expression 216 0:39 Loop Terminal Expression 232 0:40 Loop Terminal Expression 250 0:41 Loop Terminal Expression [all …]
|
/external/deqp-deps/glslang/Test/baseResults/ |
D | 100Limits.vert.out | 42 0:30 Loop Terminal Expression 88 0:34 Loop Terminal Expression 108 0:35 Loop Terminal Expression 136 0:36 Loop Terminal Expression 152 0:37 Loop Terminal Expression 182 0:38 Loop Terminal Expression 213 0:39 Loop Terminal Expression 216 0:39 Loop Terminal Expression 232 0:40 Loop Terminal Expression 250 0:41 Loop Terminal Expression [all …]
|
/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/qi/char/ |
D | char.hpp | 499 template <typename Terminal> 500 result_type operator()(Terminal const& term, unused_type) const in operator ()() 528 template <typename Terminal> 529 result_type operator()(Terminal const& term, unused_type) const in operator ()() 553 template <typename Terminal> 554 result_type operator()(Terminal const& term, unused_type) const in operator ()() 577 template <typename Terminal> 578 result_type operator()(Terminal const& term, unused_type) const in operator ()() 604 template <typename Terminal> 605 result_type operator()(Terminal const& term, unused_type) const in operator ()()
|
/external/python/cpython3/Mac/PythonLauncher/ |
D | doscript.m | 17 char *bundleID = "com.apple.Terminal"; 22 [[NSWorkspace sharedWorkspace] launchApplication:@"Terminal.app"]; 50 NSLog(@"Terminal returned an error: %ld", (long)err);
|