Searched refs:_readers (Results 1 – 5 of 5) sorted by relevance
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/ |
D | DataFormatReaders.java | 34 protected final ObjectReader[] _readers; field in DataFormatReaders 77 _readers = detectors; in DataFormatReaders() 93 return new DataFormatReaders(_readers, optMatch, _minimalMatch, _maxInputLookahead); in withOptimalMatch() 100 return new DataFormatReaders(_readers, _optimalMatch, minMatch, _maxInputLookahead); in withMinimalMatch() 112 return new DataFormatReaders(_readers, _optimalMatch, _minimalMatch, lookaheadBytes); in withMaxInputLookahead() 123 final int len = _readers.length; in with() 126 r[i] = _readers[i].with(config); in with() 133 final int len = _readers.length; in withType() 136 r[i] = _readers[i].forType(type); in withType() 197 final int len = _readers.length; in toString() [all …]
|
/external/llvm-project/lld/lib/Core/ |
D | Reader.cpp | 28 _readers.push_back(std::move(reader)); in add() 42 for (const std::unique_ptr<Reader> &reader : _readers) { in loadFile()
|
/external/tensorflow/tensorflow/python/debug/lib/ |
D | debug_events_reader.py | 80 self._readers = dict() # A map from file path to reader. 227 if file_path not in self._readers: # 1st check, without lock. 229 if file_path not in self._readers: # 2nd check, with lock. 230 self._readers[file_path] = tf_record.tf_record_random_reader( 234 return self._readers[file_path] 316 file_paths = list(self._readers.keys()) 318 self._readers[file_path].close() 319 del self._readers[file_path]
|
/external/python/cpython3/Lib/ |
D | selectors.py | 296 self._readers = set() 302 self._readers.add(key.fd) 309 self._readers.discard(key.fd) 324 r, w, _ = self._select(self._readers, self._writers, [], timeout)
|
/external/llvm-project/lld/include/lld/Core/ |
D | Reader.h | 138 std::vector<std::unique_ptr<Reader>> _readers; variable
|