HomeSort by relevance Sort by last modified time
    Searched defs:Scanner (Results 26 - 50 of 218) sorted by null

12 3 4 5 6 7 8 9

  /external/tensorflow/tensorflow/core/lib/strings/
scanner.h 26 // Scanner provides simplified string parsing, in which a string is parsed as a
33 class Scanner {
63 explicit Scanner(StringPiece source) : cur_(source) { RestartCapture(); }
67 Scanner& One(CharClass clz) {
77 Scanner& ZeroOrOneLiteral(StringPiece s) {
84 Scanner& OneLiteral(StringPiece s) {
94 Scanner& Any(CharClass clz) {
102 Scanner& Many(CharClass clz) { return One(clz).Any(clz); }
108 Scanner& RestartCapture() {
118 Scanner& StopCapture()
    [all...]
  /prebuilts/go/darwin-x86/src/text/scanner/
scanner.go 5 // Package scanner provides a scanner and tokenizer for UTF-8-encoded text.
11 // By default, a Scanner skips white space and Go comments and recognizes all
15 package scanner package
50 // to configure a Scanner such that it only recognizes (Go) identifiers,
51 // integers, and skips comments, set the Scanner's Mode field to:
56 // set, unrecognized tokens are not ignored. Instead, the scanner simply
105 // GoWhitespace is the default value for the Scanner's Whitespace field.
111 // A Scanner implements reading of Unicode characters and tokens from an io.Reader.
112 type Scanner struct
    [all...]
  /prebuilts/go/linux-x86/src/text/scanner/
scanner.go 5 // Package scanner provides a scanner and tokenizer for UTF-8-encoded text.
11 // By default, a Scanner skips white space and Go comments and recognizes all
15 package scanner package
50 // to configure a Scanner such that it only recognizes (Go) identifiers,
51 // integers, and skips comments, set the Scanner's Mode field to:
56 // set, unrecognized tokens are not ignored. Instead, the scanner simply
105 // GoWhitespace is the default value for the Scanner's Whitespace field.
111 // A Scanner implements reading of Unicode characters and tokens from an io.Reader.
112 type Scanner struct
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/bgen/bgen/
scantools.py 61 used by the bgen scanner. It consists of the original ".h" header file(s)
90 <p>If there are function declarations the scanner has missed (i.e. things
105 class Scanner:
107 # Set to 1 in subclass to debug your scanner patterns.
804 class Scanner_PreUH3(Scanner):
805 """Scanner for Universal Headers before release 3"""
807 Scanner.initpatterns(self)
814 class Scanner_OSX(Scanner):
815 """Scanner for modern (post UH3.3) Universal Headers """
817 Scanner.initpatterns(self)
    [all...]
  /external/guava/guava/src/com/google/common/reflect/
ClassPath.java 90 Scanner scanner = new Scanner(); local
92 scanner.scan(entry.getKey(), entry.getValue());
94 return new ClassPath(scanner.getResources());
303 @VisibleForTesting static final class Scanner {
  /external/python/cpython2/Tools/bgen/bgen/
scantools.py 61 used by the bgen scanner. It consists of the original ".h" header file(s)
90 <p>If there are function declarations the scanner has missed (i.e. things
105 class Scanner:
107 # Set to 1 in subclass to debug your scanner patterns.
804 class Scanner_PreUH3(Scanner):
805 """Scanner for Universal Headers before release 3"""
807 Scanner.initpatterns(self)
814 class Scanner_OSX(Scanner):
815 """Scanner for modern (post UH3.3) Universal Headers """
817 Scanner.initpatterns(self
    [all...]
  /prebuilts/go/darwin-x86/src/fmt/
scan.go 18 // ScanState represents the scanner state passed to custom scanners.
51 // Scanner is implemented by any value that has a Scan method, which scans
55 type Scanner interface {
302 // from an io.Reader. It is used if the Reader given to the scanner does
919 // scanOne scans a single value, deriving the scanner from the type of the argument.
924 if v, ok := arg.(Scanner); ok {
  /prebuilts/go/linux-x86/src/fmt/
scan.go 18 // ScanState represents the scanner state passed to custom scanners.
51 // Scanner is implemented by any value that has a Scan method, which scans
55 type Scanner interface {
302 // from an io.Reader. It is used if the Reader given to the scanner does
919 // scanOne scans a single value, deriving the scanner from the type of the argument.
924 if v, ok := arg.(Scanner); ok {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/
pydoc.py     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/
pydoc.py     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
pydoc.py     [all...]
  /external/guava/guava-tests/test/com/google/common/reflect/
ClassPathTest.java 236 ClassPath.Scanner scanner = new ClassPath.Scanner(); local
237 scanner.scan(jarFile.toURI(), ClassPathTest.class.getClassLoader());
238 assertEquals(1, scanner.getResources().size());
246 ClassPath.Scanner scanner = new ClassPath.Scanner(); local
247 scanner.scanFrom(new File("no/such/file/anywhere"), classLoader);
248 assertThat(scanner.getResources()).isEmpty()
254 ClassPath.Scanner scanner = new ClassPath.Scanner(); local
    [all...]
  /external/python/cpython2/Lib/
pydoc.py     [all...]
  /external/v8/src/parsing/
scanner.cc 7 #include "src/parsing/scanner.h"
17 #include "src/parsing/duplicate-finder.h" // For Scanner::FindSymbol
22 // Scoped helper for saving & restoring scanner error state.
28 Scanner::Location* location_stack)
34 *location_stack_ = Scanner::Location::invalid();
43 Scanner::Location* location_dest) {
52 *location_stack_ = Scanner::Location::invalid();
58 Scanner::Location* const location_stack_;
59 Scanner::Location const old_location_;
62 Handle<String> Scanner::LiteralBuffer::Internalize(Isolate* isolate) const
    [all...]
scanner.h 50 // parser problem! The scanner treats the final kEndOfInput as
150 // JavaScript Scanner.
152 class Scanner {
157 explicit BookmarkScope(Scanner* scanner)
158 : scanner_(scanner), bookmark_(kNoBookmark) {
173 Scanner* scanner_;
198 explicit Scanner(UnicodeCache* scanner_contants);
352 explicit LiteralScope(Scanner* self) : scanner_(self), complete_(false) {
361 Scanner* scanner_
    [all...]
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
WifiTracker.java 157 Scanner mScanner;
278 mScanner = new Scanner();
798 class Scanner extends Handler {
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
pydoc.py     [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
pydoc.py     [all...]
  /prebuilts/go/darwin-x86/src/database/sql/
sql.go 149 // NullString implements the Scanner interface so
166 // Scan implements the Scanner interface.
185 // NullInt64 implements the Scanner interface so
192 // Scan implements the Scanner interface.
211 // NullFloat64 implements the Scanner interface so
218 // Scan implements the Scanner interface.
237 // NullBool implements the Scanner interface so
244 // Scan implements the Scanner interface.
262 // Scanner is an interface used by Scan.
263 type Scanner interface
    [all...]
  /prebuilts/go/linux-x86/src/database/sql/
sql.go 149 // NullString implements the Scanner interface so
166 // Scan implements the Scanner interface.
185 // NullInt64 implements the Scanner interface so
192 // Scan implements the Scanner interface.
211 // NullFloat64 implements the Scanner interface so
218 // Scan implements the Scanner interface.
237 // NullBool implements the Scanner interface so
244 // Scan implements the Scanner interface.
262 // Scanner is an interface used by Scan.
263 type Scanner interface
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pydoc.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pydoc.py     [all...]
  /system/tools/aidl/
aidl_language.h 406 void* Scanner() const { return scanner_; }
  /external/llvm/lib/Support/
YAMLParser.cpp 266 class Scanner {
268 Scanner(StringRef Input, SourceMgr &SM, bool ShowColors = true);
269 Scanner(MemoryBufferRef Buffer, SourceMgr &SM_, bool ShowColors = true);
380 typedef StringRef::iterator (Scanner::*SkipWhileFunc)(StringRef::iterator);
443 /// position of the scanner.
527 /// @brief The current position of the scanner.
603 Scanner scanner(Input, SM);
605 Token T = scanner.getNext();
687 llvm::yaml::Scanner scanner(Input, SM)
    [all...]
  /libcore/ojluni/src/main/java/java/util/
Scanner.java 43 * A simple text scanner which can parse primitive types and strings using
46 * <p>A <code>Scanner</code> breaks its input into tokens using a
54 * Scanner sc = new Scanner(System.in);
61 * Scanner sc = new Scanner(new File("myNumbers"));
67 * <p>The scanner can also use delimiters other than whitespace. This
71 * Scanner s = new Scanner(input).useDelimiter("\\s*fish\\s*");
91 * Scanner s = new Scanner(input)
    [all...]

Completed in 1517 milliseconds

12 3 4 5 6 7 8 9