| /external/toolchain-utils/cros_utils/ |
| D | tiny_render.py | 37 Turns into 70 # that ends up being fed to `''.join(into)`. This avoids quadratic string 89 piece: Piece, indent_level: int, into: t.List[str] 91 """Helper for |render_text_pieces|. Accumulates strs into |into|.""" 93 into.append("\n" + indent_level * " ") 97 into.append(piece) 101 into.append("**") 102 _render_text_pieces(piece.inner, indent_level, into) 103 into.append("**") 108 _render_text_pieces(piece.inner, indent_level, into) [all …]
|
| /external/llvm/test/MC/Mips/ |
| D | set-nomacro.s | 3 # CHECK-NOT: warning: macro instruction expanded into multiple instructions 81 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions 83 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions 85 # CHECK: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions 88 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions 90 # CHECK: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions 92 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions 94 # CHECK: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions 96 # CHECK: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions 99 # CHECK-NOT: [[@LINE-1]]:3: warning: macro instruction expanded into multiple instructions [all …]
|
| /external/selinux/libsepol/cil/src/ |
| D | cil_binary.h | 66 * Insert cil common structure into sepol policydb. 68 * @param[in] pdb The policy database to insert the common into. 77 * Insert cil class structure into sepol policydb. 79 * @param[in] pdb The policy database to insert the class into. 87 * Insert cil role structure into sepol policydb. 89 * @param[in] pdb The policy database to insert the role into. 97 * Insert cil roletype structure into sepol policydb. 99 * @param[in] pdb The policy database to insert the roletype into. 108 * Insert cil type structure into sepol policydb. 110 * @param[in] pdb The policy database to insert the type into. [all …]
|
| /external/uwb/src/rust/uwb_core/src/proto/ |
| D | mappings.rs | 714 result.set_mac_address(item.mac_address.into()); in from() 715 result.set_status(item.status.into()); in from() 716 result.set_nlos(item.nlos.into()); in from() 717 result.set_distance(item.distance.into()); in from() 718 result.set_aoa_azimuth(item.aoa_azimuth.into()); in from() 719 result.set_aoa_azimuth_fom(item.aoa_azimuth_fom.into()); in from() 720 result.set_aoa_elevation(item.aoa_elevation.into()); in from() 721 result.set_aoa_elevation_fom(item.aoa_elevation_fom.into()); in from() 722 result.set_aoa_destination_azimuth(item.aoa_destination_azimuth.into()); in from() 723 result.set_aoa_destination_azimuth_fom(item.aoa_destination_azimuth_fom.into()); in from() [all …]
|
| /external/cldr/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/ |
| D | iso-639-3_Retirements.tab | 11 bvs Belgian Sign Language S Split into Langue des signes de Belgique Francophone [sfb], and Vlaams… 12 ccy Southern Zhuang S Split into five languages: Nong Zhuang [zhn]; Yang Zhuang [zyg]; Yongnan Zh… 13 cit Chittagonian S Split into Rohingya [rhg], and Chittagonian (new identifier [ctg]) 2007-07-18 14 flm Falam Chin S Split into Ranglong [rnl], and Falam Chin (new identifier [cfm]). 2007-07-18 17 mob Moinba S Split into five languages: Chug [cvg]; Lish [lsh]; Kalaktang Monpa [kkf]; Tawang Mon… 18 mzf Aiku S Split into four languages: Ambrak [aag]; Yangum Dey [yde]; Yangum Gel [ygl]; Yangum Mon… 20 nhs Southeastern Puebla Nahuatl S Split into Sierra Negra Nahuatl [nsu] and Southeastern Puebla Na… 23 tot Patla-Chicontla Totonac S Split into Upper Necaxa Totonac [tku] and Tecpatlán Totonac [tcw] 20… 32 aiz Aari S Split into Aari [aiw] (new identifier) and Gayil [gyl] 2008-01-14 34 arf Arafundi S Split into three languages: Andai [afd]; Nanubae [afk]; Tapei [afp] 2008-01-14 [all …]
|
| /external/rust/crates/glam/src/features/ |
| D | impl_mint.rs | 126 Self::from_cols(m.x.into(), m.y.into()).transpose() 134 x: mt.x_axis.into(), 135 y: mt.y_axis.into(), 142 Self::from_cols(m.x.into(), m.y.into()) 149 x: m.x_axis.into(), 150 y: m.y_axis.into(), 161 Self::from_cols(m.x.into(), m.y.into(), m.z.into()).transpose() 169 x: mt.x_axis.into(), 170 y: mt.y_axis.into(), 171 z: mt.z_axis.into(), [all …]
|
| /external/perfetto/test/trace_processor/diff_tests/span_join/ |
| D | span_left_join_left_unpartitioned_test.sql | 31 -- Insert some rows into t2 which are in part 0 and 1 but before t1's rows. 32 INSERT INTO t2(ts, dur, part, b) 38 -- Then insert some rows into t1 in part 1, 3, 4 and 5. 39 INSERT INTO t1(ts, dur, a) 46 -- Insert a row into t2 which should be split up by t1's first row. 47 INSERT INTO t2(ts, dur, part, b) VALUES (50, 200, 1, 444); 49 -- Insert a row into t2 should should be completely covered by t1's first row. 50 INSERT INTO t2(ts, dur, part, b) VALUES (300, 100, 1, 555); 52 -- Insert a row into t2 which should span between t1's first and second rows. 53 INSERT INTO t2(ts, dur, part, b) VALUES (400, 250, 1, 666); [all …]
|
| D | span_left_join_test.sql | 32 -- Insert some rows into t2 which are in part 0 and 1 but before t1's rows. 33 INSERT INTO t2(ts, dur, part, b) 39 -- Then insert some rows into t1 in part 1, 3, 4 and 5. 40 INSERT INTO t1(ts, dur, part, a) 51 -- Insert a row into t2 which should be split up by t1's first row. 52 INSERT INTO t2(ts, dur, part, b) VALUES (50, 200, 1, 444); 54 -- Insert a row into t2 should should be completely covered by t1's first row. 55 INSERT INTO t2(ts, dur, part, b) VALUES (300, 100, 1, 555); 57 -- Insert a row into t2 which should span between t1's first and second rows. 58 INSERT INTO t2(ts, dur, part, b) VALUES (400, 250, 1, 666); [all …]
|
| D | span_outer_join_test.sql | 32 -- Insert some rows into t2 which are in part 0 and 1 but before t1's rows. 33 INSERT INTO t2(ts, dur, part, b) 39 -- Then insert some rows into t1 in part 1, 3, 4 and 5. 40 INSERT INTO t1(ts, dur, part, a) 51 -- Insert a row into t2 which should be split up by t1's first row. 52 INSERT INTO t2(ts, dur, part, b) VALUES (50, 200, 1, 444); 54 -- Insert a row into t2 should should be completely covered by t1's first row. 55 INSERT INTO t2(ts, dur, part, b) VALUES (300, 100, 1, 555); 57 -- Insert a row into t2 which should span between t1's first and second rows. 58 INSERT INTO t2(ts, dur, part, b) VALUES (400, 250, 1, 666); [all …]
|
| /external/rust/crates/combine/tests/ |
| D | parser.rs | 109 Error::Unexpected('a'.into()), in expected_retain_errors() 110 Error::Message("message".into()), in expected_retain_errors() 111 Error::Expected("my expected digit".into()), in expected_retain_errors() 126 Error::Unexpected('a'.into()), in tuple_parse_error() 127 Error::Expected("digit".into()), in tuple_parse_error() 158 Error::Unexpected('h'.into()), in message_tests() 159 Error::Expected('o'.into()), in message_tests() 160 Error::Message("expected message".into()), in message_tests() 167 Error::Unexpected('i'.into()), in message_tests() 168 Error::Expected('o'.into()), in message_tests() [all …]
|
| /external/deqp-deps/glslang/Test/baseResults/ |
| D | Operations.frag.out | 39 0:28 add second child into first child ( temp 4-component vector of float) 43 0:29 add second child into first child ( temp 4-component vector of float) 53 0:30 add second child into first child ( temp 4-component vector of float) 57 0:31 add second child into first child ( temp 4-component vector of float) 61 0:32 add second child into first child ( temp 4-component vector of float) 65 0:33 add second child into first child ( temp 4-component vector of float) 69 0:35 add second child into first child ( temp 4-component vector of float) 73 0:36 add second child into first child ( temp 4-component vector of float) 77 0:37 add second child into first child ( temp 4-component vector of float) 81 0:38 add second child into first child ( temp 4-component vector of float) [all …]
|
| D | 400.geom.out | 201 0:136 add second child into first child ( temp double) 205 0:137 add second child into first child ( temp 2-component vector of double) 209 0:138 add second child into first child ( temp 3-component vector of double) 213 0:139 add second child into first child ( temp 4-component vector of double) 217 0:141 add second child into first child ( temp double) 221 0:142 add second child into first child ( temp 2-component vector of double) 225 0:143 add second child into first child ( temp 3-component vector of double) 229 0:144 add second child into first child ( temp 4-component vector of double) 233 0:146 add second child into first child ( temp double) 237 0:147 add second child into first child ( temp 2-component vector of double) [all …]
|
| D | texture.frag.out | 58 0:28 add second child into first child ( temp 4-component vector of float) 63 0:29 add second child into first child ( temp 4-component vector of float) 69 0:30 add second child into first child ( temp 4-component vector of float) 74 0:31 add second child into first child ( temp 4-component vector of float) 79 0:32 add second child into first child ( temp 4-component vector of float) 85 0:33 add second child into first child ( temp 4-component vector of float) 91 0:35 add second child into first child ( temp 4-component vector of float) 96 0:36 add second child into first child ( temp 4-component vector of float) 102 0:37 add second child into first child ( temp 4-component vector of float) 107 0:38 add second child into first child ( temp 4-component vector of float) [all …]
|
| /external/angle/third_party/vulkan-deps/glslang/src/Test/baseResults/ |
| D | Operations.frag.out | 39 0:28 add second child into first child ( temp 4-component vector of float) 43 0:29 add second child into first child ( temp 4-component vector of float) 53 0:30 add second child into first child ( temp 4-component vector of float) 57 0:31 add second child into first child ( temp 4-component vector of float) 61 0:32 add second child into first child ( temp 4-component vector of float) 65 0:33 add second child into first child ( temp 4-component vector of float) 69 0:35 add second child into first child ( temp 4-component vector of float) 73 0:36 add second child into first child ( temp 4-component vector of float) 77 0:37 add second child into first child ( temp 4-component vector of float) 81 0:38 add second child into first child ( temp 4-component vector of float) [all …]
|
| D | 400.geom.out | 201 0:136 add second child into first child ( temp double) 205 0:137 add second child into first child ( temp 2-component vector of double) 209 0:138 add second child into first child ( temp 3-component vector of double) 213 0:139 add second child into first child ( temp 4-component vector of double) 217 0:141 add second child into first child ( temp double) 221 0:142 add second child into first child ( temp 2-component vector of double) 225 0:143 add second child into first child ( temp 3-component vector of double) 229 0:144 add second child into first child ( temp 4-component vector of double) 233 0:146 add second child into first child ( temp double) 237 0:147 add second child into first child ( temp 2-component vector of double) [all …]
|
| D | texture.frag.out | 58 0:28 add second child into first child ( temp 4-component vector of float) 63 0:29 add second child into first child ( temp 4-component vector of float) 69 0:30 add second child into first child ( temp 4-component vector of float) 74 0:31 add second child into first child ( temp 4-component vector of float) 79 0:32 add second child into first child ( temp 4-component vector of float) 85 0:33 add second child into first child ( temp 4-component vector of float) 91 0:35 add second child into first child ( temp 4-component vector of float) 96 0:36 add second child into first child ( temp 4-component vector of float) 102 0:37 add second child into first child ( temp 4-component vector of float) 107 0:38 add second child into first child ( temp 4-component vector of float) [all …]
|
| /external/uwb/src/rust/uwb_core/src/uci/ |
| D | command.rs | 100 uwb_uci_packets::SessionInitCmdBuilder { session_id, session_type }.build().into() in try_from() 103 uwb_uci_packets::SessionDeinitCmdBuilder { session_token }.build().into() in try_from() 106 uwb_uci_packets::GetDeviceInfoCmdBuilder {}.build().into() in try_from() 108 UciCommand::CoreGetCapsInfo => uwb_uci_packets::GetCapsInfoCmdBuilder {}.build().into(), in try_from() 110 uwb_uci_packets::SessionGetStateCmdBuilder { session_token }.build().into() in try_from() 122 .into(), in try_from() 124 uwb_uci_packets::SetConfigCmdBuilder { tlvs: config_tlvs }.build().into() in try_from() 130 .into(), in try_from() 137 .into() in try_from() 145 .into() in try_from() [all …]
|
| /external/perfetto/src/trace_processor/prelude/operators/ |
| D | span_join_operator_unittest.cc | 80 RunStatement("INSERT INTO f VALUES(100, 10, 5);"); in TEST_F() 81 RunStatement("INSERT INTO f VALUES(110, 50, 5);"); in TEST_F() 82 RunStatement("INSERT INTO f VALUES(120, 100, 2);"); in TEST_F() 83 RunStatement("INSERT INTO f VALUES(160, 10, 5);"); in TEST_F() 85 RunStatement("INSERT INTO s VALUES(100, 5, 5);"); in TEST_F() 86 RunStatement("INSERT INTO s VALUES(105, 100, 5);"); in TEST_F() 87 RunStatement("INSERT INTO s VALUES(110, 50, 2);"); in TEST_F() 88 RunStatement("INSERT INTO s VALUES(160, 100, 2);"); in TEST_F() 142 RunStatement("INSERT INTO f VALUES(30, 20, NULL);"); in TEST_F() 143 RunStatement("INSERT INTO f VALUES(100, 10, 5);"); in TEST_F() [all …]
|
| /external/rust/crates/serde_json/src/value/ |
| D | from.rs | 14 Value::Number(n.into()) 40 /// let x: Value = f.into(); 56 /// let x: Value = f.into(); 72 /// let x: Value = b.into(); 88 /// let x: Value = s.into(); 104 /// let x: Value = s.into(); 121 /// let x: Value = s.into(); 129 /// let x: Value = s.into(); 145 /// let x: Value = n.into(); 161 /// m.insert("Lorem".to_string(), "ipsum".into()); [all …]
|
| /external/crosvm/devices/src/virtio/video/ |
| D | command.rs | 130 Ok(match hdr.type_.into() { in from_reader() 145 let input_resource_type = match in_mem_type.into() { in from_reader() 154 let output_resource_type = match out_mem_type.into() { in from_reader() 164 stream_id: hdr.stream_id.into(), in from_reader() 173 stream_id: hdr.stream_id.into(), in from_reader() 179 stream_id: hdr.stream_id.into(), in from_reader() 193 let planes_layout = Into::<u32>::into(planes_layout); in from_reader() 199 let num_planes = Into::<u32>::into(num_planes) as usize; in from_reader() 218 .map(|x| Into::<u32>::into(*x)) in from_reader() 225 let num_entries: u32 = num_entries[i].into(); in from_reader() [all …]
|
| /external/rust/crates/clap/src/builder/ |
| D | resettable.rs | 1 // Unlike `impl Into<Option<T>>` or `Option<impl Into<T>>`, this isn't ambiguous for the `None` 14 /// This allows a builder function to both accept any value that can [`Into::into`] `T` (like 15 /// `&str` into `OsStr`) as well as `None` to reset it to the default. This is needed to 16 /// workaround a limitation where you can't have a function argument that is `impl Into<Option<T>>` 17 /// where `T` is `impl Into<S>` accept `None` as its type is ambiguous. 117 Some(s) => Resettable::Value(s.into()), in into_resettable() 126 Some(s) => Resettable::Value(s.into()), in into_resettable() 135 Some(s) => Resettable::Value(s.into()), in into_resettable() 171 impl<I: Into<ValueRange>> IntoResettable<ValueRange> for I { 173 Resettable::Value(self.into()) in into_resettable() [all …]
|
| /external/flatbuffers/kotlin/flatbuffers-kotlin/src/commonMain/kotlin/com/google/flatbuffers/kotlin/ |
| D | FlexBuffersBuilder.kt | 46 * Finish writing the message into the buffer. After that no other element must 47 * be inserted into the buffer. Also, you must call this function before start using the 69 * Insert a single [Boolean] into the buffer 75 …* Insert a null reference into the buffer. A key must be present if element is inserted into a map. 81 …* Insert a single [Boolean] into the buffer. A key must be present if element is inserted into a m… 87 * Insert a single [Byte] into the buffer 92 … * Insert a single [Byte] into the buffer. A key must be present if element is inserted into a map. in put() 97 * Insert a single [Short] into the buffer. in put() 102 …* Insert a single [Short] into the buffer. A key must be present if element is inserted into a map. in put() 107 * Insert a single [Int] into the buffer. in put() [all …]
|
| /external/gemmlowp/internal/ |
| D | kernel_avx.h | 119 "vpmaddwd %%ymm0, %%ymm2, %%ymm2 \n\t" // mul add lhs rhs0 into ymm2 in Run() 120 "vpmaddwd %%ymm0, %%ymm3, %%ymm3 \n\t" // mul add lhs rhs1 into ymm3 in Run() 121 "vpaddd %%ymm2, %%ymm4, %%ymm4 \n\t" // add muladd lhs + rhs0 into ymm4 in Run() 122 "vpaddd %%ymm3, %%ymm5, %%ymm5 \n\t" // add muladd lhs + rhs1 into ymm5 in Run() 125 "vpmaddwd %%ymm0, %%ymm2, %%ymm2 \n\t" // mul add lhs rh3 into ymm2 in Run() 126 "vpshufd $0xff,%%ymm1,%%ymm3 \n\t" // mov rhs 3 element into all ymm3 in Run() 127 "vpmaddwd %%ymm0, %%ymm3, %%ymm3 \n\t" // mul add lhs rh4 into ymm3 in Run() 128 "vpaddd %%ymm2, %%ymm6, %%ymm6 \n\t" // add muladd lhs + rhs2 into ymm6 in Run() 129 "vpaddd %%ymm3, %%ymm7, %%ymm7 \n\t" // add muladd lhs + rhs3 into ymm7 in Run() 141 "vpmaddwd %%ymm0, %%ymm2, %%ymm2 \n\t" // mul add lhs rhs0 into ymm2 in Run() [all …]
|
| /external/tensorflow/tensorflow/java/src/main/java/org/tensorflow/ |
| D | Tensors.java | 27 * @param data The string to put into the new scalar tensor. 37 * @param data The string to put into the new scalar tensor. 46 * @param data The value to put into the new scalar tensor. 55 * @param data An array containing the values to put into the new tensor. The dimensions of the 65 * @param data An array containing the values to put into the new tensor. The dimensions of the 75 * @param data An array containing the values to put into the new tensor. The dimensions of the 85 * @param data An array containing the values to put into the new tensor. The dimensions of the 95 * @param data An array containing the values to put into the new tensor. The dimensions of the 105 * @param data An array containing the values to put into the new tensor. The dimensions of the 115 * @param data The value to put into the new scalar tensor. [all …]
|
| /external/wpa_supplicant_8/hs20/server/ |
| D | sql-example.txt | 1 INSERT INTO osu_config(realm,field,value) VALUES('example.com','fqdn','example.com'); 2 INSERT INTO osu_config(realm,field,value) VALUES('example.com','friendly_name','Example Operator'); 3 INSERT INTO osu_config(realm,field,value) VALUES('example.com','spp_http_auth_url','https://subscri… 4 INSERT INTO osu_config(realm,field,value) VALUES('example.com','trust_root_cert_url','https://osu-s… 5 INSERT INTO osu_config(realm,field,value) VALUES('example.com','trust_root_cert_fingerprint','5b393… 6 INSERT INTO osu_config(realm,field,value) VALUES('example.com','aaa_trust_root_cert_url','https://o… 7 INSERT INTO osu_config(realm,field,value) VALUES('example.com','aaa_trust_root_cert_fingerprint','5… 8 INSERT INTO osu_config(realm,field,value) VALUES('example.com','free_account','free'); 9 INSERT INTO osu_config(realm,field,value) VALUES('example.com','policy_url','https://subscription-s… 10 INSERT INTO osu_config(realm,field,value) VALUES('example.com','remediation_url','https://subscript… [all …]
|