Home
last modified time | relevance | path

Searched defs:Range (Results 1 – 25 of 452) sorted by relevance

12345678910>>...19

/external/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugAranges.h34 struct Range { struct
54 bool operator<(const Range &other) const { argument
77 typedef std::vector<Range> RangeColl; argument
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/DWARF/
DDWARFDebugAranges.h34 struct Range { struct
52 bool operator<(const Range &other) const { argument
74 using RangeColl = std::vector<Range>; argument
/external/rust/crates/combine/src/parser/
Dchar.rs25 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in char()
66 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in space()
87 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in spaces()
103 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in newline()
120 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in crlf()
136 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in tab()
154 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in upper()
172 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in lower()
191 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in alpha_num()
210 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in letter()
[all …]
Dregex.rs59 type Range; typedef
61 fn as_match(&self) -> Self::Range; in as_match()
68 F: FromIterator<Range>; in find_iter()
71 F: FromIterator<Range>, in captures()
85 F: FromIterator<Range>, in find_iter()
91 F: FromIterator<Range>, in captures()
105 F: FromIterator<<Input::Item as MatchFind>::Range>, in find_iter()
129 type Range = &'t str; typedef
133 fn as_match(&self) -> Self::Range { in as_match()
139 type Range = &'t [u8]; typedef
[all …]
Dbyte.rs27 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in byte()
54 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in digit()
72 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in space()
90 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in spaces()
106 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in newline()
123 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in crlf()
139 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in tab()
155 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in upper()
171 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in lower()
188 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in alpha_num()
[all …]
/external/libwebm/common/
Dlibwebm_util.h33 struct Range { struct
34 Range(std::size_t off, std::size_t len) : offset(off), length(len) {} in Range() function
42 typedef std::vector<Range> Ranges; argument
/external/deqp-deps/SPIRV-Tools/utils/vscode/src/lsp/span/
Dtoken.go25 type Range struct { struct
26 FileSet *token.FileSet
27 Start token.Pos
28 End token.Pos
65 func (r Range) IsPoint() bool {
72 func (r Range) Span() (Span, error) {
107 func (s Span) Range(converter *TokenConverter) (Range, error) { func
/external/angle/third_party/vulkan-deps/spirv-tools/src/utils/vscode/src/lsp/span/
Dtoken.go25 type Range struct { struct
26 FileSet *token.FileSet
27 Start token.Pos
28 End token.Pos
65 func (r Range) IsPoint() bool {
72 func (r Range) Span() (Span, error) {
107 func (s Span) Range(converter *TokenConverter) (Range, error) { func
/external/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/span/
Dtoken.go25 type Range struct { struct
26 FileSet *token.FileSet
27 Start token.Pos
28 End token.Pos
65 func (r Range) IsPoint() bool {
72 func (r Range) Span() (Span, error) {
107 func (s Span) Range(converter *TokenConverter) (Range, error) { func
/external/skia/modules/skshaper/include/
DSkShaper.h180 struct Range { struct
181 constexpr Range() : fBegin(0), fSize(0) {} in Range() function
182 constexpr Range(size_t begin, size_t size) : fBegin(begin), fSize(size) {} in Range() argument
195 Range utf8Range; argument
/external/rust/crates/combine/src/stream/
Dmod.rs123 type Range: Clone; typedef
187 fn uncons_range(&mut self, size: usize) -> Result<Self::Range, StreamErrorFor<Self>>; in uncons_range()
191 fn uncons_while<F>(&mut self, f: F) -> Result<Self::Range, StreamErrorFor<Self>> in uncons_while()
202 fn uncons_while1<F>(&mut self, mut f: F) -> ParseResult<Self::Range, StreamErrorFor<Self>> in uncons_while1()
238 fn range(&self) -> Self::Range; in range()
249 err: <Input::Error as ParseError<Input::Token, Input::Range, Input::Position>>::StreamError, in wrap_stream_error()
266 ) -> ParseResult<Input::Range, <Input as StreamOnce>::Error> in uncons_range()
300 ) -> ParseResult<Input::Range, Input::Error> in uncons_while()
304 Input::Range: Range, in uncons_while()
335 ) -> ParseResult<Input::Range, Input::Error> in uncons_while1()
[all …]
Dstate.rs44 type Range = S::Range; typedef
63 fn uncons_range(&mut self, size: usize) -> Result<Self::Range, StreamErrorFor<Self>> { in uncons_range()
68 fn uncons_while<F>(&mut self, f: F) -> Result<Self::Range, StreamErrorFor<Self>> in uncons_while()
75 fn uncons_while1<F>(&mut self, f: F) -> ParseResult<Self::Range, StreamErrorFor<Self>> in uncons_while1()
88 fn range(&self) -> Self::Range { in range()
Dspan.rs82 type Range = S::Range; typedef
108 fn uncons_range(&mut self, size: usize) -> Result<Self::Range, StreamErrorFor<Self>> { in uncons_range()
115 fn uncons_while<F>(&mut self, f: F) -> Result<Self::Range, StreamErrorFor<Self>> in uncons_while()
125 fn uncons_while1<F>(&mut self, f: F) -> ParseResult<Self::Range, StreamErrorFor<Self>> in uncons_while1()
139 fn range(&self) -> Self::Range { in range()
/external/rust/crates/combine/benches/
Dhttp.rs74 Input: RangeStream<Token = u8, Range = &'a [u8]>, in end_of_line() argument
75 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in end_of_line()
82 Input: RangeStream<Token = u8, Range = &'a [u8]>, in message_header() argument
83 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in message_header()
103 Input: RangeStream<Token = u8, Range = &'a [u8]>, in parse_http_request() argument
104 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in parse_http_request()
155 Input: RangeStream<Token = u8, Range = &'a [u8]> + Clone, in http_requests_bench() argument
156 Input::Error: ParseError<Input::Token, Input::Range, Input::Position> + fmt::Debug, in http_requests_bench()
Djson.rs51 <Input as StreamOnce>::Range, in lex()
61 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in integer()
77 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in number()
111 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in json_char()
139 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in json_string()
147 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in object()
160 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in json_value()
/external/llvm/lib/CodeGen/MIRParser/
DMILexer.cpp62 MIToken &MIToken::reset(TokenKind Kind, StringRef Range) { in reset()
156 auto Range = C; in lexName() local
179 auto Range = C; in maybeLexIntegerType() local
236 auto Range = C; in maybeLexIdentifier() local
250 auto Range = C; in maybeLexMachineBasicBlock() local
281 auto Range = C; in maybeLexIndex() local
294 auto Range = C; in maybeLexIndexAndName() local
359 auto Range = C; in lexVirtualRegister() local
374 auto Range = C; in maybeLexRegister() local
390 auto Range = C; in maybeLexGlobalValue() local
[all …]
/external/skia/tools/
DRegistry.h35 struct Range { struct
36 struct Iterator {
42 Iterator begin() const { return Iterator{Registry::Head()}; } in begin()
43 Iterator end() const { return Iterator{nullptr}; } in end()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/MIRParser/
DMILexer.cpp67 MIToken &MIToken::reset(TokenKind Kind, StringRef Range) { in reset()
161 auto Range = C; in lexName() local
264 auto Range = C; in maybeLexIdentifier() local
278 auto Range = C; in maybeLexMachineBasicBlock() local
312 auto Range = C; in maybeLexIndex() local
325 auto Range = C; in maybeLexIndexAndName() local
398 auto Range = C; in lexVirtualRegister() local
414 Cursor Range = C; in lexNamedVirtualRegister() local
439 auto Range = C; in maybeLexRegister() local
455 auto Range = C; in maybeLexGlobalValue() local
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Testing/Support/
DAnnotations.h50 struct Range { struct
54 friend bool operator==(const Range &L, const Range &R) { argument
/external/easymock/src/org/easymock/internal/
DRange.java20 public class Range implements Serializable { class
28 public Range(int count) { in Range() method in Range
32 public Range(int minimum, int maximum) { in Range() method in Range
/external/rust/crates/combine/examples/
Dini.rs45 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in property()
59 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in whitespace()
70 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in properties()
79 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in section()
93 Input::Error: ParseError<Input::Token, Input::Range, Input::Position>, in ini()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/filter/
DFilterTestBase.java80 static class Range { class in FilterTestBase
84 Range() { in Range() method in FilterTestBase.Range
87 Range(AbstractInsnNode fromInclusive, AbstractInsnNode toInclusive) { in Range() method in FilterTestBase.Range
/external/clang/unittests/Lex/
DPPCallbacksTest.cpp148 StringRef GetSourceString(CharSourceRange Range) { in GetSourceString()
245 CharSourceRange Range = in TEST_F() local
255 CharSourceRange Range = in TEST_F() local
266 CharSourceRange Range = in TEST_F() local
277 CharSourceRange Range = in TEST_F() local
288 CharSourceRange Range = in TEST_F() local
300 CharSourceRange Range = in TEST_F() local
310 CharSourceRange Range = in TEST_F() local
321 CharSourceRange Range = in TEST_F() local
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/tool/
DGeneratedPluralSamples.java62 static class Range implements Comparable<Range> { class in GeneratedPluralSamples
72 public Range(FixedDecimal start, FixedDecimal end) { in Range() method in GeneratedPluralSamples.Range
86 public Range(Range other) { in Range() method in GeneratedPluralSamples.Range
/external/clang/lib/Lex/
DPreprocessingRecord.cpp30 SourceRange Range) in InclusionDirective()
49 PreprocessingRecord::getPreprocessedEntitiesInRange(SourceRange Range) { in getPreprocessedEntitiesInRange()
127 PreprocessingRecord::getPreprocessedEntitiesInRangeSlow(SourceRange Range) { in getPreprocessedEntitiesInRangeSlow()
193 SourceRange Range = PPE->getSourceRange(); in getLoc() local
371 SourceRange Range) { in addMacroExpansion()
401 SourceRange Range) { in Defined()
408 void PreprocessingRecord::SourceRangeSkipped(SourceRange Range) { in SourceRangeSkipped()
414 SourceRange Range, in MacroExpands()

12345678910>>...19