/external/drrickorang/LoopbackApp/app/src/main/res/values/ |
D | strings.xml | 1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright (C) 2014 The Android Open Source Project 8 http://www.apache.org/licenses/LICENSE-2.0 15 --> 23 <string name="buttonTest_enabled">Round-Trip\nLatency Test</string> 39 <!-- disabled --> 46 <string-array name="mic_source_array"> 54 </string-array> 57 <string-array name="performance_mode_array"> 63 </string-array> [all …]
|
/external/clang/test/Modules/ |
D | exponential-paths.cpp | 3 // RUN: rm -rf %t 4 // RUN: mkdir %t 6 // Build module map with 40 modules; two layers with importing and re-exporting 9 // RUN: echo 'module a0 { header "a0.h" export * }' > %t/module.modulemap 10 // RUN: echo 'module b0 { header "b0.h" export * }' >> %t/module.modulemap 11 // RUN: echo 'module a1 { header "a1.h" export * }' >> %t/module.modulemap 12 // RUN: echo 'module b1 { header "b1.h" export * }' >> %t/module.modulemap 13 // RUN: echo 'module a2 { header "a2.h" export * }' >> %t/module.modulemap 14 // RUN: echo 'module b2 { header "b2.h" export * }' >> %t/module.modulemap 15 // RUN: echo 'module a3 { header "a3.h" export * }' >> %t/module.modulemap [all …]
|
/external/python/cpython2/Tools/pybench/ |
D | Tuples.py | 12 t = tuple(range(100)) 18 m = t[50:] 19 m = t[:25] 20 m = t[50:55] 21 m = t[:-1] 22 m = t[1:] 23 m = t[-10:] 24 m = t[:10] 26 m = t[50:] 27 m = t[:25] [all …]
|
/external/libcxx/test/std/re/re.traits/ |
D | isctype.pass.cpp | 1 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===// 27 std::regex_traits<char> t; in main() local 30 assert( t.isctype('_', t.lookup_classname(s.begin(), s.end()))); in main() 31 assert( t.isctype('a', t.lookup_classname(s.begin(), s.end()))); in main() 32 assert( t.isctype('Z', t.lookup_classname(s.begin(), s.end()))); in main() 33 assert( t.isctype('5', t.lookup_classname(s.begin(), s.end()))); in main() 34 assert(!t.isctype(' ', t.lookup_classname(s.begin(), s.end()))); in main() 35 assert(!t.isctype('-', t.lookup_classname(s.begin(), s.end()))); in main() 36 assert(!t.isctype('@', t.lookup_classname(s.begin(), s.end()))); in main() [all …]
|
/external/ply/ply/example/ansic/ |
D | cparse.py | 1 # ----------------------------------------------------------------------------- 5 # ----------------------------------------------------------------------------- 14 # translation-unit: 17 def p_translation_unit_1(t): argument 22 def p_translation_unit_2(t): argument 26 # external-declaration: 29 def p_external_declaration_1(t): argument 34 def p_external_declaration_2(t): argument 38 # function-definition: 41 def p_function_definition_1(t): argument [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/ADT/ |
D | TripleTest.cpp | 1 //===----------- Triple.cpp - Triple unit tests ---------------------------===// 8 //===----------------------------------------------------------------------===// 18 Triple T; in TEST() local 20 T = Triple(""); in TEST() 21 EXPECT_EQ("", T.getArchName().str()); in TEST() 22 EXPECT_EQ("", T.getVendorName().str()); in TEST() 23 EXPECT_EQ("", T.getOSName().str()); in TEST() 24 EXPECT_EQ("", T.getEnvironmentName().str()); in TEST() 26 T = Triple("-"); in TEST() 27 EXPECT_EQ("", T.getArchName().str()); in TEST() [all …]
|
/external/gemmlowp/internal/ |
D | kernel_sse.h | 7 // http://www.apache.org/licenses/LICENSE-2.0 51 // A 4x4 block of accumulators is stored in 32bit in xmm4--xmm7. in Run() 53 // +-------+-------+-------+-------+ in Run() 55 // Rhs +-------+---------------+-------+ in Run() 57 // +-------+-------+-------+-------+ in Run() 63 // +--+--+ - - - - +-------+-------+-------+-------+ in Run() 68 // +--+--+ - - - - +-------+-------+-------+-------+ in Run() 75 "pxor %%xmm4 , %%xmm4 \n\t" in Run() 76 "pxor %%xmm5 , %%xmm5 \n\t" in Run() 77 "pxor %%xmm6 , %%xmm6 \n\t" in Run() [all …]
|
/external/llvm/unittests/ADT/ |
D | TripleTest.cpp | 1 //===----------- Triple.cpp - Triple unit tests ---------------------------===// 8 //===----------------------------------------------------------------------===// 18 Triple T; in TEST() local 20 T = Triple(""); in TEST() 21 EXPECT_EQ("", T.getArchName().str()); in TEST() 22 EXPECT_EQ("", T.getVendorName().str()); in TEST() 23 EXPECT_EQ("", T.getOSName().str()); in TEST() 24 EXPECT_EQ("", T.getEnvironmentName().str()); in TEST() 26 T = Triple("-"); in TEST() 27 EXPECT_EQ("", T.getArchName().str()); in TEST() [all …]
|
/external/grpc-grpc/src/core/ext/transport/chttp2/transport/ |
D | parsing.cc | 9 * http://www.apache.org/licenses/LICENSE-2.0 36 static grpc_error* init_frame_parser(grpc_chttp2_transport* t); 37 static grpc_error* init_header_frame_parser(grpc_chttp2_transport* t, 39 static grpc_error* init_data_frame_parser(grpc_chttp2_transport* t); 40 static grpc_error* init_rst_stream_parser(grpc_chttp2_transport* t); 41 static grpc_error* init_settings_frame_parser(grpc_chttp2_transport* t); 42 static grpc_error* init_window_update_frame_parser(grpc_chttp2_transport* t); 43 static grpc_error* init_ping_parser(grpc_chttp2_transport* t); 44 static grpc_error* init_goaway_parser(grpc_chttp2_transport* t); 45 static grpc_error* init_skip_frame_parser(grpc_chttp2_transport* t, [all …]
|
/external/honggfuzz/examples/apache-httpd/corpus_http2/ |
D | cb050c2a6a06e60274854725525ff407.00050ee5.honggfuzz.cov | 2 If-Modified-Since:uSat/* 3 odified-minde:t:0*/* 7 If-Modhfied-Sinwe:uSat-P/1.1 8 ^f-Modified-Since:uSat- 2� Oct 2994 19:64:39 GMTe:t: */* 9 odified-minde:dhfied-Sinwe:uSat-P/1.1 10 ^f-Modified-Since:uSat- 2� Oct 2994 19:64:39 GMTe:t: */* 11 odified-minde:t:0*/* 15 If-Modified-Sinde:t:0*/* 19 Ifce:uSat- 29 Oct 2994 19:44:39 EMTe:t: */* 20 odified-minde:t:0*/* [all …]
|
D | 398c6afd4b24459040683797eb189da1.00020000.honggfuzz.cov | 2 If-Modified-Since:uSat/* 3 odified-minde:t:0*/* 7 If-Modhfied-Sinwe:uSat-P/1.1 8 ^f-Modified-Since:uSat- 2� Oct 2994 19:64:39 GMTe:t: */* 9 odified-minde:dhfied-Sinwe:uSat-P/1.1 10 ^f-Modified-Since:uSat- 2� Oct 2994 19:64:39 GMTe:t: */* 11 odified-minde:t:0*/* 15 If-Modified-Sinde:t:0*/* 19 Ifce:uSat- 29 Oct 2994 19:44:39 EMTe:t: */* 20 odified-minde:t:0*/* [all …]
|
D | e805ca6ae230b57b4334b5dbe8478e2b.00020000.honggfuzz.cov | 2 If-Modified-Since:uSat/* 3 odified-minde:t:0*/* 7 If-Modhfied-Sinwe:uSat-P/1.1 8 ^f-Modified-Since:uSat- 2� Oct 2994 19:64:39 GMTe:t: */* 9 odified-minde:dhfied-Sinwe:uSat-P/1.1 10 ^f-Modified-Since:uSat- 2� Oct 2994 19:64:39 GMTe:t: */* 11 odified-minde:t:0*/* 15 If-Modified-Sinde:t:0*/* 19 Ifce:uSat- 29 Oct 2994 19:44:39 EMTe:t: */* 20 odified-minde:t:0*/* [all …]
|
D | ffa77089a956371778334b53d9332c42.00020000.honggfuzz.cov | 2 If-Modified-Since:uSat/* 3 odified-minde:t:0*/* 7 If-Modhfied-Sinwe:uSat-P/1.1 8 ^f-Modified-Since:uSat- 2� Oct 2994 19:64:39 GMTe:t: */* 9 odified-minde:dhfied-Sinwe:uSat-P/1.1 10 ^f-Modified-Since:uSat- 2� Oct 2994 19:64:39 GMTe:t: */* 11 odified-minde:t:0*/* 15 If-Modified-Sinde:t:0*/* 19 Ifce:uSat- 29 Oct 2994 19:44:39 EMTe:t: */* 20 odified-minde:t:0*/* [all …]
|
D | 7994992d267546c31579b0eee0d09b43.00020000.honggfuzz.cov | 2 If-Modified-Since:uSat/* 3 odified-minde:t:0*/* 7 If-Modhfied-Sinwe:uSat-P/1.1 8 ^f-Modified-Since:uSat- 2� Oct 2994 19:64:39 GMTe:t: */* 9 odified-minde:hfied-Sinwe:uSat-P/1.1 10 ^f-Modified-Since:uSat- 2� Oct 2994 19:64:39 GMTe:t: */* 11 odified-minde:t:0*/* 15 If-Modified-Sinde:t:0*/* 19 Ifce:uSat- 29 Oct 2994 19:44:39 EMTe:t: */* 20 odified-minde:t:0*/* [all …]
|
D | b6e78b38e88a651f0bc7e45475b933cd.0001cf17.honggfuzz.cov | 2 If-Modified-Since:uSat/* 3 odified-minde:t:0*/* 7 If-Modhfied-Sinwe:uSat-P/1.1 8 ^f-Modified-Since:uSat- 2� Oct 2994 19:64:39 GMTe:t: */* 9 odified-minde:dhfied-Sinwe:uSat-P/1.1 10 ^f-Modified-Since:uSat- 2� Oct 2994 19:64:39 GMTe:t: */* 11 odified-minde:t:0*/* 15 If-Modified-Sinde:t:0*/* 19 Ifce:uSat- 29 Oct 2994 19:44:39 EMTe:t: */* 20 odified-minde:t:0*/* [all …]
|
/external/honggfuzz/examples/apache-httpd/corpus_http1/ |
D | cb050c2a6a06e60274854725525ff407.00050ee5.honggfuzz.cov | 2 If-Modified-Since:uSat/* 3 odified-minde:t:0*/* 7 If-Modhfied-Sinwe:uSat-P/1.1 8 ^f-Modified-Since:uSat- 2� Oct 2994 19:64:39 GMTe:t: */* 9 odified-minde:dhfied-Sinwe:uSat-P/1.1 10 ^f-Modified-Since:uSat- 2� Oct 2994 19:64:39 GMTe:t: */* 11 odified-minde:t:0*/* 15 If-Modified-Sinde:t:0*/* 19 Ifce:uSat- 29 Oct 2994 19:44:39 EMTe:t: */* 20 odified-minde:t:0*/* [all …]
|
D | e0eb2771107eb09e41b381e033de0eda.0000e595.honggfuzz.cov | 2 If-Modified-Since:uSat/* 3 odified-minde:t:0*/* 7 If-Modhfied-Sinwe:uSat-P/1.1 8 ^f-Modified-Since:uSat- 2� Oct 2994 19:64:39 GMTe:t: */* 9 odified-minde:dhfied-Sinwe:uSat-P/1.1 10 ^f-Modified-Since:uSat- 2� Oct 2994 19:64:39 GMTe:t: */* 11 odified-minde:t:0*/* 15 If-Modified-Sinde:t:0*/* 19 Ifce:uSat- 29 Oct 2994 19:44:39 EMTe:t: */* 20 odified-minde:t:0*/* [all …]
|
D | 1d9ed10a5dbeb25fa925853a1b516e43.00020000.honggfuzz.cov | 2 If-Modified-Since:uSat/* 3 odified-minde:t:0*/* 7 If-Modhfied-Sinwe:uSat-P/1.1 8 ^f-Modified-Since:uSat- 2� Oct 2994 19:64:39 GMTe:t: */* 9 odified-minde:dhfied-Sinwe:uSat-P/1.1 10 ^f-Modified-Since:uSat- 2� Oct 2994 19:64:39 GMTe:t: */* 11 odified-minde:t:0*/* 15 If-Modified-Sinde:t:0*/* 19 Ifce:uSat- 29 Oct 2994 19:44:39 EMTe:t: */* 20 odified-minde:t:0*/* [all …]
|
D | 7994992d267546c31579b0eee0d09b43.00020000.honggfuzz.cov | 2 If-Modified-Since:uSat/* 3 odified-minde:t:0*/* 7 If-Modhfied-Sinwe:uSat-P/1.1 8 ^f-Modified-Since:uSat- 2� Oct 2994 19:64:39 GMTe:t: */* 9 odified-minde:hfied-Sinwe:uSat-P/1.1 10 ^f-Modified-Since:uSat- 2� Oct 2994 19:64:39 GMTe:t: */* 11 odified-minde:t:0*/* 15 If-Modified-Sinde:t:0*/* 19 Ifce:uSat- 29 Oct 2994 19:44:39 EMTe:t: */* 20 odified-minde:t:0*/* [all …]
|
D | 5cb32bb910094821b742e9118597bac3.00012dad.honggfuzz.cov | 2 If-Modified-Since:uSat/* 3 odified-minde:t:0*/* 7 If-Modhfied-Sinwe:uSat-P/1.1 8 ^f-Modified-Since:uSat- 2� Oct 2994 19:64:39 GMTe:t: */* 9 odified-minde:dhfied-Sinwe:uSat-P/1.1 10 ^f-Modified-Since:uSat- 2� Oct 2994 19:64:39 GMTe:t: */* 11 odified-minde:t:0*/* 15 If-Modified-Sinde:t:0*/* 19 Ifce:uSat- 29 Oct 2994 19:44:39 EMTe:t: */* 20 odified-minde:t:0*/* [all …]
|
D | 106728ea44798410af6aae112bc28931.0000d7c0.honggfuzz.cov | 2 If-Modified-Since:uSat/* 3 odified-minde:t:0*/* 7 If-Modhfied-Sinwe:uSat-P/1.1 8 ^f-Modified-Since:uSat- 2� Oct 2994 19:64:39 GMTe:t: */* 9 odified-minde:dhfied-Sinwe:uSat-P/1.1 10 ^f-Modified-Since:uSat- 2� Oct 2994 19:64:39 GMTe:t: */* 11 odified-minde:t:0*/* 15 If-Modified-Sinde:t:0*/* 19 Ifce:uSat- 29 Oct 2994 19:44:39 EMTe:t: */* 20 odified-minde:t:0*/* [all …]
|
D | e916813d7dcccc2122bc5a950a904ae3.0000d7c3.honggfuzz.cov | 2 If-Modified-Since:uSat/* 3 odified-minde:t:0*/* 7 If-Modhfied-Sinwe:uSat-P/1.1 8 ^f-Modified-Since:uSat- 2� Oct 2994 19:64:39 GMTe:t: */* 9 odified-minde:dhfied-Sinwe:uSat-P/1.1 10 ^f-Modified-Since:uSat- 2� Oct 2994 19:64:39 GMTe:t: */* 11 odified-minde:t:0*/* 15 If-Modified-Sinde:t:0*/* 19 Ifce:uSat- 29 Oct 2994 19:44:39 EMTe:t: */* 20 odified-minde:t:0*/* [all …]
|
/external/ltp/runtest/ |
D | net.nfs | 5 nfs3_01 nfs01 -v 3 -t udp 6 nfs3t_01 nfs01 -v 3 -t tcp 7 nfs4_01 nfs01 -v 4 -t tcp 8 nfs41_01 nfs01 -v 4.1 -t tcp 9 nfs42_01 nfs01 -v 4.2 -t tcp 10 nfs3_ipv6_01 nfs01 -6 -v 3 -t udp 11 nfs3t_ipv6_01 nfs01 -6 -v 3 -t tcp 12 nfs4_ipv6_01 nfs01 -6 -v 4 -t tcp 13 nfs41_ipv6_01 nfs01 -6 -v 4.1 -t tcp 14 nfs42_ipv6_01 nfs01 -6 -v 4.2 -t tcp [all …]
|
/external/webp/src/dsp/ |
D | lossless_mips_dsp_r2.c | 3 // Use of this source code is governed by a BSD-style license 8 // ----------------------------------------------------------------------------- 33 ".ifc " #TYPE ", uint8_t \n\t" \ 34 "lbu %[tmp1], 0(%[src]) \n\t" \ 35 "lbu %[tmp2], 1(%[src]) \n\t" \ 36 "lbu %[tmp3], 2(%[src]) \n\t" \ 37 "lbu %[tmp4], 3(%[src]) \n\t" \ 38 "addiu %[src], %[src], 4 \n\t" \ 39 ".endif \n\t" \ 40 ".ifc " #TYPE ", uint32_t \n\t" \ [all …]
|
/external/expat/doc/ |
D | xmlwf.1 | 1 '\" -*- coding: us-ascii -*- 10 xmlwf \- Determines if an XML document is well-formed 18 …-s\fR] [\fB-n\fR] [\fB-p\fR] [\fB-x\fR] [\fB-e \fIencoding\fB\fR] [\fB-w\fR] [\fB-d \fIoutput-dir\… 19 'in \n(.iu-\nxu 24 determine if an XML document is well-formed. It is 25 non-validating. 27 If you do not specify any files on the command-line, and you 30 .SH "WELL-FORMED DOCUMENTS" 31 A well-formed document must adhere to the 36 \*(T<<?xml version="1.0" standalone="yes"?>\*(T>. [all …]
|