/external/elfutils/tests/ |
D | run-elfputzdata.sh | 45 Lets compress 22 .sbss, size: 0 47 Lets compress 24 .stab, size: 21540 48 Lets compress 25 .stabstr, size: 57297 49 Lets compress 26 .comment, size: 648 50 Lets compress 27 .debug_aranges, size: 56 51 Lets compress 28 .debug_pubnames, size: 93 52 Lets compress 29 .debug_info, size: 960 53 Lets compress 30 .debug_abbrev, size: 405 54 Lets compress 31 .debug_line, size: 189 55 Lets compress 32 .note, size: 240 [all …]
|
/external/googleapis/google/ads/googleads/v16/enums/ |
D | placeholder_type.proto | 40 // Lets you show links in your ad to pages from your website, including the 44 // Lets you attach a phone number to an ad, allowing customers to call 48 // Lets you provide users with a link that points to a mobile app in 52 // Lets you show locations of businesses from your Business Profile 63 // Lets you include additional text with your search ads that provide 69 // Lets you add more info to your ad, specific to some predefined categories 79 // Lets you display prices for a list of items along with your ads. A price 83 // Lets you highlight sales and other promotions that let users see how 87 // Lets you dynamically inject custom data into the title and description 117 // Lets you attach an image to an ad.
|
D | brand_safety_suitability.proto | 40 // This option lets you show ads across all inventory on YouTube and video 48 // This option lets you show ads across a wide range of content that's 58 // This option lets you show ads on a reduced range of content that's
|
/external/googleapis/google/ads/googleads/v15/enums/ |
D | placeholder_type.proto | 40 // Lets you show links in your ad to pages from your website, including the 44 // Lets you attach a phone number to an ad, allowing customers to call 48 // Lets you provide users with a link that points to a mobile app in 52 // Lets you show locations of businesses from your Business Profile 63 // Lets you include additional text with your search ads that provide 69 // Lets you add more info to your ad, specific to some predefined categories 79 // Lets you display prices for a list of items along with your ads. A price 83 // Lets you highlight sales and other promotions that let users see how 87 // Lets you dynamically inject custom data into the title and description 117 // Lets you attach an image to an ad.
|
D | brand_safety_suitability.proto | 40 // This option lets you show ads across all inventory on YouTube and video 48 // This option lets you show ads across a wide range of content that's 58 // This option lets you show ads on a reduced range of content that's
|
/external/googleapis/google/ads/googleads/v14/enums/ |
D | placeholder_type.proto | 40 // Lets you show links in your ad to pages from your website, including the 44 // Lets you attach a phone number to an ad, allowing customers to call 48 // Lets you provide users with a link that points to a mobile app in 52 // Lets you show locations of businesses from your Business Profile 63 // Lets you include additional text with your search ads that provide 69 // Lets you add more info to your ad, specific to some predefined categories 79 // Lets you display prices for a list of items along with your ads. A price 83 // Lets you highlight sales and other promotions that let users see how 87 // Lets you dynamically inject custom data into the title and description 117 // Lets you attach an image to an ad.
|
D | brand_safety_suitability.proto | 40 // This option lets you show ads across all inventory on YouTube and video 48 // This option lets you show ads across a wide range of content that's 58 // This option lets you show ads on a reduced range of content that's
|
/external/flatbuffers/docs/source/ |
D | evolution.md | 49 Lets start with a simple table `T` with two fields. 60 First lets extend the table with a new field. 121 Lets add a new field to the beginning, but use `id` attributes. 151 Lets change the default values of the existing fields. 168 Lets change the name of the fields 184 Lets start with a simple union `U` with two members. 195 Lets add a another variant to the end. 209 Lets add a another variant to the middle. 224 Lets add a another variant to the middle, this time adding a union "discriminant".
|
/external/pytorch/functorch/notebooks/ |
D | aot_autograd_optimizations.ipynb | 32 "So, lets get started.\n" 76 …"Now, lets use AOT Autograd and look at the extracted forward and backward graphs. Internally, AOT… 78 …nds these forward and backward graphs to the user supplied compilers. So, lets write a compiler th… 148 …ator fusion for CPU devices. For CUDA devices, a suitable alternative is NvFuser. So, lets use NNC" 157 …"# AOT Autograd has a suite of already integrated backends. Lets import the NNC compiler backend -… 160 "# Lets compile the forward and backward through ts_compile.\n", 163 "# Correctness checking. Lets clone the input so that we can check grads.\n", 181 "Lets benchmark the original and AOT Autograd + NNC compiled function." 190 "# Lets write a function to benchmark the forward and backward pass\n", 309 …"# Lets set up the partitioner. Also set the fwd and bwd compilers to the printer function that we… [all …]
|
/external/python/google-api-python-client/samples/ |
D | README.md | 5 Lets you manage your Ad Exchange Buyer account. 48 Lets you access user activities in your enterprise made through various 77 Lets you view and manage jobs in a Coordinate team. 91 Lets you search over a website or collection of websites. 105 Lets you discover information about other Google APIs, such as what APIs are 123 Lets you manage permission levels and related settings of a group. 156 Lets you access a cloud hosted machine learning service that makes it easy to 186 Lets you search over product data. 200 Lets you manage the Google Compute Engine instances in your projects. 212 Lets you store and retrieve potentially-large, immutable data objects. [all …]
|
/external/python/cpython3/Lib/test/configdata/ |
D | cfgparser.3 | 43 lets use some Unicode = 片仮名 65 lets = %(go)s 69 lets = %(go)s
|
/external/openscreen/third_party/abseil/src/absl/strings/internal/ |
D | char_map_test.cc | 53 const absl::strings_internal::Charmap lets("^abcde", 3); in TEST() local 59 ASSERT_TRUE(symbols.IntersectsWith(lets)); in TEST() 60 ASSERT_TRUE(!lets2.IntersectsWith(lets)); in TEST() 61 ASSERT_TRUE(lets.IntersectsWith(symbols)); in TEST() 62 ASSERT_TRUE(!lets.IntersectsWith(lets2)); in TEST() 65 ASSERT_TRUE(!lets.IsZero()); in TEST()
|
/external/abseil-cpp/absl/strings/ |
D | charset_test.cc | 55 const absl::CharSet lets(absl::string_view("^abcde", 3)); in TEST() local 61 EXPECT_FALSE((symbols & lets).empty()); in TEST() 62 EXPECT_TRUE((lets2 & lets).empty()); in TEST() 63 EXPECT_FALSE((lets & symbols).empty()); in TEST() 64 EXPECT_TRUE((lets & lets2).empty()); in TEST() 67 EXPECT_FALSE(lets.empty()); in TEST()
|
/external/cronet/stable/third_party/abseil-cpp/absl/strings/ |
D | charset_test.cc | 55 const absl::CharSet lets(absl::string_view("^abcde", 3)); in TEST() local 61 EXPECT_FALSE((symbols & lets).empty()); in TEST() 62 EXPECT_TRUE((lets2 & lets).empty()); in TEST() 63 EXPECT_FALSE((lets & symbols).empty()); in TEST() 64 EXPECT_TRUE((lets & lets2).empty()); in TEST() 67 EXPECT_FALSE(lets.empty()); in TEST()
|
/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/strings/internal/ |
D | char_map_test.cc | 53 const absl::strings_internal::Charmap lets("^abcde", 3); in TEST() local 59 ASSERT_TRUE(symbols.IntersectsWith(lets)); in TEST() 60 ASSERT_TRUE(!lets2.IntersectsWith(lets)); in TEST() 61 ASSERT_TRUE(lets.IntersectsWith(symbols)); in TEST() 62 ASSERT_TRUE(!lets.IntersectsWith(lets2)); in TEST() 65 ASSERT_TRUE(!lets.IsZero()); in TEST()
|
/external/cronet/tot/third_party/abseil-cpp/absl/strings/ |
D | charset_test.cc | 55 const absl::CharSet lets(absl::string_view("^abcde", 3)); in TEST() local 61 EXPECT_FALSE((symbols & lets).empty()); in TEST() 62 EXPECT_TRUE((lets2 & lets).empty()); in TEST() 63 EXPECT_FALSE((lets & symbols).empty()); in TEST() 64 EXPECT_TRUE((lets & lets2).empty()); in TEST() 67 EXPECT_FALSE(lets.empty()); in TEST()
|
/external/angle/third_party/abseil-cpp/absl/strings/ |
D | charset_test.cc | 55 const absl::CharSet lets(absl::string_view("^abcde", 3)); in TEST() local 61 EXPECT_FALSE((symbols & lets).empty()); in TEST() 62 EXPECT_TRUE((lets2 & lets).empty()); in TEST() 63 EXPECT_FALSE((lets & symbols).empty()); in TEST() 64 EXPECT_TRUE((lets & lets2).empty()); in TEST() 67 EXPECT_FALSE(lets.empty()); in TEST()
|
/external/skia/bazel/ |
D | skia_rules.bzl | 101 This lets us provide compiler flags (copts) and global linker flags (linkopts) consistently 118 This lets us provide compiler flags (copts) and global linker flags (linkopts) consistently 135 This lets us provide compiler flags (copts) consistently to the Skia build. By default, 139 It also lets us easily tweak these settings when being built in G3. 177 This lets us provide compiler flags (copts) consistently to the Skia build (e.g. //:core) 180 It also lets us easily tweak these settings when being built in G3.
|
/external/rust/android-crates-io/crates/etherparse/examples/ |
D | write_ipv4_udp.rs | 8 //For this example lets use a simple Vec as it implements the write trait. in main() 10 //lets reserve enough memory to avoid unnecessary allocations in main() 17 //Lets start out with an ethernet II header containing the mac addresses in main()
|
/external/executorch/runtime/core/exec_aten/testing_util/ |
D | tensor_util.h | 121 * Lets gtest users write `EXPECT_THAT(tensor1, IsCloseTo(tensor2))` or 131 * Lets gtest users write 143 * Lets gtest users write `EXPECT_THAT(tensor1, IsEqualTo(tensor2))` or 153 * Lets gtest users write `EXPECT_THAT(tensor1, IsDataCloseTo(tensor2))` or 163 * Lets gtest users write 175 * Lets gtest users write `EXPECT_THAT(tensor1, IsDataEqualTo(tensor2))` or 185 * Lets gtest users write `EXPECT_THAT(tensor_list1, 199 * Lets gtest users write `EXPECT_THAT(tensor_list1,
|
/external/apache-velocity-engine/velocity-engine-examples/src/main/java/org/apache/velocity/example/ |
D | Example2.java | 56 /* lets make a Context and put data into it */ in main() 63 /* lets render a template */ in main() 79 * lets dynamically 'create' our template in main()
|
/external/libxml2/ |
D | schematron.c | 115 xmlSchematronLetPtr lets; /* the list of let variables */ member 432 * @lets: a list of let variables 437 xmlSchematronFreeLets(xmlSchematronLetPtr lets) { in xmlSchematronFreeLets() argument 440 while (lets != NULL) { in xmlSchematronFreeLets() 441 next = lets->next; in xmlSchematronFreeLets() 442 if (lets->name != NULL) in xmlSchematronFreeLets() 443 xmlFree(lets->name); in xmlSchematronFreeLets() 444 if (lets->comp != NULL) in xmlSchematronFreeLets() 445 xmlXPathFreeCompExpr(lets->comp); in xmlSchematronFreeLets() 446 xmlFree(lets); in xmlSchematronFreeLets() [all …]
|
/external/cronet/stable/net/data/ssl/certificates/ |
D | README | 49 - lets-encrypt-dst-x3-root.pem: A chain that ends in the Lets encrypt DST X3 51 lets-encrypt-isrg-x1-root.pem. 52 - lets-encrypt-isrg-x1-root.pem: A chain that ends in the Lets encrypt ISRG X1 54 lets-encrypt-dst-x3-root.pem.
|
/external/cronet/tot/net/data/ssl/certificates/ |
D | README | 49 - lets-encrypt-dst-x3-root.pem: A chain that ends in the Lets encrypt DST X3 51 lets-encrypt-isrg-x1-root.pem. 52 - lets-encrypt-isrg-x1-root.pem: A chain that ends in the Lets encrypt ISRG X1 54 lets-encrypt-dst-x3-root.pem.
|
/external/rust/android-crates-io/crates/rustix/src/mm/ |
D | userfaultfd.rs | 5 //! Calling `userfaultfd` is safe, but the returned file descriptor lets users 18 /// The call itself is safe, but the returned file descriptor lets users
|