HomeSort by relevance Sort by last modified time
    Searched refs:Yield (Results 1 - 25 of 30) sorted by null

1 2

  /external/chromium_org/v8/test/mjsunit/harmony/
generators-parsing.js 32 // Yield statements.
33 function* g() { yield 3; yield 4; }
35 // Yield expressions.
36 function* g() { (yield 3) + (yield 4); }
39 function* g() { "use strict"; yield 3; yield 4; }
42 // of yield expression.
43 function* g() { yield 1; return;
72 function yield(yield) { yield: yield (yield + yield (0)); } function
    [all...]
  /hardware/samsung_slsi/exynos5/mobicore/common/MobiCore/inc/Mci/
mcifcfunc.h 8 * Holds the functions for SIQ, YIELD and FastCall for switching to the secure world.
45 * @attention This function shall not be used directly. Use N_Siq() or Yield() instead.
56 * Yield switch from NWd to SWd.
59 inline void Yield(void) { smc(MC_SMC_N_YIELD); }
  /external/v8/src/
d8.h 299 #undef Yield
304 static Handle<Value> Yield(const Arguments& args);
d8.cc 514 Handle<Value> Shell::Yield(const Arguments& args) {
    [all...]
  /external/chromium_org/v8/src/
preparser.h 108 #undef Yield
271 static Identifier Yield() {
ast.h 108 V(Yield) \
127 #undef Yield
3176 Yield* yield = new(zone_) Yield( local
    [all...]
prettyprinter.cc 367 void PrettyPrinter::VisitYield(Yield* node) {
368 Print("yield ");
1089 void AstPrinter::VisitYield(Yield* node) {
1090 IndentedScope indent(this, "YIELD");
parser.cc 2321 Expression* yield = factory()->NewYield( local
3004 Yield* yield = local
4486 Yield* yield = factory()->NewYield( local
4498 Yield* yield = factory()->NewYield( local
    [all...]
preparser.cc 838 if (scope_->is_generator() && peek() == i::Token::YIELD) {
874 // 'yield' '*'? AssignmentExpression
875 Consume(i::Token::YIELD);
    [all...]
typing.cc 416 void AstTyper::VisitYield(Yield* expr) {
ast.cc     [all...]
full-codegen.cc 244 void BreakableStatementChecker::VisitYield(Yield* expr) {
245 // Yield is breakable if the expression is.
    [all...]
  /frameworks/base/media/mca/filterfw/native/core/
shader_program.h 466 void Yield();
shader_program.cpp 545 Yield();
554 void ShaderProgram::Yield() {
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
Python-ast.h 255 } Yield;
481 #define Yield(a0, a1, a2, a3) _Py_Yield(a0, a1, a2, a3)
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
Python-ast.h 255 } Yield;
481 #define Yield(a0, a1, a2, a3) _Py_Yield(a0, a1, a2, a3)
  /external/chromium_org/v8/src/arm/
full-codegen-arm.cc     [all...]
  /external/chromium_org/v8/src/ia32/
full-codegen-ia32.cc     [all...]
  /external/chromium_org/v8/src/mips/
full-codegen-mips.cc     [all...]
  /external/chromium_org/v8/src/x64/
full-codegen-x64.cc     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
transformer.py 426 return Yield(value, lineno=nodelist[0][2])
    [all...]
ast.py 29 yield n
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
transformer.py 426 return Yield(value, lineno=nodelist[0][2])
    [all...]
ast.py 29 yield n
    [all...]
  /prebuilts/misc/common/jython/
jython.jar 

Completed in 506 milliseconds

1 2