Home
last modified time | relevance | path

Searched defs:Cursor (Results 1 – 25 of 60) sorted by relevance

123

/third_party/skia/third_party/externals/swiftshader/src/Main/
DFrameBuffer.hpp77 struct Cursor struct in sw::FrameBuffer
79 void *image;
80 int x;
81 int y;
82 int width;
83 int height;
84 int hotspotX;
85 int hotspotY;
86 int positionX;
87 int positionY;
/third_party/rust/rust/compiler/rustc_lexer/src/
Dcursor.rs7 pub struct Cursor<'a> { struct
17 impl<'a> Cursor<'a> { argument
/third_party/rust/crates/proc-macro2/src/
Dparse.rs10 pub(crate) struct Cursor<'a> { struct
16 impl<'a> Cursor<'a> { implementation
77 fn skip_whitespace(input: Cursor) -> Cursor { in skip_whitespace()
157 fn word_break(input: Cursor) -> Result<Cursor, Reject> { in word_break()
343 fn literal_nocapture(input: Cursor) -> Result<Cursor, Reject> { in literal_nocapture()
363 fn literal_suffix(input: Cursor) -> Cursor { in literal_suffix()
370 fn string(input: Cursor) -> Result<Cursor, Reject> { in string()
380 fn cooked_string(mut input: Cursor) -> Result<Cursor, Reject> { in cooked_string()
414 fn raw_string(input: Cursor) -> Result<Cursor, Reject> { in raw_string()
433 fn byte_string(input: Cursor) -> Result<Cursor, Reject> { in byte_string()
[all …]
/third_party/rust/crates/syn/src/
Dbuffer.rs77 pub fn begin(&self) -> Cursor { in begin()
91 pub struct Cursor<'a> { struct
95 // point at. All other `End` objects are skipped over in `Cursor::create`. argument
97 // Cursor is covariant in 'a. This field ensures that our pointers are still argument
102 impl<'a> Cursor<'a> { argument
373 impl<'a> Copy for Cursor<'a> {} implementation
375 impl<'a> Clone for Cursor<'a> { implementation
381 impl<'a> Eq for Cursor<'a> {} implementation
383 impl<'a> PartialEq for Cursor<'a> { implementation
389 impl<'a> PartialOrd for Cursor<'a> { implementation
[all …]
/third_party/rust/rust/library/std/src/io/
Dcursor.rs74 pub struct Cursor<T> { struct
79 impl<T> Cursor<T> { argument
207 impl<T> Cursor<T> implementation
264 impl<T> Clone for Cursor<T> implementation
281 impl<T> io::Seek for Cursor<T> implementation
316 impl<T> Read for Cursor<T> implementation
361 impl<T> BufRead for Cursor<T> implementation
523 impl Write for Cursor<&mut [u8]> { implementation
546 impl<A> Write for Cursor<&mut Vec<u8, A>> implementation
570 impl<A> Write for Cursor<Vec<u8, A>> implementation
[all …]
/third_party/rust/rust/tests/ui/generic-associated-types/
Dissue-91883.rs14 pub trait Cursor<'txn> {} trait
17 type Cursor<'tx>: Cursor<'tx> typedef
30 type Cursor<'tx> = CursorImpl<'tx>; //~ ERROR lifetime bound not satisfied typedef
Dissue-70303.rs4 type Cursor<'a>: DocCursor<'a> where Self: 'a; typedef
12 type Cursor<'a> = DocCursorImpl<'a>; typedef
Dissue-70304.rs2 type Cursor<'a>: DocCursor<'a>; typedef
11 type Cursor<'a> = DocCursorImpl<'a>; typedef
/third_party/rust/rust/tests/ui/associated-inherent-types/
Dregionck-2.rs9 type Cursor = (); typedef
12 fn test(_: Lexer::Cursor) {} //~ ERROR mismatched types in test()
Dissue-109299.rs7 type Cursor = (); typedef
10 fn test(_: Lexer::Cursor) {} in test()
Dissue-109299-1.rs7 type Cursor = (); typedef
/third_party/rust/rust/src/tools/rust-analyzer/crates/tt/src/
Dbuffer.rs151 pub struct Cursor<'a, Span> { struct
156 impl<'a, Span> PartialEq for Cursor<'a, Span> { argument
162 impl<'a, Span> Eq for Cursor<'a, Span> {} implementation
164 impl<'a, Span> Cursor<'a, Span> { implementation
/third_party/rust/rust/tests/ui/mir/mir-inlining/
Dice-issue-77306-2.rs4 struct Cursor {} struct
7 impl Iterator for Cursor { implementation
/third_party/rust/rust/tests/ui/methods/
Dmethod-early-bound-lifetimes-on-self.rs11 struct Cursor<'a> { struct
16 fn init_cursor<'a, 'b:'a>(&'a self, cursor: &mut Cursor<'b>) -> bool; in init_cursor() argument
/third_party/rust/rust/src/tools/rustfmt/tests/source/configs/indent_style/
Dblock_call.rs90 impl Cursor { impl
/third_party/rust/rust/src/tools/rustfmt/tests/target/configs/indent_style/
Dblock_call.rs108 impl Cursor { impl
/third_party/rust/crates/bindgen/bindgen/
Dclang.rs58 pub(crate) struct Cursor { struct
59 x: CXCursor, argument
62 impl fmt::Debug for Cursor { implementation
75 impl Cursor { implementation
161 pub(crate) fn lexical_parent(&self) -> Cursor { in lexical_parent()
173 pub(crate) fn fallible_semantic_parent(&self) -> Option<Cursor> { in fallible_semantic_parent()
189 pub(crate) fn semantic_parent(&self) -> Cursor { in semantic_parent()
233 pub(crate) fn translation_unit(&self) -> Cursor { in translation_unit()
337 cur: Cursor, in is_dependent_on_template_parameter()
425 pub(crate) fn definition(&self) -> Option<Cursor> { in definition()
[all …]
Dparse.rs38 cursor: clang::Cursor, in parse()
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
DNaClBitcodeParser.h118 explicit NaClBitcodeData(NaClBitstreamCursor &Cursor) in NaClBitcodeData()
165 NaClBitcodeBlock(unsigned BlockID, NaClBitstreamCursor &Cursor) in NaClBitcodeBlock()
381 ErrorHandler(NaClBitcodeParser *Parser, NaClBitstreamCursor &Cursor) in ErrorHandler()
395 explicit NaClBitcodeParser(NaClBitstreamCursor &Cursor) in NaClBitcodeParser()
567 NaClBitstreamCursor &Cursor) in NaClBitcodeParser()
/third_party/ncurses/Ada95/samples/
Drain.adb72 procedure Cursor (X : X_Position; Y : Y_Position); subprogspec
83 procedure Cursor (X : X_Position; Y : Y_Position) is subprogram
/third_party/skia/experimental/sktext/editor/
DCursor.cpp11 Cursor::Cursor() { in Cursor() function in skia::editor::Cursor
/third_party/rust/crates/bindgen/bindgen/ir/
Dvar.rs158 cursor: &clang::Cursor, in handle_function_macro()
180 cursor: clang::Cursor, in parse()
399 cursor: &clang::Cursor, in parse_macro_clang_fallback()
433 cursor: &clang::Cursor, in parse_macro()
Dcontext.rs698 declaration: Option<Cursor>, in add_item()
699 location: Option<Cursor>, in add_item()
823 definition: clang::Cursor, in add_type_param()
861 definition: &clang::Cursor, in get_type_param()
936 ) -> Vec<(ItemId, clang::Type, clang::Cursor, Option<ItemId>)> { in collect_typerefs()
1537 definition: clang::Cursor, in add_semantic_parent()
1546 definition: clang::Cursor, in known_semantic_parent()
1560 instantiation: &Cursor, in get_declaration_info_for_template_instantiation()
1561 ) -> Option<(Cursor, ItemId, usize)> { in get_declaration_info_for_template_instantiation()
1652 location: clang::Cursor, in instantiate_template()
[all …]
/third_party/rust/rust/tests/ui/issues/
Dissue-18232.rs4 struct Cursor<'a>(::std::marker::PhantomData<&'a ()>); struct
/third_party/rust/rust/library/alloc/src/collections/
Dlinked_list.rs1229 pub struct Cursor< struct
1240 impl<T, A: Allocator> Clone for Cursor<'_, T, A> { implementation
1242 let Cursor { index, current, list } = *self; in clone() localVariable
1248 impl<T: fmt::Debug, A: Allocator> fmt::Debug for Cursor<'_, T, A> { implementation
1282 impl<'a, T, A: Allocator> Cursor<'a, T, A> { implementation
2104 unsafe impl<T: Sync, A: Allocator + Sync> Send for Cursor<'_, T, A> {} implementation
2107 unsafe impl<T: Sync, A: Allocator + Sync> Sync for Cursor<'_, T, A> {} implementation

123