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

1 2 3 4 5 6 7 8 91011>>

  /external/libgdx/gdx/src/com/badlogic/gdx/utils/async/
ThreadUtils.java 22 public static void yield () { method in class:ThreadUtils
23 Thread.yield();
  /external/deqp/scripts/khr_util/
gen_str_util.py 48 yield "const char*\tget%sName\t(int value);" % groupName
55 yield "tcu::Format::Bitfield<16>\tget%sStr\t(int value);" % groupName
62 yield "inline tcu::Format::Enum<int, 2>\tget%(name)sStr\t(int value)\t{ return tcu::Format::Enum<int, 2>(get%(name)sName, value); }" % {"name": groupName}
66 yield "inline tcu::Format::Enum<int, 1>\tgetBooleanStr\t(deUint8 value)\t{ return tcu::Format::Enum<int, 1>(getBooleanName, (int)value); }"
74 yield ""
75 yield "const char* get%sName (int value)" % groupName
76 yield "{"
77 yield "\tswitch (value)"
78 yield "\t{"
83 yield "case %s:\treturn \"%s\";" % (value, value
    [all...]
  /external/libcxx/test/std/thread/thread.threads/thread.thread.this/
yield.pass.cpp 14 // void this_thread::yield();
21 std::this_thread::yield();
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/utils/async/
ThreadUtils.java 25 public static void yield() { method in class:ThreadUtils
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.threads/thread.thread.this/
yield.pass.cpp 12 // void this_thread::yield();
19 std::this_thread::yield();
  /external/v8/test/mjsunit/es6/
generators-parsing.js 32 // Yield statements.
33 function* g() { yield 3; yield 4; }
35 // Yield expressions.
36 function* g() { (yield 3) + (yield 4); }
38 // Yield without a RHS.
39 function* g() { yield; }
40 function* g() { yield }
42 yield
102 function yield(yield) { yield: yield (yield + yield (0)); } function
    [all...]
generators-iteration.js 32 var GeneratorFunction = (function*(){yield 1;}).__proto__.constructor;
48 function* g() { yield 1; }
99 testNext(function*() { return yield* g(); });
100 testSend(function*() { return yield* g(); });
101 testThrow(function*() { return yield* g(); });
115 TestGenerator(function* g2() { yield 1; },
120 TestGenerator(function* g3() { yield 1; yield 2; },
125 TestGenerator(function* g4() { yield 1; yield 2; return 3; }
    [all...]
  /external/v8/test/mjsunit/harmony/
generators-turbo.js 39 { // yield in try-catch
42 try {yield 1} catch (error) {assertEquals("caught", error)}
63 let g = function*() { try {return 42} finally {yield 43} };
84 { // yield in try-finally, finally clause performs return
86 let g = function*() { try {yield 42} finally {return 13} };
130 { // yield in try-finally, finally clause doesn't perform return
132 let g = function*() { try {yield 42} finally {13} };
179 { // yield in try-finally, finally clause yields and performs return
181 let g = function*() { try {yield 42} finally {yield 43; return 13} }
    [all...]
generators.js 34 { // yield in try-catch
37 try {yield 1} catch (error) {assertEquals("caught", error)}
58 let g = function*() { try {return 42} finally {yield 43} };
79 { // yield in try-finally, finally clause performs return
81 let g = function*() { try {yield 42} finally {return 13} };
125 { // yield in try-finally, finally clause doesn't perform return
127 let g = function*() { try {yield 42} finally {13} };
174 { // yield in try-finally, finally clause yields and performs return
176 let g = function*() { try {yield 42} finally {yield 43; return 13} }
    [all...]
sloppy-legacy-duplicate-generators.js 25 function* x() { yield 1; }
26 { function* x() { yield 2 } }
32 function* y() { yield 1; }
33 function* y() { yield 2 }
39 function* z() { yield 1; }
44 function* a() { yield 2 }
57 function* x() { yield 1; }
58 { function* x() { yield 2 } }
  /prebuilts/gdb/darwin-x86/lib/python2.7/sqlite3/
dump.py 20 yield('BEGIN TRANSACTION;')
33 yield('DELETE FROM "sqlite_sequence";')
35 yield('ANALYZE "sqlite_master";')
41 # yield("INSERT INTO sqlite_master(type,name,tbl_name,rootpage,sql)"\
46 yield('%s;' % sql)
57 yield("%s;" % row[0])
68 yield('%s;' % sql)
70 yield('COMMIT;')
  /prebuilts/gdb/linux-x86/lib/python2.7/sqlite3/
dump.py 20 yield('BEGIN TRANSACTION;')
33 yield('DELETE FROM "sqlite_sequence";')
35 yield('ANALYZE "sqlite_master";')
41 # yield("INSERT INTO sqlite_master(type,name,tbl_name,rootpage,sql)"\
46 yield('%s;' % sql)
57 yield("%s;" % row[0])
68 yield('%s;' % sql)
70 yield('COMMIT;')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/
dump.py 20 yield('BEGIN TRANSACTION;')
33 yield('DELETE FROM "sqlite_sequence";')
35 yield('ANALYZE "sqlite_master";')
41 # yield("INSERT INTO sqlite_master(type,name,tbl_name,rootpage,sql)"\
46 yield('%s;' % sql)
57 yield("%s;" % row[0])
68 yield('%s;' % sql)
70 yield('COMMIT;')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/
dump.py 20 yield('BEGIN TRANSACTION;')
33 yield('DELETE FROM "sqlite_sequence";')
35 yield('ANALYZE "sqlite_master";')
41 # yield("INSERT INTO sqlite_master(type,name,tbl_name,rootpage,sql)"\
46 yield('%s;' % sql)
57 yield("%s;" % row[0])
68 yield('%s;' % sql)
70 yield('COMMIT;')
  /external/deqp/external/vulkancts/
gen_framework.py 403 yield "enum HandleType"
404 yield "{"
405 yield "\t%s = 0," % api.handles[0].getHandleType()
407 yield "\t%s," % handle.getHandleType()
408 yield "\tHANDLE_TYPE_LAST"
409 yield "};"
410 yield ""
437 yield "enum %s" % enum.name
438 yield "{"
441 yield lin
    [all...]
  /external/deqp/scripts/opengl/
gen_ext_init.py 31 yield ""
32 yield "if (de::contains(extSet, \"%s\"))" % extName
33 yield "{"
44 yield "\t" + line
46 yield "}"
  /external/pcre/dist/
CheckMan 8 $yield = 0;
23 $yield = 1;
50 $yield = 1;
58 $yield = 1;
66 exit $yield;
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/filters/
inject_meta_charset.py 42 yield {"type": "StartTag", "name": "head",
44 yield {"type": "EmptyTag", "name": "meta",
46 yield {"type": "EndTag", "name": "head"}
53 yield pending.pop(0)
55 yield {"type": "EmptyTag", "name": "meta",
58 yield pending.pop(0)
65 yield token
  /external/chromium-trace/catapult/telemetry/examples/browser_tests/
simple_numeric_test.py 25 yield 'add_1_and_2', (1, 2, options.adder_sum)
26 yield 'add_2_and_3', (2, 3, options.adder_sum)
27 yield 'add_7_and_3', (7, 3, options.adder_sum)
29 yield 'dontrun_add_1_and_2', (1, 2, options.adder_sum)
47 yield t, ()
61 yield 'multiplier_simple', (10, 2, 4)
62 yield 'multiplier_simple_2', (2, 3, 5)
63 yield 'multiplier_simple_3', (10, 3, 6)
65 yield 'dontrun_multiplier_simple', (10, 2, 4)
  /external/deqp/scripts/egl/
proc_address_tests.py 37 yield ""
38 yield "static const char* s_%s[] =" % name
39 yield "{"
42 yield "\t\"%s\"," % (entry)
44 yield "};"
52 yield line
54 yield ""
55 yield "static const struct"
56 yield "{"
57 yield "\tconst char*\t\t\tname;
    [all...]
  /external/chromium-trace/catapult/third_party/webapp2/tests/resources/jinja2_templates_compiled/
tmpl_3a79873b1b49be244fd5444b1258ce348be26de8.py 7 if 0: yield None
8 yield to_string(l_message)
  /external/v8/test/js-perf-test/Generators/
generators.js 19 yield 1;
20 yield 2;
21 yield 3;
22 yield 4;
23 yield 5;
45 yield x;
47 yield y;
74 skip = yield next;
95 yield* infix(node.left);
96 yield node.label
    [all...]
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/treewalkers/
genshistream.py 19 yield token
25 yield token
44 yield token
46 yield self.startTag(namespace, name, converted_attribs)
52 yield self.endTag(namespace, name)
55 yield self.comment(data)
59 yield token
62 yield self.doctype(*data)
69 yield self.unknown(kind)
  /prebuilts/gdb/darwin-x86/lib/python2.7/json/
encoder.py 213 """Encode the given object and yield each string
290 yield '[]'
313 yield buf + _encoder(value)
315 yield buf + 'null'
317 yield buf + 'true'
319 yield buf + 'false'
321 yield buf + str(value)
323 yield buf + _floatstr(value)
325 yield buf
333 yield chun
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/json/
encoder.py 213 """Encode the given object and yield each string
290 yield '[]'
313 yield buf + _encoder(value)
315 yield buf + 'null'
317 yield buf + 'true'
319 yield buf + 'false'
321 yield buf + str(value)
323 yield buf + _floatstr(value)
325 yield buf
333 yield chun
    [all...]

Completed in 970 milliseconds

1 2 3 4 5 6 7 8 91011>>