Home
last modified time | relevance | path

Searched defs:Element (Results 1 – 25 of 116) sorted by relevance

12345

/third_party/rust/rust/tests/ui/resolve/
Dissue-85671.rs5 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/
Dissue-11740.rs10 struct Element { struct
14 impl Element { argument
Dissue-39970.rs2 type Element: 'a; typedef
10 type Element = &'a (); typedef
/third_party/mesa3d/src/intel/genxml/
Dintel_genxml.py23 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/
Dtiny_list.rs62 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/
Dted.rs16 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/
Djson_object_loader.h457 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/
DSkClipStack.h69 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/
DSkClipStack.h69 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/
DExecutionUtils.h65 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/
Dunescaped_backticks.rs232 struct Element { struct
247 impl Element { implementation
/third_party/rust/rust/tests/ui/async-await/
Ddrop-track-field-assign.rs28 struct Element { struct
31 async fn send_element(_: Element) {} in send_element()
37 fn parse_info(_: InfoResult) -> Element { in parse_info()
Dfield-assign.rs28 struct Element { struct
31 async fn send_element(_: Element) {} in send_element()
37 fn parse_info(_: InfoResult) -> Element { in parse_info()
Ddrop-track-field-assign-nonsend.rs27 struct Element { struct
30 async fn send_element(_: Element) {} in send_element()
36 fn parse_info(_: InfoResult) -> Element { in parse_info()
Dfield-assign-nonsend.rs27 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/
Dissue-83765.rs23 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/
Dvec.rs20 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/
DRangeValueIterator.java59 public class Element class
83 public Element() in Element() method in RangeValueIterator.Element
DValueIterator.java45 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/
DRangeValueIterator.java60 public class Element class
88 public Element() in Element() method in RangeValueIterator.Element
DValueIterator.java46 public static final class Element class
67 public Element() in Element() method in ValueIterator.Element
/third_party/rust/rust/tests/ui/codegen/
Dmono-impossible-2.rs12 type Element; typedef
18 type Element = (); typedef
/third_party/rust/rust/tests/ui/associated-types/
Dissue-44153.rs2 type Element; typedef
10 type Element = (); typedef
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
DShaderCore.hpp166 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/
DClipStack.h53 struct Element { struct
77 class ElementIter; argument
79 // The iterator provides items as "const Element&". argument

12345