| /third_party/rust/crates/syn/src/gen/ |
| D | clone.rs | 7 #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 8 impl Clone for Abi { 9 fn clone(&self) -> Self { in clone() method 11 extern_token: self.extern_token.clone(), in clone() 12 name: self.name.clone(), in clone() 17 #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 18 impl Clone for AngleBracketedGenericArguments { 19 fn clone(&self) -> Self { in clone() method 21 colon2_token: self.colon2_token.clone(), in clone() 22 lt_token: self.lt_token.clone(), in clone() [all …]
|
| /third_party/typescript/tests/verify_3rd_libs/ |
| D | clone_all_libs.bat | 3 git clone https://gitee.com/openharmony-sig/material-dialogs 4 git clone https://gitee.com/openharmony-sig/arangojs 5 git clone https://gitee.com/openharmony-sig/axios 6 git clone https://gitee.com/openharmony-sig/brotli 7 git clone https://gitee.com/openharmony-sig/crypto-js 8 git clone https://gitee.com/openharmony-sig/dataORM 9 git clone https://gitee.com/openharmony-sig/fileio-extra 10 git clone https://gitee.com/openharmony-sig/ijkplayer 11 git clone https://gitee.com/openharmony-sig/ImageViewZoom 12 git clone https://gitee.com/openharmony-sig/is-png [all …]
|
| /third_party/typescript/tests/baselines/reference/ |
| D | emitClassMergedWithConstNamespaceNotElided.symbols | 2 export namespace Clone { 3 >Clone : Symbol(Clone, Decl(enum.d.ts, 0, 0), Decl(enum.d.ts, 7, 1)) 22 export class Clone { 23 >Clone : Symbol(Clone, Decl(enum.d.ts, 0, 0), Decl(enum.d.ts, 7, 1)) 25 static clone(url: string): void; 26 >clone : Symbol(Clone.clone, Decl(enum.d.ts, 9, 20)) 30 import {Clone} from "./enum"; 31 >Clone : Symbol(Clone, Decl(usage.ts, 0, 8)) 33 Clone.clone("ok"); 34 >Clone.clone : Symbol(Clone.clone, Decl(enum.d.ts, 9, 20)) [all …]
|
| D | emitClassMergedWithConstNamespaceNotElided.types | 2 export namespace Clone { 24 export class Clone { 25 >Clone : Clone 27 static clone(url: string): void; 28 >clone : (url: string) => void 32 import {Clone} from "./enum"; 33 >Clone : typeof Clone 35 Clone.clone("ok"); 36 >Clone.clone("ok") : void 37 >Clone.clone : (url: string) => void [all …]
|
| D | genericCloneReturnTypes2.types | 32 public clone() { 33 >clone : () => MyList<T> 46 var b: MyList<any> = a.clone(); // ok 48 >a.clone() : MyList<string> 49 >a.clone : () => MyList<string> 51 >clone : () => MyList<string> 53 var c: MyList<string> = a.clone(); // bug was there was an error on this line 55 >a.clone() : MyList<string> 56 >a.clone : () => MyList<string> 58 >clone : () => MyList<string> [all …]
|
| D | genericCloneReturnTypes2.symbols | 32 public clone() { 33 >clone : Symbol(MyList.clone, Decl(genericCloneReturnTypes2.ts, 6, 5)) 47 var b: MyList<any> = a.clone(); // ok 50 >a.clone : Symbol(MyList.clone, Decl(genericCloneReturnTypes2.ts, 6, 5)) 52 >clone : Symbol(MyList.clone, Decl(genericCloneReturnTypes2.ts, 6, 5)) 54 var c: MyList<string> = a.clone(); // bug was there was an error on this line 57 >a.clone : Symbol(MyList.clone, Decl(genericCloneReturnTypes2.ts, 6, 5)) 59 >clone : Symbol(MyList.clone, Decl(genericCloneReturnTypes2.ts, 6, 5)) 61 var d: MyList<number> = a.clone(); // error 64 >a.clone : Symbol(MyList.clone, Decl(genericCloneReturnTypes2.ts, 6, 5)) [all …]
|
| /third_party/mesa3d/src/compiler/glsl/ |
| D | ir_clone.cpp | 31 ir_rvalue::clone(void *mem_ctx, struct hash_table *) const in clone() function in ir_rvalue 41 ir_variable::clone(void *mem_ctx, struct hash_table *ht) const in clone() function in ir_variable 63 var->constant_value = this->constant_value->clone(mem_ctx, ht); in clone() 67 this->constant_initializer->clone(mem_ctx, ht); in clone() 78 ir_swizzle::clone(void *mem_ctx, struct hash_table *ht) const in clone() function in ir_swizzle 80 return new(mem_ctx) ir_swizzle(this->val->clone(mem_ctx, ht), this->mask); in clone() 84 ir_return::clone(void *mem_ctx, struct hash_table *ht) const in clone() function in ir_return 89 new_value = this->value->clone(mem_ctx, ht); in clone() 95 ir_discard::clone(void *mem_ctx, struct hash_table *ht) const in clone() function in ir_discard 100 new_condition = this->condition->clone(mem_ctx, ht); in clone() [all …]
|
| /third_party/vk-gl-cts/external/vulkan-docs/src/images/ |
| D | tile_image.svg | 61 inkscape:tiled-clone-of="#use10638-0" 68 inkscape:tiled-clone-of="#use10638-0" 76 inkscape:tiled-clone-of="#use10638-0" 84 inkscape:tiled-clone-of="#use10638-0" 92 inkscape:tiled-clone-of="#use10638-0" 100 inkscape:tiled-clone-of="#use10638-0" 108 inkscape:tiled-clone-of="#use10638-0" 116 inkscape:tiled-clone-of="#use10638-0" 124 inkscape:tiled-clone-of="#use10638-0" 132 inkscape:tiled-clone-of="#use10638-0" [all …]
|
| /third_party/skia/third_party/externals/tint/src/ |
| D | clone_context.h | 48 /// Performs a deep clone of this object using the CloneContext `ctx`. 49 /// @param ctx the clone context 51 virtual const Cloneable* Clone(CloneContext* ctx) const = 0; 74 /// @param to the target ProgramBuilder to clone into 75 /// @param from the source Program to clone from 76 /// @param auto_clone_symbols clone all symbols in `from` before returning 89 /// not null. If `a` is null, then Clone() returns null. 91 /// Clone() may use a function registered with ReplaceAll() to create a 97 /// @param object the type deriving from Cloneable to clone 100 const T* Clone(const T* object) { in Clone() function [all …]
|
| /third_party/typescript/tests/baselines/reference/user/ |
| D | clone.log | 3 node_modules/clone/clone.js(167,16): error TS2403: Subsequent variable declarations must have the s… 4 node_modules/clone/clone.js(167,23): error TS2365: Operator '<' cannot be applied to types 'string'… 5 node_modules/clone/clone.js(167,43): error TS2356: An arithmetic operand must be of type 'any', 'nu… 6 node_modules/clone/clone.js(176,14): error TS2532: Object is possibly 'undefined'. 7 node_modules/clone/clone.js(186,16): error TS2403: Subsequent variable declarations must have the s… 8 node_modules/clone/clone.js(186,23): error TS2365: Operator '<' cannot be applied to types 'string'… 9 node_modules/clone/clone.js(186,52): error TS2356: An arithmetic operand must be of type 'any', 'nu…
|
| /third_party/rust/crates/clap/tests/builder/ |
| D | action.rs | 13 let matches = cmd.clone().try_get_matches_from(["test"]).unwrap(); in set() 19 .clone() in set() 27 .clone() in set() 33 .clone() in set() 46 let matches = cmd.clone().try_get_matches_from(["test"]).unwrap(); in append() 52 .clone() in append() 63 .clone() in append() 86 let matches = cmd.clone().try_get_matches_from(["test"]).unwrap(); in set_true() 92 .clone() in set_true() 100 .clone() in set_true() [all …]
|
| /third_party/lame/ACM/tinyxml/ |
| D | tinyxml.cpp | 143 TiXmlNode* node = addThis.Clone(); in InsertEndChild() 156 TiXmlNode* node = addThis.Clone(); in InsertBeforeChild() 174 TiXmlNode* node = addThis.Clone(); in InsertAfterChild() 192 TiXmlNode* node = withThis.Clone(); in ReplaceChild() 559 TiXmlNode* TiXmlElement::Clone() const in Clone() function in TiXmlElement 561 TiXmlElement* clone = new TiXmlElement( Value() ); in Clone() local 563 if ( !clone ) in Clone() 566 CopyToClone( clone ); in Clone() 568 // Clone the attributes, then clone the children. in Clone() 574 clone->SetAttribute( attribute->Name(), attribute->Value() ); in Clone() [all …]
|
| /third_party/ltp/runtest/ |
| D | containers | 19 mqns_01_clone mqns_01 -m clone 22 mqns_02_clone mqns_02 -m clone 25 mqns_03_clone mqns_03 -m clone 27 mqns_04_clone mqns_04 -m clone 49 shmnstest_clone shmnstest -m clone 52 shmem_2nstest_clone shmem_2nstest -m clone 56 mesgq_nstest_clone mesgq_nstest -m clone 60 sem_nstest_clone sem_nstest -m clone 63 semtest_2ns_clone semtest_2ns -m clone 69 utsname03_clone utsname03 -m clone [all …]
|
| /third_party/rust/crates/codespan/codespan-reporting/src/term/ |
| D | config.rs | 6 #[derive(Clone, Debug)] 44 #[derive(Clone, Debug)] 82 #[derive(Clone, Debug)] 159 let header = ColorSpec::new().set_bold(true).set_intense(true).clone(); in with_blue() 162 header_bug: header.clone().set_fg(Some(Color::Red)).clone(), in with_blue() 163 header_error: header.clone().set_fg(Some(Color::Red)).clone(), in with_blue() 164 header_warning: header.clone().set_fg(Some(Color::Yellow)).clone(), in with_blue() 165 header_note: header.clone().set_fg(Some(Color::Green)).clone(), in with_blue() 166 header_help: header.clone().set_fg(Some(Color::Cyan)).clone(), in with_blue() 169 primary_label_bug: ColorSpec::new().set_fg(Some(Color::Red)).clone(), in with_blue() [all …]
|
| /third_party/node/deps/npm/node_modules/clone/ |
| D | clone.js | 1 var clone = (function() { function 9 * by calling clone(obj, false). 22 function clone(parent, circular, depth, prototype) { function 58 if (clone.__isArray(parent)) { 60 } else if (clone.__isRegExp(parent)) { 63 } else if (clone.__isDate(parent)) { 115 * Simple flat clone using prototype, accepts only objects, usefull for property 121 clone.clonePrototype = function clonePrototype(parent) { 135 clone.__objToStr = __objToStr; 140 clone.__isDate = __isDate; [all …]
|
| /third_party/rust/crates/linux-raw-sys/src/powerpc64/ |
| D | netlink.rs | 242 #[derive(Copy, Clone)] 247 #[derive(Copy, Clone)] 253 #[derive(Debug, Copy, Clone)] 268 #[derive(Debug, Copy, Clone)] 273 #[derive(Debug, Copy, Clone)] 299 #[derive(Debug, Copy, Clone)] 324 #[derive(Debug, Copy, Clone)] 332 #[derive(Debug, Copy, Clone)] 341 #[derive(Debug, Copy, Clone)] 351 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] [all …]
|
| /third_party/rust/crates/linux-raw-sys/src/powerpc/ |
| D | netlink.rs | 242 #[derive(Copy, Clone)] 247 #[derive(Copy, Clone)] 253 #[derive(Debug, Copy, Clone)] 268 #[derive(Debug, Copy, Clone)] 273 #[derive(Debug, Copy, Clone)] 299 #[derive(Debug, Copy, Clone)] 324 #[derive(Debug, Copy, Clone)] 332 #[derive(Debug, Copy, Clone)] 341 #[derive(Debug, Copy, Clone)] 351 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] [all …]
|
| /third_party/rust/crates/linux-raw-sys/src/s390x/ |
| D | netlink.rs | 242 #[derive(Copy, Clone)] 247 #[derive(Copy, Clone)] 253 #[derive(Debug, Copy, Clone)] 269 #[derive(Debug, Copy, Clone)] 274 #[derive(Debug, Copy, Clone)] 301 #[derive(Debug, Copy, Clone)] 326 #[derive(Debug, Copy, Clone)] 334 #[derive(Debug, Copy, Clone)] 343 #[derive(Debug, Copy, Clone)] 353 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] [all …]
|
| /third_party/rust/crates/linux-raw-sys/src/sparc64/ |
| D | netlink.rs | 242 #[derive(Copy, Clone)] 247 #[derive(Copy, Clone)] 253 #[derive(Debug, Copy, Clone)] 267 #[derive(Debug, Copy, Clone)] 280 #[derive(Debug, Copy, Clone)] 299 #[derive(Debug, Copy, Clone)] 324 #[derive(Debug, Copy, Clone)] 332 #[derive(Debug, Copy, Clone)] 341 #[derive(Debug, Copy, Clone)] 351 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] [all …]
|
| /third_party/rust/crates/linux-raw-sys/src/sparc/ |
| D | netlink.rs | 242 #[derive(Copy, Clone)] 247 #[derive(Copy, Clone)] 253 #[derive(Debug, Copy, Clone)] 267 #[derive(Debug, Copy, Clone)] 293 #[derive(Debug, Copy, Clone)] 318 #[derive(Debug, Copy, Clone)] 326 #[derive(Debug, Copy, Clone)] 335 #[derive(Debug, Copy, Clone)] 345 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] 355 #[derive(Debug, Copy, Clone)] [all …]
|
| /third_party/rust/crates/linux-raw-sys/src/aarch64/ |
| D | netlink.rs | 242 #[derive(Copy, Clone)] 247 #[derive(Copy, Clone)] 253 #[derive(Debug, Copy, Clone)] 267 #[derive(Debug, Copy, Clone)] 293 #[derive(Debug, Copy, Clone)] 318 #[derive(Debug, Copy, Clone)] 326 #[derive(Debug, Copy, Clone)] 335 #[derive(Debug, Copy, Clone)] 345 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] 355 #[derive(Debug, Copy, Clone)] [all …]
|
| /third_party/rust/crates/linux-raw-sys/src/mips/ |
| D | netlink.rs | 251 #[derive(Copy, Clone)] 256 #[derive(Copy, Clone)] 262 #[derive(Debug, Copy, Clone)] 276 #[derive(Debug, Copy, Clone)] 302 #[derive(Debug, Copy, Clone)] 327 #[derive(Debug, Copy, Clone)] 335 #[derive(Debug, Copy, Clone)] 344 #[derive(Debug, Copy, Clone)] 354 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] 364 #[derive(Debug, Copy, Clone)] [all …]
|
| /third_party/rust/crates/linux-raw-sys/src/x86_64/ |
| D | netlink.rs | 242 #[derive(Copy, Clone)] 247 #[derive(Copy, Clone)] 253 #[derive(Debug, Copy, Clone)] 267 #[derive(Debug, Copy, Clone)] 293 #[derive(Debug, Copy, Clone)] 318 #[derive(Debug, Copy, Clone)] 326 #[derive(Debug, Copy, Clone)] 335 #[derive(Debug, Copy, Clone)] 345 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] 355 #[derive(Debug, Copy, Clone)] [all …]
|
| /third_party/rust/crates/linux-raw-sys/src/riscv32/ |
| D | netlink.rs | 241 #[derive(Copy, Clone)] 246 #[derive(Copy, Clone)] 252 #[derive(Debug, Copy, Clone)] 266 #[derive(Debug, Copy, Clone)] 292 #[derive(Debug, Copy, Clone)] 317 #[derive(Debug, Copy, Clone)] 325 #[derive(Debug, Copy, Clone)] 334 #[derive(Debug, Copy, Clone)] 344 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] 354 #[derive(Debug, Copy, Clone)] [all …]
|
| /third_party/rust/crates/linux-raw-sys/src/x32/ |
| D | netlink.rs | 242 #[derive(Copy, Clone)] 247 #[derive(Copy, Clone)] 253 #[derive(Debug, Copy, Clone)] 267 #[derive(Debug, Copy, Clone)] 293 #[derive(Debug, Copy, Clone)] 318 #[derive(Debug, Copy, Clone)] 326 #[derive(Debug, Copy, Clone)] 335 #[derive(Debug, Copy, Clone)] 345 #[derive(Debug, Copy, Clone, Hash, PartialEq, Eq)] 355 #[derive(Debug, Copy, Clone)] [all …]
|