HomeSort by relevance Sort by last modified time
    Searched defs:Range (Results 51 - 75 of 127) sorted by null

1 23 4 5 6

  /external/clang/lib/Sema/
SemaExceptionSpec.cpp 44 bool Sema::CheckSpecifiedExceptionType(QualType &T, const SourceRange &Range) {
74 Diag(Range.getBegin(), diag::err_rref_in_exception_spec)
75 << T << Range;
88 RequireCompleteType(Range.getBegin(), PointeeT,
89 diag::err_incomplete_in_exception_spec, Kind, Range))
    [all...]
Sema.cpp     [all...]
SemaCast.cpp 307 SourceRange range, Expr *src,
330 = (CT == CT_CStyle)? InitializationKind::CreateCStyleCast(range.getBegin(),
331 range, listInitialization)
332 : (CT == CT_Functional)? InitializationKind::CreateFunctionalCast(range,
334 : InitializationKind::CreateCast(/*type range?*/ range);
372 S.Diag(range.getBegin(), msg)
374 << range << src->getSourceRange();
    [all...]
SemaExprMember.cpp 186 SourceRange Range(Loc);
187 if (SS.isSet()) Range.setBegin(SS.getRange().getBegin());
200 << Range << nameInfo.getName();
206 << IsField << RepClass << nameInfo.getName() << ContextClass << Range;
209 << nameInfo.getName() << Range;
212 << Range;
    [all...]
  /external/clang/tools/libclang/
CIndexDiagnostic.cpp 77 CXSourceRange getRange(unsigned Range) const { return clang_getNullRange(); }
267 CXSourceRange Range = clang_getDiagnosticRange(Diagnostic, I);
270 clang_getSpellingLocation(clang_getRangeStart(Range),
273 clang_getSpellingLocation(clang_getRangeEnd(Range),
415 CXSourceRange clang_getDiagnosticRange(CXDiagnostic Diag, unsigned Range) {
417 if (!D || Range >= D->getNumRanges())
419 return D->getRange(Range);
  /external/jmonkeyengine/engine/src/tools/jme3tools/optimize/
TriangleCollector.java 63 private static class Range {
67 public Range(int start, int length) {
101 HashMap<Integer, Range> ranges = new HashMap<Integer, Range>();
104 Range r = ranges.get(tris.get(i).getGeometryIndex());
110 ranges.put(tris.get(i).getGeometryIndex(), new Range(i, 1));
119 for (Map.Entry<Integer, Range> entry : ranges.entrySet()){
  /libcore/luni/src/main/java/java/text/
AttributedString.java 39 Map<AttributedCharacterIterator.Attribute, List<Range>> attributeMap;
41 static class Range {
48 Range(int s, int e, Object v) {
154 private boolean inRange(Range range) {
155 if (!(range.value instanceof Annotation)) {
158 return range.start >= begin && range.start < end
159 && range.end > begin && range.end <= end
165 Range range = it.next(); local
209 Range range = it.next(); local
257 Range range = it.previous(); local
305 Range range = it.next(); local
634 Range range = it.next(); local
    [all...]
  /external/clang/include/clang/Lex/
PreprocessingRecord.h 77 /// \brief The source range that covers this preprocessed entity.
78 SourceRange Range;
81 PreprocessedEntity(EntityKind Kind, SourceRange Range)
82 : Kind(Kind), Range(Range) { }
90 /// \brief Retrieve the source range that covers this entire preprocessed
92 SourceRange getSourceRange() const LLVM_READONLY { return Range; }
126 PreprocessingDirective(EntityKind Kind, SourceRange Range)
127 : PreprocessedEntity(Kind, Range) { }
142 explicit MacroDefinition(const IdentifierInfo *Name, SourceRange Range)
    [all...]
Preprocessor.h 307 SourceRange Range;
308 MacroExpandsInfo(Token Tok, MacroDirective *MD, SourceRange Range)
309 : Tok(Tok), MD(MD), Range(Range) { }
    [all...]
  /external/llvm/include/llvm/Support/
IntegersSubset.h 204 assert(!IsEmpty && "Range is empty.");
208 assert(!IsEmpty && "Range is empty.");
213 assert(!IsEmpty && "Left range is empty.");
214 assert(!RHS.IsEmpty && "Right range is empty.");
226 assert(!IsEmpty && "Left range is empty.");
227 assert(!RHS.IsEmpty && "Right range is empty.");
240 assert(!IsEmpty && "Range is empty.");
247 // RHS is either more global and includes this range or
248 // if it doesn't intersected with this range.
284 // numbers collection, and define range as pair of indices
    [all...]
  /external/llvm/lib/Analysis/
LazyValueInfo.cpp 70 /// constantrange - The Value falls within this range.
82 ConstantRange Range;
85 LVILatticeVal() : Tag(undefined), Val(0), Range(1, true) {}
123 "Cannot get the constant-range of a non-constant-range!");
124 return Range;
175 bool changed = Range != NewR;
176 Range = NewR;
185 Range = NewR;
198 Range = RHS.Range
    [all...]
  /external/llvm/lib/CodeGen/
LiveDebugVariables.cpp 216 /// range of VNI.
222 /// @param Kills Append end points of VNI's live range to Kills.
236 /// @param Kills Points where the range of LocNo could be extended.
502 // Limit to VNI's live range.
505 LiveRange *Range = LI->getLiveRangeContaining(Start);
506 if (!Range || Range->valno != VNI) {
511 if (Range->end < Stop)
512 Stop = Range->end, ToEnd = false;
528 // Limited by VNI's live range
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 170 CaseBB(bb), LT(lt), GE(ge), Range(r) {}
178 /// Range - A pair of iterators representing the range of case values to be
180 CaseRange Range;
210 // Emit by default LHS op RHS. MHS is used for range comparisons:
235 /// Default - the MBB of the default bb, which is a successor of the range
268 First(F), Range(R), SValue(SV), Reg(Rg), RegVT(RgVT), Emitted(E),
271 APInt Range;
  /external/llvm/lib/Transforms/Scalar/
MemCpyOptimizer.cpp 118 /// MemsetRange - Represents a range of memset'd bytes with the ByteVal value.
125 /// the first store, we make a range [1, 2). The second store extends the range
126 /// to [0, 2). The third makes a new range [2, 3). The fourth store joins the
130 // Start/End - A semi range that describes the span that this range covers.
131 // The range is closed at the start and open at the end: [Start, End).
135 /// range.
141 /// TheStores - The actual stores that make up this range.
232 /// new range for the specified store at the specified offset, merging int
    [all...]
  /external/webkit/Source/WebCore/html/parser/
HTMLToken.h 48 class Range {
56 Range m_nameRange;
57 Range m_valueRange;
362 Range m_range; // Always starts at zero.
  /external/clang/include/clang/AST/
Comment.h 58 /// Source range of this AST node.
59 SourceRange Range;
165 Range = SR;
187 Loc(LocBegin), Range(SourceRange(LocBegin, LocEnd)) {
203 SourceRange getSourceRange() const LLVM_READONLY { return Range; }
206 return Range.getBegin();
210 return Range.getEnd();
293 SourceRange Range;
296 Argument(SourceRange Range, StringRef Text) : Range(Range), Text(Text) {
    [all...]
ExprCXX.h 55 SourceRange Range;
70 Range = getSourceRangeImpl();
87 SourceLocation getLocStart() const LLVM_READONLY { return Range.getBegin(); }
88 SourceLocation getLocEnd() const LLVM_READONLY { return Range.getEnd(); }
89 SourceRange getSourceRange() const { return Range; }
182 SourceRange AngleBrackets; // range for '<' '>'
484 SourceRange Range;
495 Operand(Operand), Range(R) { }
505 Operand(Operand), Range(R) { }
546 SourceLocation getLocStart() const LLVM_READONLY { return Range.getBegin();
    [all...]
ExprObjC.h 95 SourceRange Range;
102 SubExpr(E), BoxingMethod(method), Range(R) {}
113 SourceLocation getAtLoc() const { return Range.getBegin(); }
115 SourceLocation getLocStart() const LLVM_READONLY { return Range.getBegin(); }
116 SourceLocation getLocEnd() const LLVM_READONLY { return Range.getEnd(); }
118 return Range;
135 SourceRange Range;
153 SourceLocation getLocStart() const LLVM_READONLY { return Range.getBegin(); }
154 SourceLocation getLocEnd() const LLVM_READONLY { return Range.getEnd(); }
155 SourceRange getSourceRange() const LLVM_READONLY { return Range; }
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/BugReporter/
PathDiagnostic.h 134 PathDiagnosticRange Range;
139 Loc(genLocation(L)), Range(genRange()) {
162 Range(genRange(lac)) {
165 assert(K == SingleLocK || Range.isValid());
171 Loc(genLocation()), Range(genRange()) {
174 assert(Range.isValid());
181 : K(SingleLocK), S(0), D(0), SM(&sm), Loc(loc, sm), Range(genRange()) {
183 assert(Range.isValid());
253 return K == X.K && Loc == X.Loc && Range == X.Range;
    [all...]
  /external/clang/lib/Parse/
ParseExprCXX.cpp 54 SourceRange Range;
55 Range.setBegin(DigraphToken.getLocation());
56 Range.setEnd(ColonToken.getLocation());
59 << FixItHint::CreateReplacement(Range, "< ::");
248 // Include code completion token into the range of the scope otherwise
668 Intro.Range.setBegin(T.getOpenLocation());
761 Intro.Range.setEnd(T.getCloseLocation());
787 SourceLocation LambdaBeginLoc = Intro.Range.getBegin();
850 SourceRange Range;
851 TrailingReturnType = ParseTrailingReturnType(Range);
    [all...]
  /external/icu4c/tools/gennorm2/
n2builder.cpp 66 struct Range {
72 const Range *nextRange() {
81 static const Range ranges[4];
85 const HangulIterator::Range HangulIterator::ranges[4]={
992 const HangulIterator::Range *range; local
    [all...]
  /external/llvm/lib/MC/
MCDwarf.cpp 44 // was chosen to give a reasonable range of values.
47 // Range of line offsets in a special line info. opcode.
404 // If the line increment is out of range of a special opcode, we must encode
    [all...]
  /frameworks/av/services/camera/libcameraservice/camera2/
Parameters.h 297 struct Range {
  /frameworks/native/opengl/tests/hwc/
hwcCommit.cpp 181 class Range {
183 Range(void) : _l(0), _u(0) {}
184 Range(uint32_t lower, uint32_t upper) : _l(lower), _u(upper) {}
195 Range::operator string()
218 static void double2Rational(double f, Range nRange, Range dRange,
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
RichInputConnection.java 441 * Represents a range of text, relative to the current cursor position.
443 public static final class Range {
456 public Range(int charsBefore, int charsAfter, CharSequence word) {
512 Range r = getWordRangeAtCursor(separators, 0);
521 * be included in the returned range
522 * @return a range containing the text surrounding the cursor
524 public Range getWordRangeAtCursor(final String sep, final int additionalPrecedingWordsCount) {
577 return new Range(before.length() - startIndexInBefore, endIndexInAfter, word);
    [all...]

Completed in 707 milliseconds

1 23 4 5 6