/external/ImageMagick/PerlMagick/demo/ |
D | demo.pl | 34 $example=$model->Clone(); 35 $example->Label('Adaptive Blur'); 36 $example->AdaptiveBlur('0x1'); 37 push(@$images,$example); 40 $example=$model->Clone(); 41 $example->Label('Adaptive Resize'); 42 $example->AdaptiveResize('60%'); 43 push(@$images,$example); 46 $example=$model->Clone(); 47 $example->Label('Adaptive Sharpen'); [all …]
|
/external/ImageMagick/www/source/ |
D | examples.pl | 34 $example=$model->Clone(); 35 $example->Label('Adaptive Blur'); 36 $example->AdaptiveBlur('0x1'); 37 push(@$images,$example); 40 $example=$model->Clone(); 41 $example->Label('Adaptive Resize'); 42 $example->AdaptiveResize('60%'); 43 push(@$images,$example); 46 $example=$model->Clone(); 47 $example->Label('Adaptive Sharpen'); [all …]
|
/external/ImageMagick/Magick++/demo/ |
D | demo.cpp | 62 Image example = model; in main() local 71 example.label( "Add Noise" ); in main() 72 example.addNoise( LaplacianNoise ); in main() 73 images.push_back( example ); in main() 76 example.label( "Add Noise\n(Blue Channel)" ); in main() 77 example.addNoiseChannel( BlueChannel, PoissonNoise ); in main() 78 images.push_back( example ); in main() 81 example = model; in main() 82 example.label( "Annotate" ); in main() 83 example.density( "72x72" ); in main() [all …]
|
/external/tensorflow/tensorflow/contrib/boosted_trees/lib/utils/ |
D | examples_iterable_test.cc | 78 const Example& example) { in TEST_F() argument 79 EXPECT_EQ(1, example.dense_float_features.size()); in TEST_F() 83 EXPECT_EQ(0, example.example_idx); in TEST_F() 84 EXPECT_EQ(7.0f, example.dense_float_features[0]); in TEST_F() 86 EXPECT_TRUE(example.sparse_float_features[0][0].has_value()); in TEST_F() 87 EXPECT_EQ(-3.0f, example.sparse_float_features[0][0].get_value()); in TEST_F() 89 EXPECT_FALSE(example.sparse_float_features[1][0].has_value()); in TEST_F() 90 EXPECT_TRUE(example.sparse_float_features[1][1].has_value()); in TEST_F() 91 EXPECT_EQ(1.0f, example.sparse_float_features[1][1].get_value()); in TEST_F() 93 EXPECT_EQ(2, example.sparse_int_features[0].size()); in TEST_F() [all …]
|
/external/antlr/runtime/Ruby/test/functional/ast-output/ |
D | rewrites.rb | 59 example "delete" do 72 example "single token" do 86 example "single token to new node" do 100 example "single token to new node root" do 114 example "single token to new node2" do 127 example "single char literal" do 141 example "single string literal" do 155 example "single rule" do 170 example "reorder tokens" do 184 example "reorder token and rule" do [all …]
|
D | auto-ast.rb | 60 example 'flat token list' do 72 example 'token list in a single-alternative subrule' do 84 example "simple root at the outer level via the `^' operator" do 96 example "outer-level root changing token order from the `^' operator" do 108 example "leaving out tokens using the `!' operator" do 121 example "tokens in `(...)?' optional subrule" do 133 example "labeled literal-string root token" do 145 example 'rule with token wildcard' do 157 example "token wildcard as root via the `^' operator" do 169 example "labeled token wildcard as root via the `^' operator" do [all …]
|
D | hetero-nodes.rb | 620 example "v token" do 626 example "token with qualified type" do 632 example "token with label" do 638 example "token with list label" do 644 example "token root" do 650 example "token root with list label" do 656 example "string" do 662 example "string root" do 668 example "rewrite token" do 674 example "rewrite token with args" do [all …]
|
D | tree-rewrite.rb | 1004 example "flat list" do 1018 example "simple tree" do 1032 example "combined rewrite and auto" do 1055 example "avoid dup" do 1069 example "loop" do 1083 example "auto dup" do 1097 example "auto dup rule" do 1111 example "auto wildcard" do 1125 example "auto wildcard2" do 1139 example "auto wildcard with label" do [all …]
|
/external/okhttp/okhttp-tests/src/test/resources/ |
D | web-platform-test-urltestdata.txt | 4 http://example\t.\norg http://example.org/foo/bar s:http h:example.org p:/ 6 http:foo.com s:http h:example.org p:/foo/foo.com 7 \t\s\s\s:foo.com\s\s\s\n s:http h:example.org p:/foo/:foo.com 8 \sfoo.com\s\s s:http h:example.org p:/foo/foo.com 21 s:http h:example.org p:/foo/bar 22 \s\s\t s:http h:example.org p:/foo/bar 23 :foo.com/ s:http h:example.org p:/foo/:foo.com/ 24 :foo.com\\ s:http h:example.org p:/foo/:foo.com/ 25 : s:http h:example.org p:/foo/: 26 :a s:http h:example.org p:/foo/:a [all …]
|
/external/tensorflow/tensorflow/core/example/ |
D | feature_util_test.cc | 29 Example example; in TEST() local 30 (*example.mutable_features()->mutable_feature())["tag"] in TEST() 34 auto tag = GetFeatureValues<protobuf_int64>("tag", example); in TEST() 51 Example example; in TEST() local 53 GetFeatureValues<protobuf_int64>("tag", &example)->Add(42); in TEST() 56 example.features().feature().at("tag").int64_list().value_size()); in TEST() 57 EXPECT_EQ(42, example.features().feature().at("tag").int64_list().value(0)); in TEST() 70 Example example; in TEST() local 71 ASSERT_FALSE(HasFeature("tag", example)); in TEST() 73 GetFeatureValues<protobuf_int64>("tag", &example)->Add(0); in TEST() [all …]
|
/external/antlr/runtime/Ruby/test/functional/token-rewrite/ |
D | basic.rb | 26 example 'insert before' do 32 example 'insert after last index' do 38 example 'insert before after middle index' do 45 example 'replace index 0' do 51 example 'replace last index' do 57 example 'replace last index' do 63 example 'replace middle index' do 69 example 'replace middle index' do 76 example 'replace middle index 1 insert before' do 84 example 'replace then delete middle index' do [all …]
|
/external/curl/tests/data/ |
D | test1654 | 33 h2 example.com 443 h3 shiny.example.com 8443 "20191231 00:00:00" 0 1 35 h2c example.com 443 h3 shiny.example.com 8443 "20291231 23:30:00" 0 1 36 h1 example.com 443 h3 shiny.example.com 8443 "20121231 00:00:01" 0 1 37 h3 example.com 443 h3 shiny.example.com 8443 "20131231 00:00:00" 0 1 39 bad example.com 443 h3 shiny.example.com 8443 "20191231 00:00:00" 0 1 47 h2 example.com 443 h3 shiny.example.com 8443 "20191231 00:00:00" 0 1 48 h2c example.com 443 h3 shiny.example.com 8443 "20291231 23:30:00" 0 1 49 h1 example.com 443 h3 shiny.example.com 8443 "20121231 00:00:01" 0 1 50 h3 example.com 443 h3 shiny.example.com 8443 "20131231 00:00:00" 0 1 51 h1 example.org 8080 h2 example.com 8080 "20190125 22:34:21" 0 0 [all …]
|
D | test1561 | 19 Set-Cookie: super=secret; domain=example.com; path=/1561; secure; 20 Set-Cookie: supersuper=secret; domain=example.com; path=/1561/login/; secure; 21 Set-Cookie: __Secure-SID=12345; Domain=example.com 22 Set-Cookie: __Secure-SID=12346; Secure; Domain=example.com 23 Set-Cookie: supersupersuper=secret; __Secure-SID=12346; Secure; Domain=example.com 26 Set-Cookie: __Host-SID=22347; Domain=example.com 27 Set-Cookie: __Host-SID=22348; Domain=example.com; Path=/ 28 Set-Cookie: __Host-SID=22349; Secure; Domain=example.com; Path=/ 38 Set-Cookie: super=secret; domain=example.com; path=/1561; httponly; 39 Set-Cookie: super=secret; domain=example.com; path=/1561/; httponly; [all …]
|
D | test917 | 29 …example.com --mail-rcpt recipient.two@example.com --mail-rcpt recipient.three@example.com --mail-r… 38 MAIL FROM:<sender@example.com> 39 RCPT TO:<recipient.one@example.com> 40 RCPT TO:<recipient.two@example.com> 41 RCPT TO:<recipient.three@example.com> 42 RCPT TO:<recipient.four@example.com> 43 RCPT TO:<recipient.five@example.com>
|
/external/python/cpython2/Lib/test/ |
D | test_array.py | 79 a.append(self.example[0]) 82 a = array.array(self.typecode, self.example) 83 self.assertEqual(len(a), len(self.example)) 86 a = array.array(self.typecode, self.example) 96 a = array.array(self.typecode, self.example) 99 b = array.array(self.typecode, self.example) 110 a = array.array(self.typecode, self.example) 117 a = array.array(self.typecode, self.example) 124 a = array.array(self.typecode, self.example) 129 a = ArraySubclass(self.typecode, self.example) [all …]
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/ |
D | TestExamples.txt | 5 //ldml/localeDisplayNames/languages/language[@type="(?:[^"_]*+_)%A"] ; example 7 …ateTimeFormats/intervalFormats/intervalFormatItem[@id="%A"]/greatestDifference[@id="%A"] ; example 10 …%A"]/dateFormats/dateFormatLength[@type="%A"]/dateFormat[@type="%A"]/pattern[@type="%A"] ; example 11 …lendars/calendar[@type="%A"]/dateTimeFormats/availableFormats/dateFormatItem[@id="%A"] ; example 12 …eFormats/dateTimeFormatLength[@type="%A"]/dateTimeFormat[@type="%A"]/pattern[@type="%A"] ; example 13 …%A"]/timeFormats/timeFormatLength[@type="%A"]/timeFormat[@type="%A"]/pattern[@type="%A"] ; example 14 //ldml/dates/timeZoneNames/fallbackFormat ; example 15 //ldml/dates/timeZoneNames/gmtFormat ; example 16 //ldml/dates/timeZoneNames/hourFormat ; example 17 //ldml/dates/timeZoneNames/metazone[@type="%A"]/long/daylight ; example [all …]
|
/external/tensorflow/tensorflow/core/util/ |
D | example_proto_fast_parsing_test.cc | 30 namespace example { namespace 51 string Serialize(const T& example) { in Serialize() argument 53 example.SerializeToString(&serialized); in Serialize() 60 Example example; in TestCorrectness() local 62 EXPECT_TRUE(example.ParseFromString(serialized)); in TestCorrectness() 63 example.DiscardUnknownFields(); in TestCorrectness() 65 EXPECT_EQ(example.DebugString(), fast_example.DebugString()); in TestCorrectness() 66 if (example.DebugString() != fast_example.DebugString()) { in TestCorrectness() 78 ExampleWithExtras example; in TEST() local 79 (*example.mutable_features()->mutable_feature())["age"] in TEST() [all …]
|
/external/libxml2/result/c14n/without-comments/ |
D | merlin-c14n-two-06 | 1 …example.org/" xmlns:bar="http://example.org/bar" xmlns:baz="http://example.org/baz" xmlns:foo="htt…
|
/external/python/cpython3/Lib/test/ |
D | test_array.py | 200 a.append(self.example[0]) 203 a = array.array(self.typecode, self.example) 204 self.assertEqual(len(a), len(self.example)) 207 a = array.array(self.typecode, self.example) 218 example = '\U00100100' 220 example = self.example 221 a = array.array(self.typecode, example) 224 b = array.array(self.typecode, example) 235 a = array.array(self.typecode, self.example) 242 a = array.array(self.typecode, self.example) [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 …lm,field,value) VALUES('example.com','spp_http_auth_url','https://subscription-server.osu.example.… 4 …INTO osu_config(realm,field,value) VALUES('example.com','trust_root_cert_url','https://osu-server.… 5 INSERT INTO osu_config(realm,field,value) VALUES('example.com','trust_root_cert_fingerprint','5b393… 6 …TO osu_config(realm,field,value) VALUES('example.com','aaa_trust_root_cert_url','https://osu-serve… 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 …(realm,field,value) VALUES('example.com','policy_url','https://subscription-server.osu.example.com… 10 …TO osu_config(realm,field,value) VALUES('example.com','remediation_url','https://subscription-serv… [all …]
|
/external/robolectric-shadows/shadowapi/src/test/java/org/robolectric/util/ |
D | ReflectionHelpersTest.java | 17 ExampleDescendant example = new ExampleDescendant(); in getFieldReflectively_getsPrivateFields() local 18 example.overridden = 5; in getFieldReflectively_getsPrivateFields() 19 assertThat((int) ReflectionHelpers.getField(example, "overridden")).isEqualTo(5); in getFieldReflectively_getsPrivateFields() 24 ExampleDescendant example = new ExampleDescendant(); in getFieldReflectively_getsInheritedFields() local 25 example.setNotOverridden(6); in getFieldReflectively_getsInheritedFields() 26 assertThat((int) ReflectionHelpers.getField(example, "notOverridden")).isEqualTo(6); in getFieldReflectively_getsInheritedFields() 31 ExampleDescendant example = new ExampleDescendant(); in getFieldReflectively_givesHelpfulExceptions() local 33 ReflectionHelpers.getField(example, "nonExistent"); in getFieldReflectively_givesHelpfulExceptions() 44 ExampleDescendant example = new ExampleDescendant(); in setFieldReflectively_setsPrivateFields() local 45 example.overridden = 5; in setFieldReflectively_setsPrivateFields() [all …]
|
/external/openssh/regress/unittests/hostkeys/testdata/ |
D | known_hosts | 2 sisyphus.example.com ssh-dss AAAAB3NzaC1kc3MAAACBAOqffHxEW4c+Z9q/r3l4sYK8F7qrBsU8XF9upGsW62T9InROFF… 3 sisyphus.example.com ecdsa-sha2-nistp384 AAAAE2VjZHNhLXNoYTItbmlzdHAzODQAAAAIbmlzdHAzODQAAABhBF6yQE… 4 sisyphus.example.com ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIK9ks7jkua5YWIwByRnnnc6UPJQWI75O0e/UJdPYU1… 5 sisyphus.example.com 1024 65537 1538954316036770739258903145485667049484467769583341952800850803299… 6 sisyphus.example.com ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQDg4hB4vAZHJ0PVRiJajOv/GlytFWNpv5/9xgB9+5… 9 prometheus.example.com,192.0.2.1,2001:db8::1 ssh-dss AAAAB3NzaC1kc3MAAACBAI38Hy/61/O5Bp6yUG8J5XQCeN… 10 prometheus.example.com,192.0.2.1,2001:db8::1 ecdsa-sha2-nistp521 AAAAE2VjZHNhLXNoYTItbmlzdHA1MjEAAA… 11 prometheus.example.com,192.0.2.1,2001:db8::1 ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIBp6PVW0z2o9C4Ukv… 12 prometheus.example.com,192.0.2.1,2001:db8::1 1024 65537 1359707150829474426396839695971807289333882… 13 prometheus.example.com,192.0.2.1,2001:db8::1 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQDmbUhNabB5AmBDX6… [all …]
|
/external/tensorflow/tensorflow/contrib/cloud/kernels/ |
D | bigquery_table_accessor_test.cc | 46 string DeterministicSerialization(const tensorflow::Example& example) { in DeterministicSerialization() argument 47 const std::size_t size = example.ByteSizeLong(); in DeterministicSerialization() 54 example.SerializeWithCachedSizes(&output_stream); in DeterministicSerialization() 203 Example example; in TEST_F() local 204 TF_EXPECT_OK(accessor_->ReadRow(&row_id, &example)); in TEST_F() 211 DeterministicSerialization(example)); in TEST_F() 234 Example example; in TEST_F() local 235 TF_EXPECT_OK(accessor_->ReadRow(&row_id, &example)); in TEST_F() 244 DeterministicSerialization(example)); in TEST_F() 264 Example example; in TEST_F() local [all …]
|
/external/flatbuffers/tests/ |
D | go_test.go | 21 example "MyGame/Example" // refers to generated code packageName 147 monster1 := example.GetRootAsMonster(buf, offset) 148 monster2 := &example.Monster{} 150 for _, monster := range []*example.Monster{monster1, monster2} { 164 if got := monster.Color(); example.ColorBlue != got { 165 fail(FailString("color", example.ColorBlue, got)) 173 vec := new(example.Vec3) 207 t := new(example.Test) 228 if got := monster.TestType(); example.AnyMonster != got { 229 fail(FailString("monster.TestType()", example.AnyMonster, got)) [all …]
|
/external/cmockery/cmockery_0_1_2/ |
D | Makefile.am | 52 calculator_SOURCES = src/example/calculator.c src/config.h 55 unit_test_CFLAGS = -Isrc/google -Isrc/example -DUNIT_TESTING=1 58 calculator_test_SOURCES = src/example/calculator_test.c \ 64 allocate_module_test_SOURCES = src/example/allocate_module_test.c \ 65 src/example/allocate_module.c 70 assert_macro_test_SOURCES = src/example/assert_macro_test.c \ 71 src/example/assert_macro.c 76 customer_database_test_SOURCES = src/example/customer_database_test.c \ 77 src/example/customer_database.c \ 78 src/example/database.h [all …]
|