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

1 2 34 5 6 7 8 91011>>

  /external/skia/tools/lua/
glyph-usage.lua 4 if #str > 0 then
7 if type(k) == "number" then
12 if type(v) == "table" then
98 if verb == "drawPosText" or verb == "drawPosTextH" then
99 if t.glyphs then
104 if dump_glyph_array_p then
agg_dash.lua 14 if (table[tableKey] == nil) then
  /external/opencv3/samples/winrt/ImageManipulations/
AdvancedCapture.xaml.cpp 152 create_task(mediaCapture->InitializeAsync(settings)).then([this](task<void> initTask)
192 create_task(mediaCapture->StartPreviewAsync()).then([this](task<void> previewTask)
219 create_task(m_mediaCaptureMgr->StopPreviewAsync()).then([this](task<void> previewTask)
253 task<DeviceInformationCollection^>(DeviceInformation::FindAllAsync(DeviceClass::VideoCapture)).then([this](task<DeviceInformationCollection^> findTask)
309 task<void>(mediaCapture->VideoDeviceController->SetMediaStreamPropertiesAsync(Windows::Media::Capture::MediaStreamType::Photo,props)).then([this](task<void> changeTypeTask)
316 task<void>(m_mediaCaptureMgr->AddEffectAsync(Windows::Media::Capture::MediaStreamType::Photo,"OcvTransform.OcvImageManipulations", nullptr)).then([this](task<void> effectTask3)
351 task<void>(mediaCapture->AddEffectAsync(Windows::Media::Capture::MediaStreamType::Photo,"OcvTransform.OcvImageManipulations", nullptr)).then([this](task<void> effectTask3)
399 return create_task(tempStorageFile->OpenAsync(Windows::Storage::FileAccessMode::Read)).then([state](Windows::Storage::Streams::IRandomAccessStream ^stream)
403 }).then([state](Windows::Graphics::Imaging::BitmapDecoder ^decoder)
407 }).then([state](Windows::Storage::StorageFile ^storageFile
    [all...]
  /external/llvm/test/Bindings/OCaml/
irreader.ml 22 if print_checkpoints then
30 if not cond then failwith "insist"
analysis.ml 17 let test x = if not x then exit 1 else ()
37 if not (verify_function fn) then bomb "valid function failed verification!";
49 if verify_function fn then bomb "invalid function passed verification!";
executionengine.ml 71 if 0 <> ptr_compare cg cg' then bomb "int pointers to g differ";
81 if 23l <> varh then bomb "get_global_value_address didn't work";
86 if 4l <> cplus 2l 2l then bomb "plus didn't work";
91 if 42l <> cgetglobal () then bomb "getglobal didn't work"; *)
105 if ty != i32_type && ty != i64_type then bomb "target_data did not work";
  /external/v8/test/mjsunit/es6/
promise-species.js 17 Promise.resolve(test).catch(e => %AbortJS("Error " + e)).then(() => {
37 var myPromise = MyPromise.resolve().then();
  /external/v8/test/mjsunit/harmony/
async-arrow-lexical-arguments.js 13 if (typeof promise !== "object" || typeof promise.then !== "function") {
19 promise.then(function(value) { hadValue = true; actual = value; },
async-arrow-lexical-new.target.js 13 if (typeof promise !== "object" || typeof promise.then !== "function") {
19 promise.then(function(value) { hadValue = true; actual = value; },
async-arrow-lexical-this.js 13 if (typeof promise !== "object" || typeof promise.then !== "function") {
19 promise.then(function(value) { hadValue = true; actual = value; },
  /external/v8/test/mjsunit/regress/
regress-crbug-568477-3.js 35 p.then(f);
36 p.then(call_f_with_deeper_stack);
  /external/valgrind/exp-bbv/tests/amd64-linux/
rep_prefix.S 17 # We should check this on x86 too, but then we'd
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
Shared.java 129 Time then = new Time(); local
130 then.set(when);
137 if (then.year != now.year) {
139 } else if (then.yearDay != now.yearDay) {
  /prebuilts/misc/windows/sdl2/test/
testscale.c 130 Uint32 then, now; local
172 then = SDL_GetTicks();
189 if (now > then) {
190 double fps = ((double) frames * 1000) / (now - then);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cris/
regreg.s 6 ; too. This may seem wasteful of machine time, but then that time
  /external/v8/test/mjsunit/es6/debug-promises/
throw-with-undefined-reject.js 22 assertThrows(()=> p.then(function() { }), TypeError);
  /external/v8/tools/gcmole/
gccause.lua 43 if GC[name] then
47 if not T[f] then
52 if f == '<GC>' then break end
58 if name:match(P) then
  /frameworks/native/services/surfaceflinger/tests/
Android.mk 29 # If we're building with ONE_SHOT_MAKEFILE (mm, mmm), then what the framework
  /hardware/ti/omap4-aah/security/tf_daemon/
Android.mk 2 # First eliminate OMAP3 and then ensure that this is not used
  /external/skia/resources/
test.lua 24 if not path_paint then
49 if false then
71 if x > 200 then x = 0 end;
  /external/v8/test/webkit/fast/js/
Promise-onRejected-deep.js 26 description('Test whether deeply chained then-s work.');
33 promise = promise.then(function (value) { testFailed('fulfilled'); throw value + 1; }, function (value) { throw value + 1; });
39 }).then(finishJSTest, finishJSTest);
  /external/zlib/src/contrib/delphi/
ZLib.pas 268 if code < 0 then
275 if code < 0 then
282 if code < 0 then
335 if OutEstimate = 0 then
380 if DCheck(inflate(strm, Z_FINISH)) <> Z_STREAM_END then
400 if Assigned(FOnProgress) then FOnProgress(Sender);
423 if FStrm.Position <> FStrmPos then FStrm.Position := FStrmPos;
431 if FZRec.avail_out < sizeof(FBuffer) then
448 if FStrm.Position <> FStrmPos then FStrm.Position := FStrmPos;
452 if FZRec.avail_out = 0 then
    [all...]
  /external/opencv3/samples/winrt/ImageManipulations/common/
suspensionmanager.cpp 219 return task<unsigned int>(sessionDataWriter->StoreAsync()).then([=](unsigned int)
222 }).then([=](bool flushSucceeded)
227 }).then([=](StorageFile^ createdFile)
230 }).then([=](IRandomAccessStream^ newStream)
234 }).then([=](UINT64 copiedBytes)
259 return getFileTask.then([=](StorageFile^ stateFile)
262 return getBasicPropertiesTask.then([=](BasicProperties^ stateFileProperties)
267 return openReadTask.then([=](IRandomAccessStreamWithContentType^ stateFileStream)
270 return task<unsigned int>(stateReader->LoadAsync(size)).then([=](unsigned int bytesRead)
  /external/opencv3/modules/videoio/src/
cap_winrt_video.cpp 95 .then([this](task<DeviceInformationCollection^> findTask)
120 create_task(m_capture->InitializeAsync(settings)).then([this](){
135 }).then([this](::Media::CaptureFrameGrabber^ frameGrabber)
155 create_task(frameGrabber->GetFrameAsync()).then([this, frameGrabber](const ComPtr<IMF2DBuffer2>& buffer)
286 .then([this, &ready](task<DeviceInformationCollection^> findTask)
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tools.pas 324 /// If the Delphi code generator cannot detect the inner "y" variable, then
408 if (A = nil) or (B = nil) then
412 then
420 if AValue then
511 if GetInterface(IID, Obj) then
545 if (Result = 0) then
556 if NewCapPow2 = Length(FItems) then
558 else if NewCapPow2 < 0 then
567 if oldItems[i].HashCode <> 0 then
575 if ACapacity < FCount then
    [all...]

Completed in 1283 milliseconds

1 2 34 5 6 7 8 91011>>