Home
last modified time | relevance | path

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

12345

/external/rust/crates/futures-util/src/io/
Dcursor.rs23 pub struct Cursor<T> { struct
24 inner: io::Cursor<T>, argument
27 impl<T> Cursor<T> { implementation
146 impl<T> AsyncSeek for Cursor<T> implementation
159 impl<T: AsRef<[u8]> + Unpin> AsyncRead for Cursor<T> { implementation
177 impl<T> AsyncBufRead for Cursor<T> implementation
218 impl AsyncWrite for Cursor<&mut [u8]> { implementation
222 impl AsyncWrite for Cursor<&mut Vec<u8>> { implementation
226 impl AsyncWrite for Cursor<Vec<u8>> { implementation
230 impl AsyncWrite for Cursor<Box<[u8]>> { implementation
/external/perfetto/src/trace_processor/sqlite/
Ddb_sqlite_table.h80 struct Cursor : public sqlite::Module<DbSqliteModule>::Cursor { struct
81 enum class Mode {
86 const Table* upstream_table = nullptr;
90 std::unique_ptr<Table> dynamic_table;
93 std::optional<uint32_t> single_row;
96 std::optional<Table::Iterator> iterator;
98 bool eof = true;
103 std::optional<Table> sorted_cache_table;
107 uint32_t repeated_cache_count = 0;
109 Mode mode = Mode::kSingleRow;
[all …]
Dsql_stats_table.h36 struct Cursor : sqlite::Module<SqlStatsModule>::Cursor { struct
37 const TraceStorage* storage = nullptr;
38 size_t row = 0;
39 size_t num_rows = 0;
Dstats_table.h35 struct Cursor : sqlite::Module<StatsModule>::Cursor { struct
36 const TraceStorage* storage = nullptr;
37 size_t key = 0;
/external/perfetto/src/trace_processor/perfetto_sql/intrinsics/operators/
Dinterval_intersect_operator.h58 struct Cursor : sqlite::Module<IntervalIntersectOperator>::Cursor { struct
59 using TreesKey = uint64_t;
60 using TreesMap = base::FlatHashMap<TreesKey,
64 struct InnerData {
83 struct OuterData {
92 OperatorType type;
93 std::string table_name;
94 std::string exposed_cols_str;
95 const Table* table = nullptr;
98 InnerData inner;
[all …]
Dwindow_operator.h56 struct Cursor : sqlite::Module<WindowOperatorModule>::Cursor { struct
57 int64_t window_end = 0;
58 int64_t step_size = 0;
60 int64_t current_ts = 0;
61 int64_t quantum_ts = 0;
62 int64_t row_id = 0;
64 FilterType filter_type = FilterType::kReturnAll;
Dcounter_mipmap_operator.h79 struct Cursor : sqlite::Module<CounterMipmapOperator>::Cursor { struct
80 struct Result {
85 std::vector<Result> counters;
86 uint32_t index;
Dslice_mipmap_operator.h79 struct Cursor : sqlite::Module<SliceMipmapOperator>::Cursor { struct
80 struct Result {
86 std::vector<Result> results;
87 uint32_t index = 0;
/external/rust/crates/proc-macro2/src/
Dparse.rs10 pub(crate) struct Cursor<'a> { struct
16 impl<'a> Cursor<'a> { argument
77 fn skip_whitespace(input: Cursor) -> Cursor { in skip_whitespace()
157 fn word_break(input: Cursor) -> Result<Cursor, Reject> { in word_break()
341 fn literal_nocapture(input: Cursor) -> Result<Cursor, Reject> { in literal_nocapture()
361 fn literal_suffix(input: Cursor) -> Cursor { in literal_suffix()
368 fn string(input: Cursor) -> Result<Cursor, Reject> { in string()
378 fn cooked_string(mut input: Cursor) -> Result<Cursor, Reject> { in cooked_string()
412 fn raw_string(input: Cursor) -> Result<Cursor, Reject> { in raw_string()
431 fn byte_string(input: Cursor) -> Result<Cursor, Reject> { in byte_string()
[all …]
/external/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> { implementation
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 …]
/external/llvm/unittests/Bitcode/
DBitstreamReaderTest.cpp40 BitstreamCursor Cursor(Reader); in TEST() local
60 BitstreamCursor Cursor(Reader); in TEST() local
69 BitstreamCursor Cursor(Reader); in TEST() local
77 SimpleBitstreamCursor Cursor(Reader); in TEST() local
89 SimpleBitstreamCursor Cursor(Reader); in TEST() local
99 SimpleBitstreamCursor Cursor(Reader); in TEST() local
109 SimpleBitstreamCursor Cursor(Reader); in TEST() local
121 SimpleBitstreamCursor Cursor(Reader); in TEST() local
135 SimpleBitstreamCursor Cursor(Reader); in TEST() local
149 SimpleBitstreamCursor Cursor(Reader); in TEST() local
[all …]
/external/pigweed/pw_stream/rust/pw_stream/
Dcursor.rs28 pub struct Cursor<T> struct
36 impl<T: AsRef<[u8]>> Cursor<T> { argument
69 impl<T: AsRef<[u8]> + AsMut<[u8]>> Cursor<T> { implementation
85 impl<T: AsRef<[u8]>> Read for Cursor<T> { implementation
101 impl<T: AsRef<[u8]> + AsMut<[u8]>> Write for Cursor<T> { implementation
112 impl<T: AsRef<[u8]>> Seek for Cursor<T> { implementation
226 impl<T: AsRef<[u8]>> crate::ReadInteger for Cursor<T> { implementation
234 impl<T: AsRef<[u8]> + AsMut<[u8]>> crate::WriteInteger for Cursor<T> { implementation
242 impl<T: AsRef<[u8]>> crate::ReadVarint for Cursor<T> { implementation
256 impl<T: AsRef<[u8]> + AsMut<[u8]>> crate::WriteVarint for Cursor<T> { implementation
/external/perfetto/src/trace_processor/perfetto_sql/engine/
Dtable_pointer_module.h68 struct Cursor : sqlite::Module<TablePointerModule>::Cursor { struct
69 const Table* table = nullptr;
71 uint32_t col_count = 0;
72 std::optional<Table::Iterator> iterator;
Druntime_table_function.h81 struct Cursor : sqlite::Module<RuntimeTableFunctionModule>::Cursor { struct
82 std::optional<SqliteEngine::PreparedStatement> stmt;
83 bool is_eof = false;
84 int next_call_count = 0;
/external/rust/crates/bindgen/
Dclang.rs56 pub(crate) struct Cursor { struct
57 x: CXCursor, argument
60 impl fmt::Debug for Cursor { implementation
73 impl Cursor { implementation
159 pub(crate) fn lexical_parent(&self) -> Cursor { in lexical_parent()
171 pub(crate) fn fallible_semantic_parent(&self) -> Option<Cursor> { in fallible_semantic_parent()
187 pub(crate) fn semantic_parent(&self) -> Cursor { in semantic_parent()
231 pub(crate) fn translation_unit(&self) -> Cursor { in translation_unit()
335 cur: Cursor, in is_dependent_on_template_parameter()
423 pub(crate) fn definition(&self) -> Option<Cursor> { in definition()
[all …]
Dparse.rs38 cursor: clang::Cursor, in parse()
/external/rust/crates/futures/tests/
Dio_buf_reader.rs27 struct Cursor<T> { struct
29 inner: futures::io::Cursor<T>, argument
32 impl<T> Cursor<T> { impl
38 impl AsyncRead for Cursor<&[u8]> { implementation
48 impl AsyncBufRead for Cursor<&[u8]> { implementation
58 impl AsyncSeek for Cursor<&[u8]> { implementation
/external/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()
/external/rust/crates/chrono/src/offset/local/tz_info/
Dparser.rs217 pub(crate) struct Cursor<'a> { struct
224 impl<'a> Cursor<'a> { argument
/external/llvm/lib/CodeGen/
DInterferenceCache.h189 Cursor() : CacheEntry(nullptr), Current(nullptr) {} in Cursor() function
192 Cursor(const Cursor &O) : CacheEntry(nullptr), Current(nullptr) { in Cursor() function
233 friend class Cursor; variable
/external/rust/crates/hyper/src/proto/h1/
Dio.rs475 pub(crate) struct Cursor<T> { struct
480 impl<T: AsRef<[u8]>> Cursor<T> { implementation
487 impl Cursor<Vec<u8>> { impl
512 impl<T: AsRef<[u8]>> fmt::Debug for Cursor<T> { implementation
521 impl<T: AsRef<[u8]>> Buf for Cursor<T> { implementation
/external/libkmsxx/kms++/inc/kms++/
Dplane.h10 Cursor = 1 << 2, enumerator
/external/rust/crates/tokio/src/io/
Dasync_write.rs290 impl AsyncWrite for io::Cursor<&mut [u8]> { implementation
320 impl AsyncWrite for io::Cursor<&mut Vec<u8>> { implementation
350 impl AsyncWrite for io::Cursor<Vec<u8>> { implementation
380 impl AsyncWrite for io::Cursor<Box<[u8]>> { implementation
/external/rust/crates/bindgen/ir/
Dvar.rs162 cursor: &clang::Cursor, in handle_function_macro()
184 cursor: clang::Cursor, in parse()
395 cursor: &clang::Cursor, in parse_macro()
/external/llvm/lib/Bitcode/Reader/
DBitstreamReader.cpp54 static uint64_t readAbbreviatedField(BitstreamCursor &Cursor, in readAbbreviatedField()
75 static void skipAbbreviatedField(BitstreamCursor &Cursor, in skipAbbreviatedField()

12345