/third_party/python/Lib/test/ |
D | test_array.py | 219 a.append(self.example[0]) 222 a = array.array(self.typecode, self.example) 223 self.assertEqual(len(a), len(self.example)) 226 a = array.array(self.typecode, self.example) 237 example = '\U00100100' 239 example = self.example 240 a = array.array(self.typecode, example) 243 b = array.array(self.typecode, example) 254 a = array.array(self.typecode, self.example) 261 a = array.array(self.typecode, self.example) [all …]
|
/third_party/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…
|
/third_party/rust/crates/clap/ |
D | Cargo.toml | 123 [[example]] 127 [[example]] 128 name = "cargo-example" 131 [[example]] 132 name = "cargo-example-derive" 135 [[example]] 139 [[example]] 143 [[example]] 147 [[example]] 151 [[example]] [all …]
|
/third_party/ejdb/src/bindings/ejdb2_flutter/ |
D | CMakeLists.txt | 44 COMMAND ${CMAKE_COMMAND} -E make_directory ${PUB_PUBLISH_DIR}/example 45 …E_COMMAND} -E copy_directory ${CMAKE_CURRENT_BINARY_DIR}/example/ios ${PUB_PUBLISH_DIR}/example/ios 47 COMMAND ${CMAKE_COMMAND} -E make_directory ${PUB_PUBLISH_DIR}/example/android 48 COMMAND ${CMAKE_COMMAND} -E make_directory ${PUB_PUBLISH_DIR}/example/android/app 49 …OMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/example/*.md ${PUB_PUBLISH_DIR}/example 50 …MAND ${CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/example/*.yaml ${PUB_PUBLISH_DIR}/example 51 …E_COMMAND} -E copy_directory ${CMAKE_CURRENT_BINARY_DIR}/example/lib ${PUB_PUBLISH_DIR}/example/lib 52 …MMAND} -E copy_directory ${CMAKE_CURRENT_BINARY_DIR}/example/test_driver ${PUB_PUBLISH_DIR}/exampl… 53 …CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/example/android/*.gradle ${PUB_PUBLISH_DIR}/exa… 54 …CMAKE_COMMAND} -E copy ${CMAKE_CURRENT_BINARY_DIR}/example/android/gradlew* ${PUB_PUBLISH_DIR}/exa… [all …]
|
/third_party/flatbuffers/tests/ |
D | go_test.go | 21 example "MyGame/Example" // refers to generated code packageName 164 var monster1 *example.Monster 165 monster2 := &example.Monster{} 168 monster1 = example.GetSizePrefixedRootAsMonster(buf, offset) 171 monster1 = example.GetRootAsMonster(buf, offset) 175 for _, monster := range []*example.Monster{monster1, monster2} { 189 if got := monster.Color(); example.ColorBlue != got { 190 fail(FailString("color", example.ColorBlue, got)) 198 vec := new(example.Vec3) 227 if got := vec.Test2(); example.ColorGreen != got { [all …]
|
/third_party/ffmpeg/doc/ |
D | git-howto.texi | 20 @example 23 @end example 27 @example 30 @end example 55 @example 57 @end example 61 @example 63 @end example 68 @example 70 @end example [all …]
|
/third_party/node/test/parallel/ |
D | test-fs-read-stream-throw-type-error.js | 10 const example = fixtures.path('x.txt'); constant 12 fs.createReadStream(example, undefined); 13 fs.createReadStream(example, null); 14 fs.createReadStream(example, 'utf8'); 15 fs.createReadStream(example, { encoding: 'utf8' }); 34 createReadStreamErr(example, opts, typeError) 39 fs.createReadStream(example, opts) 47 ].forEach((opts) => createReadStreamErr(example, opts, typeError)); 51 createReadStreamErr(example, opts, rangeError) 56 createReadStreamErr(example, opts, rangeError) [all …]
|
D | test-fs-write-stream-throw-type-error.js | 9 const example = path.join(tmpdir.path, 'dummy'); constant 13 fs.createWriteStream(example, undefined).end(); 14 fs.createWriteStream(example, null).end(); 15 fs.createWriteStream(example, 'utf8').end(); 16 fs.createWriteStream(example, { encoding: 'utf8' }).end(); 29 createWriteStreamErr(example, 123); 30 createWriteStreamErr(example, 0); 31 createWriteStreamErr(example, true); 32 createWriteStreamErr(example, false);
|
/third_party/typescript/tests/baselines/reference/ |
D | keyofModuleObjectHasCorrectKeys.symbols | 1 === tests/cases/compiler/example.ts === 3 >add : Symbol(add, Decl(example.ts, 0, 0)) 4 >a : Symbol(a, Decl(example.ts, 0, 28)) 5 >b : Symbol(b, Decl(example.ts, 0, 38)) 8 >a : Symbol(a, Decl(example.ts, 0, 28)) 9 >b : Symbol(b, Decl(example.ts, 0, 38)) 13 import * as example from './example'; 14 >example : Symbol(example, Decl(test.ts, 0, 6)) 24 test(example, "default"); 26 >example : Symbol(example, Decl(test.ts, 0, 6))
|
D | keyofModuleObjectHasCorrectKeys.types | 1 === tests/cases/compiler/example.ts === 14 import * as example from './example'; 15 >example : typeof example 22 test(example, "default"); 23 >test(example, "default") : void 25 >example : typeof example
|
D | constructorTagOnObjectLiteralMethod.symbols | 1 === tests/cases/conformance/jsdoc/example.js === 3 >obj : Symbol(obj, Decl(example.js, 0, 5)) 7 >Foo : Symbol(Foo, Decl(example.js, 0, 13)) 8 >this : Symbol(obj, Decl(example.js, 0, 11)) 9 >bar : Symbol(bar, Decl(example.js, 2, 9)) 13 >obj.Foo : Symbol(Foo, Decl(example.js, 0, 13)) 14 >obj : Symbol(obj, Decl(example.js, 0, 5)) 15 >Foo : Symbol(Foo, Decl(example.js, 0, 13))
|
/third_party/protobuf/examples/ |
D | CMakeLists.txt | 27 foreach(example add_person list_people) 28 set(${example}_SRCS ${example}.cc) 29 set(${example}_PROTOS addressbook.proto) 33 protobuf_generate_cpp(${example}_PROTO_SRCS ${example}_PROTO_HDRS ${${example}_PROTOS}) 34 list(APPEND ${example}_SRCS ${${example}_PROTO_SRCS} ${${example}_PROTO_HDRS}) 38 set(executable_name ${example}_cpp) 39 add_executable(${executable_name} ${${example}_SRCS} ${${example}_PROTOS})
|
/third_party/flatbuffers/tests/rust_usage_test/tests/ |
D | integration_test.rs | 125 use my_game::example::*; in object_api_defaults() 200 …let pos = my_game::example::Vec3::new(1.0, 2.0, 3.0, 3.0, my_game::example::Color::Green, &my_game… in create_serialized_example_with_generated_code() 202 let args = my_game::example::MonsterArgs{ in create_serialized_example_with_generated_code() 207 test_type: my_game::example::Any::Monster, in create_serialized_example_with_generated_code() 208 test: Some(my_game::example::Monster::create(builder, &my_game::example::MonsterArgs{ in create_serialized_example_with_generated_code() 213 test4: Some(builder.create_vector_direct(&[my_game::example::Test::new(10, 20), in create_serialized_example_with_generated_code() 214 my_game::example::Test::new(30, 40)])), in create_serialized_example_with_generated_code() 218 my_game::example::Monster::create(builder, &args) in create_serialized_example_with_generated_code() 220 my_game::example::finish_monster_buffer(builder, mon); in create_serialized_example_with_generated_code() 227 builder.push_slot_always(my_game::example::Monster::VT_NAME, name); in create_serialized_example_with_library_code() [all …]
|
/third_party/python/Lib/test/test_email/data/ |
D | msg_46.txt | 1 Return-Path: <sender@example.net> 3 Received: from example.org (example.org [64.5.53.58]) 4 by example.net (node=mxbap2) with ESMTP (Nemesis) 5 id UNIQUE for someone@example.com; Mon, 08 Feb 2010 14:05:16 +0100 7 From: "Sender" <sender@example.net> 8 To: <someone@example.com> 13 Return-path: <sender@example.net> 16 From: "Dr. Sender" <sender@example.net> 18 To: "Recipient" <recipient@example.com>
|
D | msg_39.txt | 6 Content-ID: <20592.1022586929.1@example.com> 10 Content-ID: <20592.1022586929.2@example.com> 14 Content-ID: <20592.1022586929.3@example.com> 22 Content-ID: <20592.1022586929.4@example.com> 32 Content-ID: <20592.1022586929.6@example.com> 36 Content-ID: <20592.1022586929.7@example.com> 44 Content-ID: <20592.1022586929.8@example.com> 54 Content-ID: <20592.1022586929.10@example.com> 58 Content-ID: <20592.1022586929.11@example.com> 66 Content-ID: <20592.1022586929.12@example.com> [all …]
|
/third_party/flatbuffers/tests/rust_usage_test/bin/ |
D | flatbuffers_alloc_check.rs | 63 let pos = my_game::example::Vec3::new( in create_serialized_example_with_generated_code() 68 my_game::example::Color::Green, in create_serialized_example_with_generated_code() 69 &my_game::example::Test::new(5i16, 6i8), in create_serialized_example_with_generated_code() 72 let args = my_game::example::MonsterArgs { in create_serialized_example_with_generated_code() 77 test_type: my_game::example::Any::Monster, in create_serialized_example_with_generated_code() 79 my_game::example::Monster::create( in create_serialized_example_with_generated_code() 81 &my_game::example::MonsterArgs { in create_serialized_example_with_generated_code() 90 my_game::example::Test::new(10, 20), in create_serialized_example_with_generated_code() 91 my_game::example::Test::new(30, 40), in create_serialized_example_with_generated_code() 96 my_game::example::Monster::create(builder, &args) in create_serialized_example_with_generated_code() [all …]
|
/third_party/flatbuffers/tests/rust_usage_test/benches/ |
D | flatbuffers_benchmarks.rs | 71 let t0 = my_game::example::Monster::create( in create_serialized_example_with_generated_code() 73 &my_game::example::MonsterArgs { in create_serialized_example_with_generated_code() 79 let t1 = my_game::example::Monster::create( in create_serialized_example_with_generated_code() 81 &my_game::example::MonsterArgs { in create_serialized_example_with_generated_code() 86 let t2 = my_game::example::Monster::create( in create_serialized_example_with_generated_code() 88 &my_game::example::MonsterArgs { in create_serialized_example_with_generated_code() 98 my_game::example::Test::new(10, 20), in create_serialized_example_with_generated_code() 99 my_game::example::Test::new(30, 40), in create_serialized_example_with_generated_code() 101 let pos = my_game::example::Vec3::new( in create_serialized_example_with_generated_code() 106 my_game::example::Color::Green, in create_serialized_example_with_generated_code() [all …]
|
/third_party/json/doc/mkdocs/docs/api/basic_json/ |
D | at.md | 42 in this case, calling `at` with an index makes no sense. See example below. 44 range of the array; that is, `idx >= size()`. See example below. 47 in this case, calling `at` with a key makes no sense. See example below. 49 stored in the object; that is, `find(key) == end()`. See example below. 52 JSON pointer `ptr` begins with '0'. See example below. 54 JSON pointer `ptr` is not a number. See example below. 56 JSON pointer `ptr` is out of range. See example below. 59 index '-' is always invalid. See example below. 61 key of an object which cannot be found. See example below. 63 not be resolved. See example below. [all …]
|
D | insert.md | 59 arrays; example: `"cannot use insert() with string"` 61 …iterator which does not belong to the current JSON value; example: `"iterator does not fit current… 64 arrays; example: `"cannot use insert() with string"` 66 …iterator which does not belong to the current JSON value; example: `"iterator does not fit current… 69 arrays; example: `"cannot use insert() with string"` 71 …iterator which does not belong to the current JSON value; example: `"iterator does not fit current… 73 do not belong to the same JSON value; example: `"iterators do not fit"` 75 …are iterators into container for which insert is called; example: `"passed iterators may not belon… 78 arrays; example: `"cannot use insert() with string"` 80 …iterator which does not belong to the current JSON value; example: `"iterator does not fit current… [all …]
|
/third_party/zlib/ |
D | huawei_zlib_CMakeList.patch | 45 -add_executable(example test/example.c) 46 -target_link_libraries(example zlib) 47 -add_test(example example) 48 +#add_executable(example test/example.c) 49 +#target_link_libraries(example zlib) 50 +#add_test(example example) 58 - add_executable(example64 test/example.c) 63 +# add_executable(example64 test/example.c)
|
/third_party/flutter/skia/third_party/externals/wuffs/ |
D | build-example.sh | 32 sources=example/* 45 $CXX -O3 example/$f/*.cc -o gen/bin/example-$f 52 $CC -O3 -static -I.. example/$f/*.c gen/lib/c/$CC-static/libwuffs.a -o gen/bin/example-$f 56 elif [ -e example/$f/*.c ]; then 58 $CC -O3 example/$f/*.c -o gen/bin/example-$f
|
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/ |
D | package_uri_mapper_test.dart | 16 example:file:///example/lib/ 22 example:org-dartlang-app:/ 38 …final PackageUriMapper packageUriMapper = PackageUriMapper('/example/lib/main.dart', '.packages', … 39 expect(packageUriMapper.map('/example/lib/main.dart').toString(), 40 'package:example/main.dart'); 46 …final PackageUriMapper packageUriMapper = PackageUriMapper('/example/lib/main.dart', '.packages', … 53 …final PackageUriMapper packageUriMapper = PackageUriMapper('/example/lib/main.dart', '.packages', … 54 expect(packageUriMapper.map('/example/lib/src/foo.dart').toString(), 55 'package:example/src/foo.dart'); 68 '/example/lib/main.dart', [all …]
|
/third_party/rust/crates/clap/examples/ |
D | cargo-example.md | 8 $ cargo-example --help 12 example A simple to use, efficient, and full-featured Command Line Argument Parser 18 $ cargo-example example --help 21 Usage: cargo example [OPTIONS] 32 $ cargo-example example 35 $ cargo-example example --manifest-path Cargo.toml
|
/third_party/skia/tools/fiddle/ |
D | examples.cpp | 26 for (const fiddle::Example& example : sk_tools::Registry<fiddle::Example>::Range()) { in main() local 27 SkASSERT((unsigned)example.fImageIndex < (unsigned)kImgCount); in main() 28 image = images[example.fImageIndex]; in main() 29 source = bitmaps[example.fImageIndex]; in main() 31 bmp.allocN32Pixels(example.fWidth, example.fHeight); in main() 34 SkDebugf("==> %s\n", example.fName); in main() 35 example.fFunc(&canvas); in main()
|
/third_party/libxml2/result/VC/ |
D | NS3.rdr | 1 …lidity error : Value for attribute xmlns of foo is different from default "http://example.com/fooo" 2 xmlns="http://example.com/foo" xmlns:foo="http://example.com/fo" foo:info="toto" 4 …9: element foo: validity error : Value for attribute xmlns of foo must be "http://example.com/fooo" 5 xmlns="http://example.com/foo" xmlns:foo="http://example.com/fo" foo:info="toto" 8 mlns="http://example.com/foo" xmlns:foo="http://example.com/fo" foo:info="toto"/
|