/external/clang/lib/Format/ |
TokenAnalyzer.cpp | 41 ArrayRef<tooling::Range> Ranges) { 67 for (const tooling::Range &Range : Ranges) { 68 SourceLocation Start = StartOfFile.getLocWithOffset(Range.getOffset()); 69 SourceLocation End = Start.getLocWithOffset(Range.getLength());
|
AffectedRangeManager.h | 38 // Returns true if 'Range' intersects with one of the input ranges. 39 bool affectsCharSourceRange(const CharSourceRange &Range); 42 // Returns true if the range from 'First' to 'Last' intersects with one of the
|
/external/dagger2/core/src/test/java/dagger/internal/ |
SetFactoryTest.java | 20 import com.google.common.collect.Range; 109 integerSetProvider(Range.closed(5, 9)), 110 integerSetProvider(Range.closed(3, 6)), 111 integerSetProvider(Range.closed(0, 5))); 125 private static Provider<Set<Integer>> integerSetProvider(Range<Integer> range) { 126 final ContiguousSet<Integer> set = ContiguousSet.create(range, integers());
|
/external/clang/lib/Sema/ |
SemaStmtAttr.cpp | 27 SourceRange Range) { 34 SourceLocation L = S.getLocForEndOfToken(Range.getEnd()); 227 SourceRange Range) { 273 SourceRange Range) { 281 return handleFallThroughAttr(S, St, A, Range); 283 return handleLoopHintAttr(S, St, A, Range); 285 return handleOpenCLUnrollHint(S, St, A, Range); 296 SourceRange Range) { 299 if (Attr *a = ProcessStmtAttribute(*this, S, *l, Range)) 308 return ActOnAttributedStmt(Range.getBegin(), Attrs, S) [all...] |
/external/clang/lib/AST/ |
MicrosoftMangle.cpp | 307 void mangleType(QualType T, SourceRange Range, 333 void mangleArgumentType(QualType T, SourceRange Range); 341 SourceRange Range); 684 // in the range of ASCII characters 'A' to 'P'. [all...] |
/external/llvm/lib/CodeGen/ |
LiveRegMatrix.cpp | 104 const LiveRange &Range) { 105 DEBUG(dbgs() << ' ' << PrintRegUnit(Unit, TRI) << ' ' << Range); 106 Matrix[Unit].unify(VirtReg, Range); 121 const LiveRange &Range) { 123 Matrix[Unit].extract(VirtReg, Range); 164 const LiveRange &Range) { 166 return Range.overlaps(UnitRange, CP, *LIS->getSlotIndexes());
|
/external/clang/include/clang/Lex/ |
Lexer.h | 107 /// text range will outlive it, so it doesn't take ownership of it. 113 /// text range will outlive it, so it doesn't take ownership of it. 326 /// \brief Given a token range, produce a corresponding CharSourceRange that 327 /// is not a token range. This allows the source range to be used by 329 /// end of the range for themselves. 330 static CharSourceRange getAsCharRange(SourceRange Range, 333 SourceLocation End = getLocForEndOfToken(Range.getEnd(), 0, SM, LangOpts); 336 Range.getBegin(), End.getLocWithOffset(-1)); 338 static CharSourceRange getAsCharRange(CharSourceRange Range, [all...] |
PPCallbacks.h | 101 /// \param FilenameRange The character range of the quotes or angle brackets 243 const MacroDefinition &MD, SourceRange Range, 261 SourceRange Range) { 264 /// \brief Hook called when a source range is skipped. 265 /// \param Range The SourceRange that was skipped. The range begins at the 267 virtual void SourceRangeSkipped(SourceRange Range) { 439 SourceRange Range, const MacroArgs *Args) override { 440 First->MacroExpands(MacroNameTok, MD, Range, Args); 441 Second->MacroExpands(MacroNameTok, MD, Range, Args) [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
StringRange.java | 81 // new possible range 137 static final class Range implements Comparable<Range>{ 140 public Range(int min, int max) { 146 return this == obj || (obj != null && obj instanceof Range && compareTo((Range)obj) == 0); 149 public int compareTo(Range that) { 168 private final Range[] ranges; 171 ranges = new Range[array.length]; 173 ranges[i] = new Range(array[i], array[i]) [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
StringRange.java | 77 // new possible range 133 static final class Range implements Comparable<Range>{ 136 public Range(int min, int max) { 142 return this == obj || (obj != null && obj instanceof Range && compareTo((Range)obj) == 0); 145 public int compareTo(Range that) { 164 private final Range[] ranges; 167 ranges = new Range[array.length]; 169 ranges[i] = new Range(array[i], array[i]) [all...] |
/external/clang/unittests/Format/ |
SortIncludesTest.cpp | 23 std::vector<tooling::Range> GetCodeRange(StringRef Code) { 24 return std::vector<tooling::Range>(1, tooling::Range(0, Code.size()));
|
/external/libvpx/libvpx/test/ |
altref_test.cc | 19 // lookahead range: [kLookAheadMin, kLookAheadMax). 67 ::testing::Range(kLookAheadMin, kLookAheadMax)); 147 ::testing::Range(0, 9)); 151 ::testing::Range(0, 9));
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_pstipple.c | 207 for (i = decl->Range.First; i <= decl->Range.Last; i++) { 212 pctx->maxInput = MAX2(pctx->maxInput, (int) decl->Range.Last); 214 pctx->wincoordInput = (int) decl->Range.First; 218 for (i = decl->Range.First; i <= decl->Range.Last; i++) { 305 decl.Range.First = 306 decl.Range.Last = wincoordInput; 314 decl.Range.First = 315 decl.Range.Last = pctx->freeSampler [all...] |
/external/webrtc/talk/app/webrtc/java/android/org/webrtc/ |
Camera2Enumerator.java | 39 import android.util.Range; 88 final Range<Integer>[] fpsRanges = 91 for (Range<Integer> fpsRange : fpsRanges) {
|
/frameworks/base/core/java/android/hardware/camera2/utils/ |
SurfaceUtils.java | 23 import android.util.Range; 131 * and that the FPS range is supported 134 * @param fpsRange the target high-speed FPS range to validate 138 Range<Integer> fpsRange, StreamConfigurationMap config) { 148 // Check the FPS range first if provided 149 Range<Integer>[] highSpeedFpsRanges = config.getHighSpeedVideoFpsRanges(); 151 throw new IllegalArgumentException("Fps range " + fpsRange.toString() + " in the" 152 + " request is not a supported high speed fps range " +
|
/external/v8/src/crankshaft/ |
hydrogen-instructions.cc | 197 int32_t Range::Mask() const { 210 void Range::AddConstant(int32_t value) { 222 void Range::Intersect(Range* other) { 230 void Range::Union(Range* other) { 238 void Range::CombinedMax(Range* other) { 245 void Range::CombinedMin(Range* other) 1748 Range* range = r.IsSmi() local 1753 Range* range = OperandAt(0)->range()->Copy(zone); local [all...] |
hydrogen-range-analysis.h | 31 void AddRange(HValue* value, Range* range);
|
/external/llvm/lib/Support/ |
YAMLParser.cpp | 140 StringRef Range; 213 static UTF8Decoded decodeUTF8(StringRef Range) { 214 StringRef::iterator Position= Range.begin(); 215 StringRef::iterator End = Range.end(); 676 OS << T.Range << "\n"; 999 , i->Tok->Range.begin()); 1019 T.Range = StringRef(Current, 1); 1038 T.Range = StringRef(Current, 0); 1086 T.Range = StringRef(Current, EI.second); [all...] |
/external/eigen/bench/tensors/ |
benchmark.h | 30 Benchmark* Range(int lo, int hi);
|
/external/guava/guava-tests/benchmark/com/google/common/collect/ |
PowerSetBenchmark.java | 38 Set<Integer> set = ContiguousSet.create(Range.closed(1, elements), integers());
|
/external/llvm/lib/CodeGen/MIRParser/ |
MILexer.h | 127 StringRef Range; 135 MIToken &reset(TokenKind Kind, StringRef Range); 170 StringRef::iterator location() const { return Range.begin(); } 172 StringRef range() const { return Range; } function in struct:llvm::MIToken
|
/external/llvm/lib/Target/ARM/MCTargetDesc/ |
ARMUnwindOpAsm.cpp | 76 uint32_t Range = countTrailingOnes(Mask >> 5); // Exclude r4. 78 Mask &= ~(0xffffffe0u << Range); 84 EmitInt8(ARM::EHABI::UNWIND_OPCODE_POP_REG_RANGE_R4 | Range); 88 EmitInt8(ARM::EHABI::UNWIND_OPCODE_POP_REG_RANGE_R4_R14 | Range);
|
/system/update_engine/common/ |
multi_range_http_fetcher.cc | 73 Range range = ranges_[current_index_]; local 74 LOG(INFO) << "starting transfer of range " << range.ToString(); 77 base_fetcher_->SetOffset(range.offset()); 78 if (range.HasLength()) 79 base_fetcher_->SetLength(range.length()); 83 delegate_->SeekToOffset(range.offset()); 96 Range range = ranges_[current_index_] local 135 Range range = ranges_[current_index_]; local [all...] |
/device/linaro/bootloader/edk2/CorebootModulePkg/Library/CbParseLib/ |
CbParseLib.c | 87 bytes range.
246 struct cb_memory_range *Range;
271 Range = MEM_RANGE_PTR(rec, Index);
272 Start = cb_unpack64(Range->start);
273 Size = cb_unpack64(Range->size);
275 Index, Start, Start + Size - 1, Range->type));
277 if (Range->type != CB_MEM_RAM) {
314 struct cb_memory_range *Range;
337 Range = MEM_RANGE_PTR(rec, Index);
338 Start = cb_unpack64(Range->start); [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
CommonTokenStream.cs | 127 if (i > Range) 128 Range = i;
|