Searched defs:yield (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/v8/test/mjsunit/es6/
H A Dgenerators-parsing.js31 function* g() { yield 3; yield 4; }
34 function* g() { (yield 3) + (yield 4); }
37 function* g() { yield; }
38 function* g() { yield }
40 yield
42 function* g() { (yield) }
43 function* g() { [yield] }
44 function* g() { {yield} }
100 function yield(yield) { yield: yield (yield + yield (0)); } function
[all...]
/external/pcre/dist/
H A Dpcre_maketables.c80 unsigned char *yield, *p; local
84 yield = (unsigned char*)(PUBL(malloc))(tables_length);
86 yield = (unsigned char*)malloc(tables_length);
89 if (yield == NULL) return NULL;
90 p = yield;
153 return yield;
H A Dpcre_get.c318 (i.e. the yield of the pcre_exec call, unless
347 int yield; local
351 yield = ovector[stringnumber+1] - ovector[stringnumber];
352 if (size < yield + 1) return PCRE_ERROR_NOMEMORY;
353 memcpy(buffer, subject + ovector[stringnumber], IN_UCHARS(yield));
354 buffer[yield] = 0;
355 return yield;
373 (i.e. the yield of the pcre_exec call, unless
429 (i.e. the yield of the pcre_exec call, unless
528 (i.e. the yield o
556 int yield; local
[all...]
H A Dpcre_study.c764 int yield = SSB_DONE; local
948 yield = SSB_CONTINUE;
1382 return yield;
H A Dpcregrep.c1091 int yield = 0; local
1094 buffer[yield++] = c;
1095 if (c == '\n' || yield >= length) break;
1097 return yield;
2334 /* Pass back the yield from pcregrep(). */
H A Dpcre_compile.c3912 register int yield = 0; local
3913 while (posix_name_lengths[yield] != 0)
3915 if (len == posix_name_lengths[yield] &&
3916 STRNCMP_UC_C8(ptr, pn, (unsigned int)len) == 0) return yield;
3917 pn += posix_name_lengths[yield] + 1;
3918 yield++;
H A Dpcretest.c2022 int yield = 0; local
2037 yield += pchar(c, f);
2043 yield += pchar(c, f);
2046 return yield;
2092 int yield = 0; local
2112 yield += pchar(c, f);
2115 return yield;
2131 int yield = 0; local
2141 yield += pchar(c, f);
2144 return yield;
2999 int yield = 0; local
[all...]
/external/clang/test/CodeGen/
H A Dbuiltins-arm.c22 void yield() { function
/external/chromium_org/third_party/icu/source/test/threadtest/
H A Dthreadtest.cpp51 static void yield() {::Sleep(0);}; function in class:ThreadFuncs
100 static void yield() {sched_yield();}; function in class:ThreadFuncs
482 ThreadFuncs::yield();
511 ThreadFuncs::yield();
/external/icu/icu4c/source/test/threadtest/
H A Dthreadtest.cpp51 static void yield() {::Sleep(0);}; function in class:ThreadFuncs
100 static void yield() {sched_yield();}; function in class:ThreadFuncs
482 ThreadFuncs::yield();
511 ThreadFuncs::yield();
/external/llvm/lib/IR/
H A DLLVMContext.cpp124 void LLVMContext::yield() { function in class:LLVMContext
/external/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITCAPITest.cpp68 static void yield(LLVMContextRef, void *) { function
439 TEST_F(MCJITCAPITest, yield) {
446 LLVMContextSetYieldCallback(C, yield, nullptr);
/external/libpcap/
H A Dpcap-dos.c317 (*p->wait_proc)(); /* call yield func */
347 _w32_os_yield(); /* allow SIGINT generation, yield to Win95/NT */
605 * For pcap_offline_read(): wait and yield between printing packets
608 void pcap_set_wait (pcap_t *p, void (*yield)(void), int wait) argument
614 pd->wait_proc = yield;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderInline.cpp562 void RenderInline::generateLineBoxRects(GeneratorContext& yield) const
565 generateCulledLineBoxRects(yield, this);
568 yield(FloatRect(curr->topLeft(), curr->size()));
570 yield(FloatRect());
574 void RenderInline::generateCulledLineBoxRects(GeneratorContext& yield, const RenderInline* container) const argument
577 yield(FloatRect());
596 yield(FloatRect(currBox->inlineBoxWrapper()->x() - currBox->marginLeft(), logicalTop, (currBox->width() + currBox->marginWidth()).toFloat(), logicalHeight));
598 yield(FloatRect(logicalTop, currBox->inlineBoxWrapper()->y() - currBox->marginTop(), logicalHeight, (currBox->height() + currBox->marginHeight()).toFloat()));
604 currInline->generateCulledLineBoxRects(yield, container);
611 yield(FloatRec
[all...]
/external/chromium_org/v8/src/
H A Dparser.cc2577 Expression* yield = factory()->NewYield( local
2579 result = factory()->NewExpressionStatement(yield, loc.beg_pos);
3527 // in a temporary variable, a definition that is used by "yield"
3786 // For generators, allocate and yield an iterator on function entry.
3800 Yield* yield = factory()->NewYield( local
3803 yield, RelocInfo::kNoPosition), zone());
3813 Yield* yield = factory()->NewYield(get_proxy, undefined, Yield::kFinal, local
3816 yield, RelocInfo::kNoPosition), zone());
H A Dpreparser.h224 // is used by yield expressions and return statements. It is not necessary
851 // except for eval, arguments, yield, and reserved keywords.
2209 // 'yield' ([no line terminator] '*'? AssignmentExpression)?
2243 typename Traits::Type::YieldExpression yield = local
2246 yield->set_index(function_state_->NextHandlerIndex());
2248 return yield;
H A Dast.h2230 kInitial, // The initial yield that returns the unboxed generator object.
2231 kSuspend, // A normal yield: { value: EXPRESSION, done: false }
2232 kDelegating, // A yield*.
2240 // Delegating yield surrounds the "yield" in a "try/catch". This index
3472 Yield* yield = new (zone_) local
3474 VISIT_AND_RETURN(Yield, yield)
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...

Completed in 4003 milliseconds