HomeSort by relevance Sort by last modified time
    Searched refs:then (Results 26 - 50 of 689) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/
ASTTreeParser.stg 62 <if(backtracking)>if (State.Backtracking = 0) then
66 if (Adaptor.GetParent(RetVal.Tree) \<\> nil) and (Adaptor.IsNil(Adaptor.GetParent(RetVal.Tree))) then
86 <if(backtracking)>if (State.Backtracking = 0) then <endif>
88 if (_First[<enclosingTreeLevel>] = nil) then _First[<enclosingTreeLevel>] := <root.el.label>.Tree;
90 if (_First[<enclosingTreeLevel>] = nil) then _First[<enclosingTreeLevel>] := <root.el.label>;
95 if (Input.LA(1) = TToken.DOWN) then
129 if (State.Backtracking = 0) then
142 <if(backtracking)>if (State.Backtracking = 0) then <endif>
143 if (_First[<treeLevel>] = nil) then _First[<treeLevel>] := <label>;
159 if (State.Backtracking = 0) then
    [all...]
ASTParser.stg 56 if (State.Backtracking = 0) then
73 if (State.Backtracking = 0) then
109 // the code generator call matchSet then add root code or ruleroot code
115 <super.matchSet(..., postmatchCode={<if(backtracking)>if (State.Backtracking = 0) then <endif>Adaptor.AddChild(Root[0], <createNodeFromToken(...)>);})>
131 <super.matchSet(..., postmatchCode={<if(backtracking)>if (State.Backtracking = 0) then <endif>Root[0] := Adaptor.BecomeRoot(<createNodeFromToken(...)>, Root[0]) as I<ASTLabelType>;})>
139 <if(backtracking)>if (State.Backtracking = 0) then <endif>Adaptor.AddChild(Root[0], <label>.Tree);
148 <if(backtracking)>if (State.Backtracking = 0) then <endif>Root[0] := Adaptor.BecomeRoot(<label>.Tree, Root[0]) as I<ASTLabelType>;
174 if (State.Backtracking = 0) then
189 if (State.Backtracking = 0) then
210 if (State.Backtracking = 0) then
    [all...]
  /external/v8/test/mjsunit/harmony/
debug-async-function-async-task-event.js 14 "then #1",
19 "then #2",
61 assertLog("then #1");
63 assertLog("then #2");
  /external/v8/test/mjsunit/regress/
regress-3641.js 7 // If a Promise's then method is overridden, that should be respected
10 // check before when calling x.then.
52 x.then = () => { y = true; }
53 Promise.resolve().then(() => x);
  /external/v8/test/webkit/fast/js/
