/external/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...] |
debug-stepin-generators.js | 17 if (/yield/.test(source)) yields++; 29 yield i;
|
generators-objects.js | 35 function* g1(a, b, c) { yield 1; return [a, b, c]; } 36 function* g2() { yield 1; return arguments; } 37 function* g3() { yield 1; return this; } 38 function* g4() { var x = 10; yield 1; return x; } 40 function* g5(l) { "use strict"; yield 1; for (let x in l) { yield x; } } 53 function* g() { yield 1; } 77 function* g() { yield 1; }
|
/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'
|
c_format.py | 39 yield _FormatHeader(root, output_dir) 41 yield 'const char* GetString(int id) {\n switch (id) {' 46 yield _FormatMessage(item, lang) 48 yield '\n default:\n return 0;\n }\n}'
|
js_map_format.py | 20 yield _HEADER 24 yield _FormatMessage(item, lang) 26 yield '\n'
|
/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...] |
/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...] |
tlsrecordlayer.py | 207 yield result 224 yield bytes(returnBytes) 284 yield result 337 yield result 345 yield result 358 yield result 523 yield result 538 yield result 553 yield result 625 yield [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
|
/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;
|
/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
|
/external/chromium_org/third_party/cython/src/Cython/Compiler/ |
TreePath.py | 65 yield node 82 yield child 93 yield child 113 yield child 115 yield c 122 yield child 124 yield c 131 yield child 166 yield attr_value 175 yield attr_valu [all...] |
/external/chromium_org/third_party/protobuf/python/google/protobuf/ |
descriptor_database.py | 115 yield message_name 118 yield symbol 120 yield '.'.join((message_name, enum_type.name))
|
/external/chromium_org/tools/telemetry/telemetry/timeline/ |
slice.py | 41 yield s 71 yield s 72 yield sub_slice
|
process.py | 39 yield thread 41 yield counter 48 yield # pylint: disable=W0101 49 yield self._trace_buffer_overflow_event
|
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/ |
tokens.py | 131 yield node 138 yield node
|