/external/python/cpython2/Demo/pysvr/ |
D | pysvr.py | 95 except SystemExit, how: 96 if how: 98 how = str(how) 100 how = "" 101 stdout.write("Exit %s\n" % how) 112 except SystemExit, how: 113 raise SystemExit, how, sys.exc_info()[2]
|
/external/python/cpython3/Lib/idlelib/ |
D | rpc.py | 174 how, (oid, methodname, args, kwargs) = request 192 if how == 'CALL': 197 elif how == 'QUEUE': 201 return ("ERROR", "Unsupported message type: %s" % how) 254 how, what = response 255 if how == "OK": 257 if how == "QUEUED": 259 if how == "EXCEPTION": 262 if how == "EOF": 266 if how == "ERROR": [all …]
|
/external/python/cpython2/Lib/idlelib/ |
D | rpc.py | 169 how, (oid, methodname, args, kwargs) = request 187 if how == 'CALL': 192 elif how == 'QUEUE': 196 return ("ERROR", "Unsupported message type: %s" % how) 245 how, what = response 246 if how == "OK": 248 if how == "QUEUED": 250 if how == "EXCEPTION": 253 if how == "EOF": 257 if how == "ERROR": [all …]
|
/external/capstone/tests/ |
D | README | 1 This directory contains some test code to show how to use Capstone API. 9 This code shows how to access to architecture-neutral information in disassembled 14 This code shows how to use SKIPDATA option to skip broken instructions (most likely 19 This code shows how to use the API cs_disasm_iter() to decode one instruction at 23 These code show how to access architecture-specific information for each 27 This code shows how to use Capstone from a Windows driver.
|
/external/ltp/include/lapi/ |
D | safe_rt_signal.h | 32 int how, const sigset_t *set, in safe_rt_sigprocmask() argument 37 ret = tst_syscall(__NR_rt_sigprocmask, how, set, oldset, sigsetsize); in safe_rt_sigprocmask() 41 file, lineno, how, set, oldset, sigsetsize); in safe_rt_sigprocmask() 47 #define SAFE_RT_SIGPROCMASK(how, set, oldset, sigsetsize) \ argument 48 safe_rt_sigprocmask(__FILE__, __LINE__, how, set, oldset, sigsetsize)
|
/external/python/cpython2/Doc/library/ |
D | email-examples.rst | 6 Here are a few examples of how to use the :mod:`email` package to read, write, 9 First, let's see how to create and send a simple text message: 20 Here's an example of how to send a MIME message containing a bunch of family 26 Here's an example of how to send the entire contents of a directory as an email 32 Here's an example of how to unpack a MIME message like the one 37 Here's an example of how to create an HTML message with an alternative plain
|
/external/libxml2/ |
D | xzlib.c | 65 int how; /* 0: get header, 1: copy, 2: decompress */ member 127 state->how = LOOK; /* look for gzip header */ in xz_reset() 197 switch (state->how) { in xz_compressed() 448 state->how = LZMA; in xz_head() 503 state->how = GZIP; in xz_head() 524 state->how = COPY; in xz_head() 554 if (state->how == GZIP) { in xz_decomp() 594 if ((state->how != GZIP) && in xz_decomp() 611 if (state->how == GZIP) { in xz_decomp() 634 state->how = LOOK; /* ready for next stream, once have is 0 (leave in xz_decomp() [all …]
|
/external/v8/src/snapshot/ |
D | deserializer.cc | 402 #define CASE_STATEMENT(where, how, within, space_number) \ in ReadData() argument 403 case where + how + within + space_number: \ in ReadData() 405 STATIC_ASSERT((how & ~kHowToCodeMask) == 0); \ in ReadData() 409 #define CASE_BODY(where, how, within, space_number_if_any) \ in ReadData() argument 410 current = ReadDataCase<where, how, within, space_number_if_any>( \ in ReadData() 417 #define ALL_SPACES(where, how, within) \ in ReadData() argument 418 CASE_STATEMENT(where, how, within, NEW_SPACE) \ in ReadData() 419 CASE_BODY(where, how, within, NEW_SPACE) \ in ReadData() 420 CASE_STATEMENT(where, how, within, OLD_SPACE) \ in ReadData() 422 CASE_STATEMENT(where, how, within, CODE_SPACE) \ in ReadData() [all …]
|
/external/python/cpython2/Lib/ |
D | posixfile.py | 153 def lock(self, how, *args): argument 156 if 'w' in how: l_type = fcntl.F_WRLCK 157 elif 'r' in how: l_type = fcntl.F_RDLCK 158 elif 'u' in how: l_type = fcntl.F_UNLCK 161 if '|' in how: cmd = fcntl.F_SETLKW 162 elif '?' in how: cmd = fcntl.F_GETLK 197 if '?' in how:
|
/external/python/cpython3/Doc/library/ |
D | email.examples.rst | 6 Here are a few examples of how to use the :mod:`email` package to read, write, 9 First, let's see how to create and send a simple text message (both the 21 Here's an example of how to send a MIME message containing a bunch of family 27 Here's an example of how to send the entire contents of a directory as an email 33 Here's an example of how to unpack a MIME message like the one 39 Here's an example of how to create an HTML message with an alternative plain
|
/external/ltp/testcases/open_posix_testsuite/ |
D | QUICK-START | 15 * See the "BUILD" file for info on how to set up the Makefile and your machine, 38 * For additional information on how to build and run the tests in this 47 BUILD - describes how to set up your developer machine to build and test 49 The following files give developers information on how to write test 59 HOWTO_Tagging - describes how to tag files for inclusion in a release 60 HOWTO_RunTests - describes how to build and run the tests
|
/external/pcre/dist2/testdata/ |
D | testinput24 | 373 /how.to how\.to/ 374 how\nto how.to 376 how\x{0}to how.to 378 /^how to \^how to/
|
D | testoutput24 | 587 /how.to how\.to/ 588 (*NUL)how.to how\.to 589 how\nto how.to 590 0: how\x0ato how.to 592 how\x{0}to how.to 595 /^how to \^how to/ 596 (*NUL)^how to \^how to
|
/external/tensorflow/tensorflow/examples/wav_to_spectrogram/ |
D | README.md | 3 This example shows how you can load audio from a .wav file, convert it to a 30 To control how the spectrogram is created, you can specify the `--window_size` 31 and `--stride` arguments, which control how wide the window used to estimate 32 frequencies is, and how widely adjacent windows are spaced. 41 Here's an example of how to use all of them together:
|
/external/ltp/testcases/open_posix_testsuite/conformance/definitions/sched_h/ |
D | coverage.txt | 13 6 NO implementation defined on how to get the priority range 14 7 NO implementation defined on how to get the minimum priority range for a policy 16 9 NO implementation defined on how to get the other policies
|
/external/autotest/client/site_tests/platform_BootPerf/ |
D | control | 24 - how long it took just the firmware to boot. 26 - how long from kernel startup to login screen display. 28 - how long we've been up before starting the kernel. 30 - how long we've been up after starting the kernel.
|
/external/grpc-grpc/doc/csharp/ |
D | server_reflection.md | 3 This document shows how to use gRPC Server Reflection in gRPC C#. 5 for general information and more examples how to use server reflection. 46 For more examples and instructions how to use the `grpc_cli` tool, 53 information about how the server reflection works and describes the server reflection
|
/external/capstone/bindings/python/ |
D | BUILDING.txt | 1 0. This documentation explains how to install the Python bindings for Capstone 54 4. This directory contains some test code to show how to use the Capstone API. 62 Similarly to test_basic.py, but this code shows how to use disasm_lite(), a lighter 71 This code shows how to access to architecture-neutral information in disassembled 76 These code show how to access architecture-specific information for each
|
/external/deqp/framework/delibs/deutil/ |
D | deSocket.c | 637 int how = 0; in deSocket_shutdown() local 640 how = SD_BOTH; in deSocket_shutdown() 642 how = SD_SEND; in deSocket_shutdown() 644 how = SD_RECEIVE; in deSocket_shutdown() 646 if (shutdown(sock->handle, how) == 0) in deSocket_shutdown() 664 int how = 0; in deSocket_shutdown() local 667 how = SHUT_RDWR; in deSocket_shutdown() 669 how = SHUT_WR; in deSocket_shutdown() 671 how = SHUT_RD; in deSocket_shutdown() 673 if (shutdown(sock->handle, how) == 0) in deSocket_shutdown()
|
/external/compiler-rt/lib/esan/ |
D | esan_interceptors.cpp | 427 INTERCEPTOR(int, sigprocmask, int how, __sanitizer_sigset_t *set, in INTERCEPTOR() argument 430 COMMON_INTERCEPTOR_ENTER(ctx, sigprocmask, how, set, oldset); in INTERCEPTOR() 432 if (processSigprocmask(how, set, oldset)) in INTERCEPTOR() 433 res = REAL(sigprocmask)(how, set, oldset); in INTERCEPTOR() 444 INTERCEPTOR(int, pthread_sigmask, int how, __sanitizer_sigset_t *set, in INTERCEPTOR() argument 447 COMMON_INTERCEPTOR_ENTER(ctx, pthread_sigmask, how, set, oldset); in INTERCEPTOR() 449 if (processSigprocmask(how, set, oldset)) in INTERCEPTOR() 450 res = REAL(sigprocmask)(how, set, oldset); in INTERCEPTOR()
|
/external/capstone/bindings/ocaml/ |
D | README | 9 This directory also contains some test code to show how to use Capstone API. 17 This code shows how to access to architecture-neutral information in disassembled 22 These code show how to access architecture-specific information for each
|
/external/python/cpython2/Lib/lib-tk/ |
D | FileDialog.py | 124 self.how = None 128 if self.how: 129 directory = os.path.dirname(self.how) 132 return self.how 134 def quit(self, how=None): argument 135 self.how = how
|
/external/swiftshader/third_party/llvm-7.0/llvm/docs/ |
D | index.rst | 93 Discusses how to get up and running quickly with the LLVM infrastructure. 161 A collection of tips for frontend authors on how to generate IR 215 Look here to see how to add instructions and intrinsics to LLVM. 292 Information on how to write LLVM transformations and analyses. 295 Information on how to write LLVM backends for machine targets. 311 Information on how to write a new alias analysis implementation or how to 315 Information about the MemorySSA utility in LLVM, as well as how to use it. 341 how to keep LLVM source code portable 364 This document describes segmented stacks and how they are used in LLVM. 412 High-level documentation of how to use XRay in LLVM. [all …]
|
/external/boringssl/src/ |
D | README.md | 26 * [PORTING.md](/PORTING.md): how to port OpenSSL-using code to BoringSSL. 27 * [BUILDING.md](/BUILDING.md): how to build BoringSSL 28 * [INCORPORATING.md](/INCORPORATING.md): how to incorporate BoringSSL into a project. 33 * [CONTRIBUTING.md](/CONTRIBUTING.md): how to contribute to BoringSSL.
|
/external/grpc-grpc/doc/python/ |
D | server_reflection.md | 3 This document shows how to use gRPC Server Reflection in gRPC Python. 5 for general information and more examples how to use server reflection. 53 For more examples and instructions how to use the `grpc_cli` tool, 60 information about how the server reflection works and describes the server reflection
|