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

1 2 3 4 5 6 7 8 91011>>

  /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/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...]
generators-iteration.js 32 var GeneratorFunction = (function*(){yield 1;}).__proto__.constructor;
39 function* g() { yield 1; }
89 testNext(function*() { return yield* g(); });
90 testSend(function*() { return yield* g(); });
91 testThrow(function*() { return yield* g(); });
105 TestGenerator(function* g2() { yield 1; },
110 TestGenerator(function* g3() { yield 1; yield 2; },
115 TestGenerator(function* g4() { yield 1; yield 2; return 3; }
    [all...]
  /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/chromium_org/tools/grit/grit/format/
chrome_messages_json.py 18 yield '{\n'
34 yield ',\n'
36 yield format % (id, loc_message)
38 yield '\n}\n'
  /prebuilts/python/darwin-x86/2.7.5/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/python/linux-x86/2.7.5/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...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/smart_ptr/detail/
yield_k.hpp 15 // void yield( unsigned k );
19 // for( unsigned k = 0; !try_lock(); ++k ) yield( k );
61 inline void yield( unsigned k ) function in namespace:boost::detail
97 inline void yield( unsigned k )
139 inline void yield( unsigned )
  /external/chromium_org/third_party/jinja2/
meta.py 77 # something const, only yield the strings and ignore
81 yield template_name.value
84 yield None
87 yield None
91 yield node.template.value
93 # yield the consts that are strings. We could warn here for
99 yield template_name
102 yield None
  /external/chromium_org/tools/gdb/
gdb_chrome.py 202 yield ('header_', self.header().dereference())
203 yield ('capacity_', self.val['capacity_'])
204 yield ('variable_buffer_offset_', self.val['variable_buffer_offset_'])
208 yield (field.name, self.val[field.name])
243 yield ('id_', self.val['id_'])
244 yield ('has_site_', self.val['has_site_'])
246 yield ('browsing_instance_', self.val['browsing_instance_']['ptr_'])
248 yield ('process_', typed_ptr(self.val['process_']))
250 yield ('render_process_host_factory_',
276 yield ('id_', self.val['id_']
    [all...]
  /external/chromium_org/third_party/simplejson/
encoder.py 246 """Encode the given object and yield each string
340 yield chunk
368 yield '[]'
391 yield buf + _encoder(value)
393 yield buf + 'null'
395 yield buf + 'true'
397 yield buf + 'false'
399 yield ((buf + str(value))
404 yield buf + _floatstr(value)
406 yield buf + str(value
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
file_system_util.py 14 yield url, posixpath.join(directory, root, f)
  /external/chromium_org/tools/telemetry/telemetry/core/timeline/
slice.py 31 yield sub_slice
33 yield sub_sub
45 yield s
46 yield sub_slice
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
iterators.py 27 yield self
31 yield subsubpart
46 yield line
59 yield subpart
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
iterators.py 27 yield self
31 yield subsubpart
46 yield line
59 yield subpart
  /external/chromium_org/third_party/tlslite/tlslite/
TLSConnection.py 370 yield result
515 yield result
522 yield result
542 yield result
547 yield result
552 yield result
567 yield result
572 yield result
577 yield result
582 yield resul
    [all...]
TLSRecordLayer.py 214 yield result
231 yield returnStr
280 yield result
326 yield result
334 yield result
346 yield result
465 yield result
473 yield result
489 yield result
560 yield
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
DotTreeGenerator.cs 127 yield break;
134 yield break;
138 yield return GetNodeText( adaptor, tree );
144 yield return GetNodeText( adaptor, child );
146 yield return t;
153 yield break;
160 yield break;
172 yield return string.Format( EdgeFormat, parentName, childName, FixString( parentText ), FixString( childText ) );
174 yield return t;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Utility/Antlr.Utility.Tree/
DOTTreeGenerator.cs 122 yield break;
128 yield break;
132 yield return GetNodeText(adaptor, tree);
137 yield return GetNodeText(adaptor, child);
139 yield return t;
145 yield break;
151 yield break;
162 yield return string.Format(EdgeFormat, parentName, childName, FixString(parentText), FixString(childText));
164 yield return t;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
DotTreeGenerator.cs 127 yield break;
134 yield break;
138 yield return GetNodeText( adaptor, tree );
144 yield return GetNodeText( adaptor, child );
146 yield return t;
153 yield break;
160 yield break;
172 yield return string.Format( EdgeFormat, parentName, childName, FixString( parentText ), FixString( childText ) );
174 yield return t;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_contextlib.py 21 yield 42
35 yield 42
49 yield
59 yield
61 yield
74 yield 42
116 yield 1
119 yield 2
122 yield 3
134 yield
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_contextlib.py 21 yield 42
35 yield 42
49 yield
59 yield
61 yield
74 yield 42
116 yield 1
119 yield 2
122 yield 3
134 yield
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
Threading.h 62 WTF_EXPORT void yield();
74 using WTF::yield;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
phystokens.py 50 # Yield the token, with a fake token type.
51 yield (
58 yield ttype, ttext, (slineno, scol), (elineno, ecol), ltext
86 yield line
108 yield line

Completed in 969 milliseconds

1 2 3 4 5 6 7 8 91011>>