/external/libcxx/test/thread/thread.threads/thread.thread.this/ |
yield.pass.cpp | 12 // void this_thread::yield(); 19 std::this_thread::yield();
|
/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/es6/ |
generators-parsing.js | 30 // Yield statements. 31 function* g() { yield 3; yield 4; } 33 // Yield expressions. 34 function* g() { (yield 3) + (yield 4); } 36 // Yield without a RHS. 37 function* g() { yield; } 38 function* g() { yield } 40 yield 100 function yield(yield) { yield: yield (yield + yield (0)); } function [all...] |
generators-iteration.js | 32 var GeneratorFunction = (function*(){yield 1;}).__proto__.constructor; 51 function* g() { yield 1; } 102 testNext(function*() { return yield* g(); }); 103 testSend(function*() { return yield* g(); }); 104 testThrow(function*() { return yield* g(); }); 118 TestGenerator(function* g2() { yield 1; }, 123 TestGenerator(function* g3() { yield 1; yield 2; }, 128 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/pcre/dist/ |
CheckMan | 8 $yield = 0; 23 $yield = 1; 50 $yield = 1; 58 $yield = 1; 66 exit $yield;
|
pcre_maketables.c | 80 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;
|
/external/chromium_org/tools/grit/grit/format/ |
chrome_messages_json.py | 18 yield '{\n' 35 yield ',\n' 37 yield format % (id, loc_message) 39 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...] |
/external/chromium_org/tools/gdb/ |
gdb_chrome.py | 60 yield result 68 yield (field.name, val.cast(gdb.lookup_type(field.name))) 70 yield (field.name, val[field.name]) 176 yield result 240 yield ('header_', self.header().dereference()) 241 yield ('capacity_after_header_', self.val['capacity_after_header_']) 245 yield (field.name, self.val[field.name]) 280 yield ('id_', self.val['id_']) 281 yield ('has_site_', self.val['has_site_']) 283 yield ('browsing_instance_', self.val['browsing_instance_']['ptr_'] [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 | 78 # something const, only yield the strings and ignore 82 yield template_name.value 85 yield None 88 yield None 92 yield node.template.value 94 # yield the consts that are strings. We could warn here for 100 yield template_name 103 yield None
|
/external/nanopb-c/generator/ |
nanopb_generator.py | 600 '''Recursively find all messages. For each, yield name, DescriptorProto.''' 608 yield sub_names, submsg 611 yield x 615 For each, yield name, FieldDescriptorProto. 618 yield names, extension 622 yield subname, extension 677 yield item 692 yield message_by_name[msgname] 709 yield '/* Automatically generated nanopb header */\n' 711 yield '/* Generated by %s */\n\n' % (nanopb_version [all...] |
/external/chromium_org/third_party/tlslite/tlslite/ |
tlsconnection.py | 419 yield result 507 if result in (0,1): yield result 513 if result in (0,1): yield result 527 if result in (0,1): yield result 542 if result in (0,1): yield result 551 if result in (0,1): yield result 567 if result in (0,1): yield result 579 if result in (0,1): yield result 636 yield result 637 yield clientHell [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/clang/test/CodeGen/ |
builtins-arm.c | 22 void yield() { function
|
/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/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...] |