/external/pcre/dist2/ |
D | CheckMan | 8 $yield = 0; 23 $yield = 1; 50 $yield = 1; 58 $yield = 1; 66 exit $yield;
|
/external/pcre/dist2/src/ |
D | pcre2_match_data.c | 59 pcre2_match_data *yield; in pcre2_match_data_create() local 61 yield = PRIV(memctl_malloc)( in pcre2_match_data_create() 64 if (yield == NULL) return NULL; in pcre2_match_data_create() 65 yield->oveccount = oveccount; in pcre2_match_data_create() 66 return yield; in pcre2_match_data_create()
|
D | pcre2_maketables.c | 76 uint8_t *yield = (uint8_t *)malloc(tables_length); local 82 uint8_t *yield = (uint8_t *)((gcontext != NULL)? 90 if (yield == NULL) return NULL; 91 p = yield; 154 return yield;
|
D | pcre2_substring.c | 214 PCRE2_UCHAR *yield; in pcre2_substring_get_bynumber() local 217 yield = PRIV(memctl_malloc)(sizeof(pcre2_memctl) + in pcre2_substring_get_bynumber() 219 if (yield == NULL) return PCRE2_ERROR_NOMEMORY; in pcre2_substring_get_bynumber() 220 yield = (PCRE2_UCHAR *)(((char *)yield) + sizeof(pcre2_memctl)); in pcre2_substring_get_bynumber() 221 memcpy(yield, match_data->subject + match_data->ovector[stringnumber*2], in pcre2_substring_get_bynumber() 223 yield[size] = 0; in pcre2_substring_get_bynumber() 224 *stringptr = yield; in pcre2_substring_get_bynumber()
|
D | pcre2_context.c | 89 void *yield = (memctl == NULL)? malloc(size) : in PRIV() local 91 if (yield == NULL) return NULL; in PRIV() 92 newmemctl = (pcre2_memctl *)yield; in PRIV() 100 return yield; in PRIV()
|
/external/linux-kselftest/tools/testing/selftests/ftrace/test.d/event/ |
D | subsystem-enable.tc | 17 yield() { 31 yield 42 yield 53 yield
|
D | toplevel-enable.tc | 16 yield() { 30 yield 44 yield 56 yield
|
D | event-enable.tc | 17 yield() { 31 yield 42 yield 53 yield
|
D | event-pid.tc | 19 yield() { 38 yield 52 yield 65 yield
|
/external/libcxx/test/std/experimental/language.support/support.coroutines/end.to.end/ |
D | oneshot_func.pass.cpp | 70 int yield(int x) { yielded_values.push_back(x); return x + 1; } in yield() function 73 void Do1(func<int> f) { yield(f()); } in Do1() 74 void Do2(func<double> f) { yield(static_cast<int>(f())); } in Do2() 77 Do1([] { return yield(43); }); in main()
|
/external/llvm/test/MC/ARM/ |
D | arm11-hint-instr.s | 21 yield 33 @ CHECK-ERROR-V6: yield 54 @ CHECK-ARM: yield @ encoding: [0x01,0xf0,0x20,0xe3] 64 @ CHECK-THUMB: yield @ encoding: [0x10,0xbf] 76 @ CHECK-V6M: yield @ encoding: [0x10,0xbf]
|
D | thumb-hints.s | 10 yield 15 @ CHECK: yield @ encoding: [0x10,0xbf] 37 @ CHECK-ERROR-NEXT: yield
|
/external/python/cpython2/Doc/library/ |
D | itertools.rst | 103 yield element 115 yield element 142 yield tuple(pool[i] for i in indices) 152 yield tuple(pool[i] for i in indices) 163 yield tuple(pool[i] for i in indices) 192 yield tuple(pool[i] for i in indices) 200 yield tuple(pool[i] for i in indices) 211 yield tuple(pool[i] for i in indices) 242 yield n 262 yield element [all …]
|
D | contextlib.rst | 34 yield 45 called. This iterator must yield exactly one value, which will be bound to 51 generator at the point where the yield occurred. Thus, you can use a 119 yield thing
|
/external/python/cpython3/Doc/library/ |
D | asyncio-dev.rst | 82 yield from fut 95 the same thread. But when the task uses ``yield from``, the task is suspended 269 yield from bug() 296 should be chained explicitly with ``yield from``. Otherwise, the execution is 306 yield from asyncio.sleep(3.0) 311 yield from asyncio.sleep(1.0) 323 yield from asyncio.sleep(2.0) 355 To fix the example, tasks must be marked with ``yield from``:: 359 yield from asyncio.ensure_future(create()) 360 yield from asyncio.ensure_future(write()) [all …]
|
D | itertools.rst | 112 yield total 115 yield total 166 yield element 178 yield element 203 yield tuple(pool[i] for i in indices) 213 yield tuple(pool[i] for i in indices) 224 yield tuple(pool[i] for i in indices) 251 yield tuple(pool[i] for i in indices) 259 yield tuple(pool[i] for i in indices) 270 yield tuple(pool[i] for i in indices) [all …]
|
D | asyncio-stream.rst | 209 yield from w.drain() 214 to wait for, the yield-from continues immediately. 219 and the coroutine does not yield-from between calls to :meth:`write`. 304 reader, writer = yield from asyncio.open_connection('127.0.0.1', 8888, 310 data = yield from reader.read(100) 338 data = yield from reader.read(100) 345 yield from writer.drain() 388 reader, writer = yield from connect 394 line = yield from reader.readline() 438 reader, writer = yield from asyncio.open_connection(sock=rsock, loop=loop) [all …]
|
D | asyncio-task.rst | 20 coroutines use the ``yield from`` syntax introduced in :pep:`380`, 21 instead of the original ``yield`` syntax. 39 - ``result = await future`` or ``result = yield from future`` -- 46 - ``result = await coroutine`` or ``result = yield from coroutine`` -- 52 waiting for this one using :keyword:`await` or ``yield from``. 55 waiting for this one using :keyword:`await` or ``yield from``. 60 call ``await coroutine`` or ``yield from coroutine`` from another coroutine 71 the generator use :keyword:`!yield from` to call :keyword:`async 514 result = yield from f # The 'yield from' may raise 630 res = yield from shield(something()) [all …]
|
/external/linux-kselftest/tools/testing/selftests/ftrace/test.d/ftrace/ |
D | func-filter-pid.tc | 57 yield() { 76 yield 97 yield
|
/external/valgrind/none/tests/x86/ |
D | Makefile.am | 81 yield.stderr.exp yield.stdout.exp yield.disabled \ 116 yield \ program
|
/external/swiftshader/third_party/LLVM/test/MC/ARM/ |
D | thumb.s | 49 yield 52 @ CHECK: yield @ encoding: [0x10,0xbf]
|
/external/ltp/testcases/kernel/sched/clisrv/ |
D | pthserv.c | 157 yield(); in main() 178 yield(); in new_thread()
|
/external/python/cpython3/Doc/reference/ |
D | expressions.rst | 146 tuple may or may not yield the same object). 344 keyword: yield 345 pair: yield; expression 350 yield_expression: "yield" [`expression_list` | "from" `expression`] 352 The yield expression is used when defining a :term:`generator` function 354 thus can only be used in the body of a function definition. Using a yield 360 yield 123 363 yield 123 372 time, the execution proceeds to the first yield expression, where it is 378 generator's methods, the function can proceed exactly as if the yield expression [all …]
|
/external/kmod/libkmod/python/kmod/ |
D | kmod.pyx | 71 yield mod 87 yield mod 103 yield (mod.name, mod.size)
|
/external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/ |
D | RubyBuilder.java | 95 block.yield(context, ctx); in addMessage() 124 block.yield(context, ctx); in addEnum()
|