Promise-static-all.js 40 Promise.all([p1, p2, p5]).then(function(result) {
46 Promise.all().then(function() {
50 return Promise.all([]).then(function(localResult) {
57 }).then(function() {
58 return Promise.all([p1, p2, p3]).then(function(localResult) {
68 }).then(function() {
69 return Promise.all([p1, p6, p5]).then(function(localResult) {
76 }).then(function() {
77 return Promise.all([p9]).then(function(localResult) {
85 }).then(function()
    [all...]
Promise-static-race.js 40 Promise.race([p4, p5]).then(function(localResult) {
47 Promise.race([]).then(function(localResult) {
53 Promise.race().then(function(localResult) {
57 }).then(function() {
58 return Promise.race({}).then(function(localResult) {
63 }).then(function() {
64 return Promise.race([p4, p1, p6]).then(function(localResult) {
71 }).then(function() {
72 return Promise.race([p4, p6, p1]).then(function(localResult) {
79 }).then(function()
    [all...]
Promise-chained-then.js 25 description('Test chained Promise.prototype.then.');
31 promise.then(function(localResult) { // fulfilled - continue
38 }).then() // pass through
39 .then(function(localResult) { // fulfilled - throw an exception
46 }).then(function() { // rejected - throw an exception
53 }).then() // pass through
54 .then(function() { // rejected - recover
61 }).then(function(localResult) { // fulfilled - the last
Promise-then-callback-receiver.js 26 description('Test whether then callback receivers are correctly set.');
31 Promise.resolve().then(function () {
32 return Promise.resolve(42).then(function () {
39 }).then(function () {
40 return Promise.reject(42).then(function () {
47 }).then(finishJSTest, finishJSTest);
Promise-then.js 26 description('Test Promise.prototype.then');
38 var secondPromise = firstPromise.then(function(localResult) {
50 secondPromise.then(undefined, 37).then(function(localResult) {
54 }).then(1, 2).then(function() {
60 }).then(function() {
  /hardware/bsp/intel/peripheral/libupm/doxy/node/
docgen.js 50 xml2js.parse().then(function(specjs) {
55 return mkdirp.mkdirpAsync(dir).then(function() {
  /external/skia/tools/lua/
glyph-counts.lua 4 if #str > 0 then
7 if type(k) == "number" then
12 if type(v) == "table" then
64 if verb == "drawPosText" or verb == "drawPosTextH" then
65 if t.glyphs then
68 if n then
74 if key == 1 then
77 if n then
scrape.lua 4 if #str > 0 then
7 if type(k) == "number" then
12 if type(v) == "table" then
54 if false and t.verb == "drawRect" and t.paint:isAntiAlias() then
61 if false and t.verb == "drawPath" then
64 if pred then
count_reduced_clipstacks.lua 25 if (element["type"] == "path") then
26 if (element["path"]:getSegmentTypes() == "line" and element["path"]:isConvex()) then
40 if (string.starts(t.verb, "draw")) then
43 if (stackstr ~= "") then
44 if (stats[stackstr] == nil) then
50 if (stackstr ~= oldstackstr) then
75 aggregate table on the automated scraper system. Then use the print_stats function on
78 if (v.drawCnt ~= nil) then
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
BitReaderBuffer.java 26 int then = i - left;
28 rc = rc << then;
29 rc += readBits(then);
  /external/opencv3/samples/wp8/OcvImageManipulation/PhoneXamlDirect3DApp1/PhoneXamlDirect3DApp1Comp/
DirectXHelper.h 26 return create_task(folder->GetFileAsync(filename)).then([] (StorageFile^ file)
29 }).then([] (Streams::IRandomAccessStreamWithContentType^ stream)
34 }).then([] (Streams::IBuffer^ fileBuffer) -> Platform::Array<byte>^
  /external/opencv3/samples/wp8/OcvRotatingCube/PhoneXamlDirect3DApp1/PhoneXamlDirect3DApp1Comp/
DirectXHelper.h 26 return create_task(folder->GetFileAsync(filename)).then([] (StorageFile^ file)
29 }).then([] (Streams::IRandomAccessStreamWithContentType^ stream)
34 }).then([] (Streams::IBuffer^ fileBuffer) -> Platform::Array<byte>^
  /external/v8/test/mjsunit/es6/debug-promises/
reject-caught-by-default-reject-handler.js 20 var p1 = p0.then(function() {
21 log.push("p0.then");
24 var p2 = p1.then(function() {
25 log.push("p1.then");
33 q.then(function() {
71 assertEquals(["resolve q", "end main", "resolve p", "p0.then"], log);
stepin-handler.js 42 .then(
47 .then(callback)
48 .then(callback.bind(null))
49 .then(Object)
50 .then(callback.bind(null).bind(null))
51 .then(finalize)
throw-caught-by-default-reject-handler.js 20 var p1 = p0.then(function() {
21 log.push("p0.then");
24 var p2 = p1.then(function() {
25 log.push("p1.then");
33 q.then(function() {
72 assertEquals(["resolve q", "end main", "resolve p", "p0.then"], log);
throw-eventually-caught.js 17 var p1 = p0.then(function() {
21 var p2 = p1.then(function() { });
28 q.then(function() {
  /external/v8/test/mjsunit/es6/
debug-stepin-microtasks.js 43 .then(promise1)
44 .then(Object) // Should skip stepping into native.
45 .then(Boolean) // Should skip stepping into native.
46 .then(promise2)
48 .then(promise4)
72 Promise.resolve().then(function() {
promises.js 169 Promise.accept(5).then(undefined, assertUnreachable).chain(
170 function(x) { assertAsync(x === 5, "resolved/then-nohandler-undefined") },
174 Promise.accept(6).then(null, assertUnreachable).chain(
175 function(x) { assertAsync(x === 6, "resolved/then-nohandler-null") },
182 Promise.reject(5).then(assertUnreachable, undefined).chain(
184 function(r) { assertAsync(r === 5, "rejected/then-nohandler-undefined") }
187 Promise.reject(6).then(assertUnreachable, null).chain(
189 function(r) { assertAsync(r === 6, "rejected/then-nohandler-null") }
198 // Note: Chain now has then-style semantics, here and in future tests.
210 p3.then(
    [all...]
  /prebuilts/tools/common/m2/repository/org/jdeferred/jdeferred-core/1.2.2/
jdeferred-core-1.2.2.jar 
  /prebuilts/tools/common/m2/repository/org/jdeferred/jdeferred-core/1.2.3/
jdeferred-core-1.2.3.jar 
  /external/skia/resources/
slides_transitions.lua 12 if self:isDone() then
22 if is_forward then
42 if gUseBlurInTransitions then
54 if self:isDone() then
68 if is_forward then
100 if self:isDone() then
132 if self:isDone() then
147 if is_forward then
150 if self.angle >= 180 then
157 if self.angle <= -180 then
    [all...]

Completed in 315 milliseconds

12 3 4 5 6 7 8 91011>>