/aosp_15_r20/prebuilts/go/linux-x86/src/text/scanner/ |
D | scanner.go | 116 type Scanner struct { struct 118 src io.Reader 121 srcBuf [bufLen + 1]byte // +1 for sentinel for common case of s.next() 122 srcPos int // reading position (srcBuf index) 123 srcEnd int // source end (srcBuf index) 126 srcBufOffset int // byte offset of srcBuf[0] in source 127 line int // line count 128 column int // character count 129 lastLineLen int // length of last line in characters (for correct column reporting) 130 lastCharLen int // length of last character in bytes [all …]
|
D | scanner_test.go | 236 func checkTok(t *testing.T, s *Scanner, line int, got, want rune, text string) { 255 func checkTokErr(t *testing.T, s *Scanner, line int, want rune, text string) { 554 func checkNextPos(t *testing.T, s *Scanner, offset, line, column int, char rune) { 562 func checkScanPos(t *testing.T, s *Scanner, offset, line, column int, char rune) {
|
/aosp_15_r20/prebuilts/go/linux-x86/src/go/scanner/ |
D | scanner.go | 29 type Scanner struct { struct 31 file *token.File // source file handle 32 dir string // directory portion of file.Name() 33 src []byte // source 34 err ErrorHandler // error reporting; or nil 35 mode Mode // scanning mode 38 ch rune // current character 39 offset int // character offset 40 rdOffset int // reading offset (position after current character) 41 lineOffset int // current line offset [all …]
|
/aosp_15_r20/prebuilts/go/linux-x86/src/bufio/ |
D | scan.go | 29 type Scanner struct { struct 30 r io.Reader // The reader provided by the client. 31 split SplitFunc // The function to split the tokens. 32 maxTokenSize int // Maximum size of a token; modified by tests. 33 token []byte // Last token returned by split. 34 buf []byte // Buffer used as argument to split. 35 start int // First non-processed byte in buf. 36 end int // End of data in buf. 37 err error // Sticky error. 38 empties int // Count of successive empty tokens. [all …]
|
/aosp_15_r20/packages/modules/Bluetooth/tools/rootcanal/model/controller/ |
D | link_layer_controller.h | 938 struct Scanner { struct 939 bool scan_enable; 940 std::chrono::steady_clock::duration period; 941 std::chrono::steady_clock::duration duration; 942 bluetooth::hci::FilterDuplicates filter_duplicates; 943 bluetooth::hci::OwnAddressType own_address_type; 944 bluetooth::hci::LeScanningFilterPolicy scan_filter_policy; 946 struct PhyParameters { 953 PhyParameters le_1m_phy; 954 PhyParameters le_coded_phy; [all …]
|
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/util/ |
D | Scanner.java | 308 public final class Scanner implements Iterator<String>, Closeable { class 539 private Scanner(Readable source, Pattern pattern) { in Scanner() method in Scanner 559 public Scanner(Readable source) { in Scanner() method in Scanner 571 public Scanner(InputStream source) { in Scanner() method in Scanner 586 public Scanner(InputStream source, String charsetName) { in Scanner() method in Scanner 600 public Scanner(InputStream source, Charset charset) { in Scanner() method in Scanner 644 public Scanner(File source) throws FileNotFoundException { in Scanner() method in Scanner 660 public Scanner(File source, String charsetName) in Scanner() method in Scanner 678 public Scanner(File source, Charset charset) throws IOException { in Scanner() method in Scanner 682 private Scanner(File source, CharsetDecoder dec) in Scanner() method in Scanner [all …]
|
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/24/libcore/ojluni/src/main/java/java/util/ |
D | Scanner.java | 308 public final class Scanner implements Iterator<String>, Closeable { class 539 private Scanner(Readable source, Pattern pattern) { in Scanner() method in Scanner 559 public Scanner(Readable source) { in Scanner() method in Scanner 571 public Scanner(InputStream source) { in Scanner() method in Scanner 586 public Scanner(InputStream source, String charsetName) { in Scanner() method in Scanner 600 public Scanner(InputStream source, Charset charset) { in Scanner() method in Scanner 644 public Scanner(File source) throws FileNotFoundException { in Scanner() method in Scanner 660 public Scanner(File source, String charsetName) in Scanner() method in Scanner 678 public Scanner(File source, Charset charset) throws IOException { in Scanner() method in Scanner 682 private Scanner(File source, CharsetDecoder dec) in Scanner() method in Scanner [all …]
|
/aosp_15_r20/libcore/ojluni/src/main/java/java/util/ |
H A D | Scanner.java | 308 public final class Scanner implements Iterator<String>, Closeable { class 539 private Scanner(Readable source, Pattern pattern) { in Scanner() method in Scanner 559 public Scanner(Readable source) { in Scanner() method in Scanner 571 public Scanner(InputStream source) { in Scanner() method in Scanner 586 public Scanner(InputStream source, String charsetName) { in Scanner() method in Scanner 600 public Scanner(InputStream source, Charset charset) { in Scanner() method in Scanner 644 public Scanner(File source) throws FileNotFoundException { in Scanner() method in Scanner 660 public Scanner(File source, String charsetName) in Scanner() method in Scanner 678 public Scanner(File source, Charset charset) throws IOException { in Scanner() method in Scanner 682 private Scanner(File source, CharsetDecoder dec) in Scanner() method in Scanner [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/yaml-rust/src/ |
D | scanner.rs | 140 pub struct Scanner<T> { struct 159 impl<T: Iterator<Item = char>> Iterator for Scanner<T> { argument 230 impl<T: Iterator<Item = char>> Scanner<T> { implementation
|
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/profile/ |
D | legacy_profile.go | 925 func parseThreadSample(s *bufio.Scanner) (nextl string, addrs []uint64, err error) { 959 func parseAdditionalSections(s *bufio.Scanner, p *Profile) error { 977 func parseProcMapsFromScanner(s *bufio.Scanner) ([]*Mapping, error) { 1031 func (p *Profile) ParseMemoryMapFromScanner(s *bufio.Scanner) error {
|
/aosp_15_r20/external/antlr/tool/src/main/java/org/antlr/tool/ |
H A D | GrammarSpelunker.java | 154 public static class Scanner { class in GrammarSpelunker 159 public Scanner(Reader input) throws IOException { in Scanner() method in GrammarSpelunker.Scanner
|
/aosp_15_r20/external/snakeyaml/src/main/java/org/yaml/snakeyaml/scanner/ |
H A D | Scanner.java | 27 public interface Scanner { interface
|
/aosp_15_r20/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
H A D | Scanner.java | 26 public interface Scanner { interface
|
/aosp_15_r20/prebuilts/go/linux-x86/test/fixedbugs/ |
D | issue50169.go | 16 type Scanner interface{ Scan(any) error } interface
|
/aosp_15_r20/external/starlark-go/doc/ |
H A D | impl.md | 16 ## Scanner section in Starlark in Go: Implementation
|
/aosp_15_r20/external/python/bumble/docs/mkdocs/src/hive/web/scanner/ |
D | scanner.py | 25 class Scanner(pyee.EventEmitter): class
|
/aosp_15_r20/external/python/bumble/web/scanner/ |
D | scanner.py | 25 class Scanner(pyee.EventEmitter): class
|
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | YAMLParser.cpp | 252 class Scanner { class 756 Scanner::Scanner(StringRef Input, SourceMgr &sm, bool ShowColors, in Scanner() function in Scanner 762 Scanner::Scanner(MemoryBufferRef Buffer, SourceMgr &SM_, bool ShowColors, in Scanner() function in Scanner
|
/aosp_15_r20/external/llvm/lib/Support/ |
H A D | YAMLParser.cpp | 266 class Scanner { class 761 Scanner::Scanner(StringRef Input, SourceMgr &sm, bool ShowColors) in Scanner() function in Scanner 766 Scanner::Scanner(MemoryBufferRef Buffer, SourceMgr &SM_, bool ShowColors) in Scanner() function in Scanner
|
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Support/ |
H A D | YAMLParser.cpp | 247 class Scanner { class 849 Scanner::Scanner(StringRef Input, SourceMgr &sm, bool ShowColors, in Scanner() function in Scanner 855 Scanner::Scanner(MemoryBufferRef Buffer, SourceMgr &SM_, bool ShowColors, in Scanner() function in Scanner
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/site-packages/pip/_vendor/pygments/ |
D | scanner.py | 27 class Scanner: class
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/site-packages/pip/_vendor/pygments/ |
D | scanner.py | 27 class Scanner: class
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/site-packages/pip/_vendor/pygments/ |
D | scanner.py | 27 class Scanner: class
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/site-packages/pip/_vendor/pygments/ |
D | scanner.py | 27 class Scanner: class
|
/aosp_15_r20/system/tools/aidl/ |
D | parser.h | 77 void* Scanner() const { return scanner_; } in Scanner() function
|