| /third_party/rust/rust/tests/ui/resolve/ |
| D | issue-85671.rs | 5 type Element; typedef 6 fn as_slice(&self) -> &[Self::Element]; in as_slice() 14 type Element = Element; typedef 15 fn as_slice(&self) -> &[Self::Element] { in as_slice() 24 Self: AsSlice<Element = Coef>, in failing() 29 pub fn as_ref_a<Coef>(&self) -> A<&[<Self as AsSlice>::Element]> in as_ref_a()
|
| /third_party/rust/rust/tests/ui/issues/ |
| D | issue-11740.rs | 10 struct Element { struct 14 impl Element { argument
|
| D | issue-39970.rs | 2 type Element: 'a; typedef 10 type Element = &'a (); typedef
|
| /third_party/mesa3d/src/intel/genxml/ |
| D | intel_genxml.py | 23 def get_filename(element: et.Element) -> str: 26 def get_name(element: et.Element) -> str: 29 def get_value(element: et.Element) -> int: 32 def get_start(element: et.Element) -> int: 52 def add_struct_refs(items: typing.OrderedDict[str, bool], node: et.Element) -> None: 65 def __init__(self, xml: et.Element): 77 def add_xml(self, items: typing.OrderedDict[str, et.Element]) -> None: 98 def node_validator(old: et.Element, new: et.Element) -> bool: 122 def process_attribs(elem: et.Element) -> None:
|
| /third_party/rust/rust/compiler/rustc_data_structures/src/ |
| D | tiny_list.rs | 62 struct Element<T> { struct 64 next: Option<Box<Element<T>>>, argument 67 impl<T: PartialEq> Element<T> { implementation
|
| /third_party/rust/rust/src/tools/rust-analyzer/crates/syntax/src/ |
| D | ted.rs | 16 pub trait Element { trait 20 impl<E: Element + Clone> Element for &'_ E { impl 79 pub fn insert(position: Position, elem: impl Element) { in insert() 82 pub fn insert_raw(position: Position, elem: impl Element) { in insert_raw() 106 pub fn remove(elem: impl Element) { in remove() 127 pub fn replace(old: impl Element, new: impl Element) { in replace() 130 pub fn replace_with_many(old: impl Element, new: Vec<SyntaxElement>) { in replace_with_many() 141 pub fn append_child(node: &(impl Into<SyntaxNode> + Clone), child: impl Element) { in append_child() 145 pub fn append_child_raw(node: &(impl Into<SyntaxNode> + Clone), child: impl Element) { in append_child_raw()
|
| /third_party/grpc/src/core/util/json/ |
| D | json_object_loader.h | 457 struct Element { struct 460 Element(const char* name, bool optional, B A::* p, in Element() function 469 const LoaderInterface* loader; 471 uint16_t member_offset; 473 bool optional; 475 const char* name; 477 const char* enable_key; 516 explicit FinishedJsonObjectLoader(const Vec<Element, kElemCount>& elements) in FinishedJsonObjectLoader() 534 explicit FinishedJsonObjectLoader(const Vec<Element, kElemCount>& elements) in FinishedJsonObjectLoader() 577 JsonObjectLoader(const Vec<Element, kElemCount - 1>& elements, in JsonObjectLoader()
|
| /third_party/skia/src/core/ |
| D | SkClipStack.h | 69 Element() { in Element() function 76 Element(const SkRect& rect, const SkMatrix& m, SkClipOp op, bool doAA) { in Element() function 80 Element(const SkRRect& rrect, const SkMatrix& m, SkClipOp op, bool doAA) { in Element() function 84 Element(const SkPath& path, const SkMatrix& m, SkClipOp op, bool doAA) { in Element() function 88 Element(sk_sp<SkShader> shader) { in Element() function 92 Element(const SkRect& rect, bool doAA) { in Element() function 244 Element(int saveCount) { in Element() function 249 Element(int saveCount, const SkRRect& rrect, const SkMatrix& m, SkClipOp op, bool doAA) { in Element() function 253 Element(int saveCount, const SkRect& rect, const SkMatrix& m, SkClipOp op, bool doAA) { in Element() function 257 Element(int saveCount, const SkPath& path, const SkMatrix& m, SkClipOp op, bool doAA) { in Element() function [all …]
|
| /third_party/skia/m133/src/core/ |
| D | SkClipStack.h | 69 Element() { in Element() function 76 Element(const SkRect& rect, const SkMatrix& m, SkClipOp op, bool doAA) { in Element() function 80 Element(const SkRRect& rrect, const SkMatrix& m, SkClipOp op, bool doAA) { in Element() function 84 Element(const SkPath& path, const SkMatrix& m, SkClipOp op, bool doAA) { in Element() function 88 Element(sk_sp<SkShader> shader) { in Element() function 92 Element(const SkRect& rect, bool doAA) { in Element() function 222 Element(int saveCount) { in Element() function 227 Element(int saveCount, const SkRRect& rrect, const SkMatrix& m, SkClipOp op, bool doAA) { in Element() function 231 Element(int saveCount, const SkRect& rect, const SkMatrix& m, SkClipOp op, bool doAA) { in Element() function 235 Element(int saveCount, const SkPath& path, const SkMatrix& m, SkClipOp op, bool doAA) { in Element() function [all …]
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/ |
| D | ExecutionUtils.h | 65 struct Element { struct 66 Element(unsigned Priority, Function *Func, Value *Data) in Element() function 92 Element operator*() const; argument
|
| /third_party/rust/rust/src/librustdoc/passes/lint/ |
| D | unescaped_backticks.rs | 232 struct Element { struct 247 impl Element { implementation
|
| /third_party/rust/rust/tests/ui/async-await/ |
| D | drop-track-field-assign.rs | 28 struct Element { struct 31 async fn send_element(_: Element) {} in send_element() 37 fn parse_info(_: InfoResult) -> Element { in parse_info()
|
| D | field-assign.rs | 28 struct Element { struct 31 async fn send_element(_: Element) {} in send_element() 37 fn parse_info(_: InfoResult) -> Element { in parse_info()
|
| D | drop-track-field-assign-nonsend.rs | 27 struct Element { struct 30 async fn send_element(_: Element) {} in send_element() 36 fn parse_info(_: InfoResult) -> Element { in parse_info()
|
| D | field-assign-nonsend.rs | 27 struct Element { struct 30 async fn send_element(_: Element) {} in send_element() 36 fn parse_info(_: InfoResult) -> Element { in parse_info()
|
| /third_party/rust/rust/tests/ui/const-generics/issues/ |
| D | issue-83765.rs | 23 type Element; typedef 24 fn bget(&self, index: [usize; Self::DIM]) -> Option<Self::Element>; in bget() 56 type Element = T::Element; typedef 57 fn bget(&self, index: [usize; DIM]) -> Option<Self::Element> { in bget() 89 type Element = R; typedef 90 fn bget(&self, index: [usize; DIM]) -> Option<Self::Element> { in bget() 104 type Element = T; typedef
|
| /third_party/rust/crates/cxx/gen/build/src/ |
| D | vec.rs | 20 pub fn intern<T>(elements: &[&T]) -> Vec<InternedString> in intern() 27 pub trait Element { trait
|
| /third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/ |
| D | RangeValueIterator.java | 59 public class Element class 83 public Element() in Element() method in RangeValueIterator.Element
|
| D | ValueIterator.java | 45 public static final class Element class 63 public Element() in Element() method in ValueIterator.Element
|
| /third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
| D | RangeValueIterator.java | 60 public class Element class 88 public Element() in Element() method in RangeValueIterator.Element
|
| D | ValueIterator.java | 46 public static final class Element class 67 public Element() in Element() method in ValueIterator.Element
|
| /third_party/rust/rust/tests/ui/codegen/ |
| D | mono-impossible-2.rs | 12 type Element; typedef 18 type Element = (); typedef
|
| /third_party/rust/rust/tests/ui/associated-types/ |
| D | issue-44153.rs | 2 type Element; typedef 10 type Element = (); typedef
|
| /third_party/skia/third_party/externals/swiftshader/src/Pipeline/ |
| D | ShaderCore.hpp | 166 struct Element struct 169 struct Element<Float> struct 171 using type = rr::Float; 174 struct Element<Int> struct 176 using type = rr::Int; 179 struct Element<UInt> struct 181 using type = rr::UInt;
|
| /third_party/skia/m133/src/gpu/ganesh/ |
| D | ClipStack.h | 53 struct Element { struct 77 class ElementIter; argument 79 // The iterator provides items as "const Element&". argument
|