/external/v8/test/webkit/fast/js/kde/ |
D | parse-expected.txt | 29 PASS function test() { return;}; lab: 1 is 1 30 PASS function test() { while(0) break; } lab: 1 is 1 31 PASS function test() { while(0) continue; } lab: 1 is 1 32 PASS function test() { return lab;} lab: 1 is 1 33 PASS function test() { while(0) break lab; } lab: 1 threw exception SyntaxError: Undefined label 'l… 34 PASS function test() { while(0) continue lab; } lab: 1 threw exception SyntaxError: Undefined label… 35 PASS function test() { return } lab: 1 is 1 36 PASS function test() { while(0) break } lab: 1 is 1 37 PASS function test() { while(0) continue } lab: 1 is 1 38 PASS function test() { return 0 } lab: 1 is 1 [all …]
|
/external/v8/test/cctest/heap/ |
D | test-lab.cc | 42 static bool AllocateFromLab(Heap* heap, LocalAllocationBuffer* lab, in AllocateFromLab() argument 47 lab->AllocateRawAligned(static_cast<int>(size_in_bytes), alignment); in AllocateFromLab() 57 LocalAllocationBuffer lab = LocalAllocationBuffer::InvalidBuffer(); in TEST() local 58 CHECK(!lab.IsValid()); in TEST() 74 LocalAllocationBuffer lab = in TEST() local 76 CHECK(lab.IsValid()); in TEST() 95 LocalAllocationBuffer lab = in TEST() local 97 CHECK(lab.IsValid()); in TEST() 100 if (AllocateFromLab(heap, &lab, size)) { in TEST() 124 LocalAllocationBuffer lab = in TEST() local [all …]
|
/external/autotest/contrib/ |
D | generate_rpm_mapping.py | 94 return device_hostname.lab == cls.LAB_NUMBER 115 device_hostname.lab, device_hostname.row, 162 device_hostname.lab, device_hostname.row, 215 device_hostname.lab, device_hostname.row, 322 device_hostname.lab, 388 lab=int(m.group(1)), 414 for lab in lab_configs: 415 if lab.is_device_in_the_lab(device_hostname): 416 rpm_hostname = lab.get_rpm_hostname(device_hostname) 417 rpm_outlet = lab.get_rpm_outlet(device_hostname) [all …]
|
/external/autotest/docs/ |
D | test-that.md | 53 ### Running jobs in the lab 55 `test_that` now allows you to run jobs in the test lab. The usage is similar to 56 running tests against a specified host. The keyword :lab: is used as 64 $ test_that -b lumpy -i lumpy-paladin/R38-6009.0.0-rc4 :lab: dummy_Pass 67 This will kick off a suite in the lab that consists of just 1 job, dummy\_Pass, 69 lumpy-paladin/R38-6009.0.0-rc4. The lab's scheduler will take responsibility 78 $ test_that -b lumpy -i ${latest_image} :lab: dummy_Pass dummy_Fail 79 $ test_that -b lumpy -i ${latest_image} :lab: e:login_.* 82 Kicking off a run in the lab should be useful whenever you need to run a 84 locally.For occasional runs of ad-hoc suites in the lab, this will also avoid [all …]
|
/external/opencv/cv/src/ |
D | cvsegmentation.cpp | 242 int lab = 0, t; in cvWatershed() local 261 if( t > 0 ) lab = t; in cvWatershed() 265 if( lab == 0 ) lab = t; in cvWatershed() 266 else if( t != lab ) lab = WSHED; in cvWatershed() 271 if( lab == 0 ) lab = t; in cvWatershed() 272 else if( t != lab ) lab = WSHED; in cvWatershed() 277 if( lab == 0 ) lab = t; in cvWatershed() 278 else if( t != lab ) lab = WSHED; in cvWatershed() 280 assert( lab != 0 ); in cvWatershed() 281 m[0] = lab; in cvWatershed() [all …]
|
/external/llvm/test/MC/Mips/ |
D | mips-jump-instructions.s | 104 # CHECK32:lab: 111 # CHECK32: jalx lab # encoding: [A,A,A,0b011101AA] 112 # CHECK32: # fixup A - offset: 0, value: lab, kind: fixup_Mips_26 127 # CHECK64:lab: 134 # CHECK64: jalx lab # encoding: [A,A,A,0b011101AA] 135 # CHECK64: # fixup A - offset: 0, value: lab, kind: fixup_Mips_26 150 lab: label 157 jalx lab
|
/external/opencv3/modules/imgproc/src/ |
D | segmentation.cpp | 240 int lab = 0, t; in watershed() local 266 if( t > 0 ) lab = t; in watershed() 270 if( lab == 0 ) lab = t; in watershed() 271 else if( t != lab ) lab = WSHED; in watershed() 276 if( lab == 0 ) lab = t; in watershed() 277 else if( t != lab ) lab = WSHED; in watershed() 282 if( lab == 0 ) lab = t; in watershed() 283 else if( t != lab ) lab = WSHED; in watershed() 287 assert( lab != 0 ); in watershed() 288 m[0] = lab; in watershed() [all …]
|
/external/opencv3/modules/photo/src/ |
D | denoising.cuda.cpp | 114 …void fnlm_split_channels(const PtrStepSz<uchar3>& lab, PtrStepb l, PtrStep<uchar2> ab, cudaStream_… 115 …e_channels(const PtrStepb& l, const PtrStep<uchar2>& ab, PtrStepSz<uchar3> lab, cudaStream_t strea… 156 GpuMat lab = pool.getBuffer(src.size(), src.type()); in fastNlMeansDenoisingColored() local 157 cv::cuda::cvtColor(src, lab, cv::COLOR_BGR2Lab, 0, stream); in fastNlMeansDenoisingColored() 161 device::imgproc::fnlm_split_channels(lab, l, ab, StreamAccessor::getStream(stream)); in fastNlMeansDenoisingColored() 166 device::imgproc::fnlm_merge_channels(l, ab, lab, StreamAccessor::getStream(stream)); in fastNlMeansDenoisingColored() 167 cv::cuda::cvtColor(lab, _dst, cv::COLOR_Lab2BGR, 0, stream); in fastNlMeansDenoisingColored()
|
D | contrast_preserve.cpp | 187 Mat lab = Mat(img.size(),CV_8UC3); in decolor() local 190 cvtColor(I,lab,COLOR_BGR2Lab); in decolor() 193 split(lab,lab_channel); in decolor() 197 merge(lab_channel,lab); in decolor() 199 cvtColor(lab,color_boost,COLOR_Lab2BGR); in decolor()
|
D | npr.cpp | 91 Mat lab = Mat(img.size(),CV_32FC3); in detailEnhance() local 94 cvtColor(img,lab,COLOR_BGR2Lab); in detailEnhance() 95 split(lab,lab_channel); in detailEnhance() 113 merge(lab_channel,lab); in detailEnhance() 115 cvtColor(lab,result,COLOR_Lab2BGR); in detailEnhance()
|
/external/llvm/test/Transforms/InstCombine/ |
D | 2007-10-28-stacksave.ll | 10 br label %lab 12 lab: ; preds = %cleanup31, %entry 36 cond_next: ; preds = %lab 40 cleanup31: ; preds = %lab 42 br label %lab
|
/external/autotest/server/cros/chaos_lib/ |
D | README | 4 the Interoperability (Chaos) lab infrastructure, see 6 https://sites.google.com/a/google.com/chromeos/for-team-members/lab/lab-infrastructure-of-wifi-cham…
|
/external/llvm/test/CodeGen/SystemZ/ |
D | la-04.ll | 14 br label %b.lab 16 b.lab: 17 ret i8 *blockaddress(@f1, %b.lab)
|
/external/opencv3/modules/photo/src/cuda/ |
D | nlm.cu | 517 … __global__ void fnlm_split_kernel(const PtrStepSz<uchar3> lab, PtrStepb l, PtrStep<uchar2> ab) in fnlm_split_kernel() argument 522 if (x < lab.cols && y < lab.rows) in fnlm_split_kernel() 524 uchar3 p = lab(y, x); in fnlm_split_kernel() 530 …void fnlm_split_channels(const PtrStepSz<uchar3>& lab, PtrStepb l, PtrStep<uchar2> ab, cudaStream_… in fnlm_split_channels() argument 533 dim3 g(divUp(lab.cols, b.x), divUp(lab.rows, b.y)); in fnlm_split_channels() 535 fnlm_split_kernel<<<g, b>>>(lab, l, ab); in fnlm_split_channels() 541 …_global__ void fnlm_merge_kernel(const PtrStepb l, const PtrStep<uchar2> ab, PtrStepSz<uchar3> lab) in fnlm_merge_kernel() argument 546 if (x < lab.cols && y < lab.rows) in fnlm_merge_kernel() 549 lab(y, x) = make_uchar3(l(y, x), p.x, p.y); in fnlm_merge_kernel() 553 …e_channels(const PtrStepb& l, const PtrStep<uchar2>& ab, PtrStepSz<uchar3> lab, cudaStream_t strea… in fnlm_merge_channels() argument [all …]
|
/external/autotest/test_suites/ |
D | control.test_that_wrapper | 5 AUTHOR = "akeshet, chromeos-lab-infrastructure" 16 This is a wrapper suite for lab jobs that get kicked off by developers 17 running the test_that tool on their desks, but targetting devices in the lab. 24 @param check_hosts: require appropriate live hosts to exist in the lab.
|
D | control.bvt-inline | 27 lab resources. 30 * The failure may impact the stability of the test lab. 41 @param check_hosts: require appropriate live hosts to exist in the lab. 59 'ccs': ['chromeos-lab-errors@google.com']
|
D | control.bvt-perbuild | 23 specialized lab resources. 34 @param check_hosts: require appropriate live hosts to exist in the lab. 52 'ccs': ['chromeos-lab-errors@google.com']
|
D | control.bvt-cq | 26 lab resources. 37 @param check_hosts: require appropriate live hosts to exist in the lab. 55 'ccs': ['chromeos-lab-errors@google.com']
|
/external/llvm/docs/ |
D | HowToAddABuilder.rst | 10 `<http://lab.llvm.org:8011>`_. 44 the **lab.llvm.org** port **9990** (see `Buildbot documentation, 52 lab.llvm.org:9990 \ 82 <http://lab.llvm.org:8011/waterfall>`_ to make sure it is connected, and 83 ``http://lab.llvm.org:8011/buildslaves/<your-buildslave-name>`` to see
|
/external/e2fsprogs/lib/blkid/ |
D | getsize.c | 136 struct disklabel lab; in blkid_get_dev_size() local 154 if (part >= 0 && (ioctl(fd, DIOCGDINFO, (char *)&lab) >= 0)) { in blkid_get_dev_size() 155 pp = &lab.d_partitions[part]; in blkid_get_dev_size()
|
/external/clang/test/CodeGenCXX/ |
D | 2003-11-29-DuplicatedCleanupTest.cpp | 11 lab: in atest() 13 goto lab; in atest()
|
/external/llvm/test/CodeGen/AArch64/ |
D | breg.ll | 7 %lab = load i8*, i8** @stored_label 8 indirectbr i8* %lab, [label %otherlab, label %retlab]
|
/external/autotest/server/site_tests/network_WiFi_ChaosConnectDisconnect/ |
D | control.jetstream | 12 lab and has a chrome device connect to each in series. This test must be 13 performed in the AP compatibility lab.
|
D | control.debug | 12 lab and has a chrome device connect to each in series. This test must be 13 performed in the AP compatibility lab.
|
D | control.open | 15 lab and has a chrome device connect to each in series. This test must be 16 performed in the AP compatibility lab.
|