Searched refs:getRange (Results 1 - 25 of 65) sorted by relevance

123

/external/llvm/unittests/Support/
H A DSourceMgrTest.cpp36 SMRange getRange(unsigned Offset, unsigned Length) { function in class:__anon11315::SourceMgrTest
102 printMessage(getLoc(4), SourceMgr::DK_Error, "message", getRange(4, 3), None);
112 printMessage(getLoc(4), SourceMgr::DK_Error, "message", getRange(3, 3), None);
122 printMessage(getLoc(4), SourceMgr::DK_Error, "message", getRange(4, 7), None);
132 SMRange Ranges[] = { getRange(0, 3), getRange(4, 3) };
143 SMRange Ranges[] = { getRange(0, 3), getRange(2, 4) };
155 makeArrayRef(SMFixIt(getRange(4, 3), "zzz")));
167 makeArrayRef(SMFixIt(getRange(
[all...]
/external/clang/lib/Sema/
H A DSemaStmtAttr.cpp29 S.Diag(A.getRange().getBegin(), diag::err_fallthrough_attr_wrong_target)
39 S.Diag(A.getRange().getBegin(), diag::err_fallthrough_attr_outside_switch);
42 return ::new (S.Context) FallThroughAttr(A.getRange(), S.Context,
114 ValueExpr, A.getRange());
172 SourceLocation OptionLoc = LH->getRange().getBegin();
208 S.Diag(A.getRange().getBegin(), diag::err_attribute_invalid_on_stmt)
H A DSemaDeclAttr.cpp345 D->addAttr(::new (S.Context) AttrType(Attr.getRange(), S.Context,
581 PtGuardedVarAttr(Attr.getRange(), S.Context,
605 D->addAttr(::new (S.Context) GuardedByAttr(Attr.getRange(), S.Context, Arg,
618 D->addAttr(::new (S.Context) PtGuardedByAttr(Attr.getRange(),
656 AcquiredAfterAttr(Attr.getRange(), S.Context,
669 AcquiredBeforeAttr(Attr.getRange(), S.Context,
693 AssertSharedLockAttr(Attr.getRange(), S.Context, StartArg, Size,
706 AssertExclusiveLockAttr(Attr.getRange(), S.Context,
737 SharedTrylockFunctionAttr(Attr.getRange(), S.Context,
750 Attr.getRange(),
[all...]
H A DSemaCXXScopeSpec.cpp209 if (loc.isInvalid()) loc = SS.getRange().getBegin();
213 SS.getRange())) {
214 SS.SetInvalid(SS.getRange());
234 SS.SetInvalid(SS.getRange());
242 << type << SS.getRange();
243 SS.SetInvalid(SS.getRange());
377 Found.setContextRange(SS.getRange());
486 Found.setContextRange(SS.getRange());
602 << SS.getRange());
785 << SS.getRange();
[all...]
H A DSemaExprMember.cpp204 if (SS.isSet()) Range.setBegin(SS.getRange().getBegin());
498 << SS.getRange() << rep << BaseType;
631 SemaRef.Diag(SS.getRange().getEnd(), diag::err_typecheck_incomplete_tag)
632 << SS.getRange() << DC;
640 << DC << SS.getRange();
665 << SS.getRange());
942 if (SS.getRange().isValid())
943 Loc = SS.getRange().getBegin();
1056 if (SS.getRange().isValid())
1057 Loc = SS.getRange()
[all...]
/external/clang/lib/Lex/
H A DPPExpressions.cpp45 const SourceRange &getRange() const { return Range; } function in class:__anon1084::PPValue
349 << Result.getRange();
381 PP.Diag(Loc, diag::warn_pp_expr_overflow) << Result.getRange();
469 << LHS.getRange();
513 << RHS.getRange();
561 << LHS.getRange() << RHS.getRange();
566 << LHS.getRange() << RHS.getRange();
580 << LHS.getRange() << RH
[all...]
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRBufferedTokenStream.h60 @property (assign, getter=getRange,setter=setRange) NSInteger range;
68 - (NSInteger) getRange;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRBufferedTokenStream.h60 @property (assign, getter=getRange,setter=setRange) NSInteger range;
68 - (NSInteger) getRange;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRBufferedTokenStream.h60 @property (assign, getter=getRange,setter=setRange) NSInteger range;
68 - (NSInteger) getRange;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRBufferedTokenStream.h62 @property (assign, getter=getRange,setter=setRange:) NSInteger range;
71 - (NSInteger) getRange;
/external/clang/tools/libclang/
H A DCIndexDiagnostic.h83 virtual CXSourceRange getRange(unsigned Range) const = 0;
144 CXSourceRange getRange(unsigned Range) const override;
H A DCXLoadedDiagnostic.h53 CXSourceRange getRange(unsigned Range) const override;
H A DCXStoredDiagnostic.cpp90 CXSourceRange CXStoredDiagnostic::getRange(unsigned int Range) const { function in class:CXStoredDiagnostic
H A DCIndexDiagnostic.cpp75 CXSourceRange getRange(unsigned Range) const override {
434 return D->getRange(Range);
/external/parameter-framework/parameter/
H A DFixedPointParameterType.h68 void getRange(double& dMin, double& dMax) const;
H A DFixedPointParameterType.cpp151 getRange(dMin, dMax);
271 void CFixedPointParameterType::getRange(double& dMin, double& dMax) const function in class:CFixedPointParameterType
337 getRange(dMin, dMax);
/external/clang/unittests/AST/
H A DSourceLocationTest.cpp63 SourceRange getRange(const LabelStmt &Node) override {
114 SourceRange getRange(const MemberExpr &Node) override {
204 SourceRange getRange(const TypeLoc &Node) override {
229 SourceRange getRange(const TypeLoc &Node) override {
H A DMatchVerifier.h196 /// by overriding getRange().
211 SourceRange R = getRange(Node);
232 virtual SourceRange getRange(const NodeType &Node) { function in class:clang::ast_matchers::RangeVerifier
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DUSerializedSet.java101 public final boolean getRange(int rangeIndex, int[] range) { method in class:USerializedSet
/external/v8/tools/profviz/
H A Dprofviz.js222 var range = getRange();
251 function getRange() { function
/external/clang/include/clang/AST/
H A DAttr.h93 SourceRange getRange() const { return Range; } function in class:clang::Attr
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
H A DMidpointDisplacementHeightMap.java258 public float getRange() { method in class:MidpointDisplacementHeightMap
/external/deqp/modules/gles31/functional/
H A Des31fShaderHelperInvocationTests.cpp154 static Vec2 getRange (const glw::Functions& gl, deUint32 pname) function in namespace:deqp::gles31::Functional::__anon3675
181 const Vec2 range = getRange(gl, GL_ALIASED_POINT_SIZE_RANGE);
190 const Vec2 range = getRange(gl, GL_ALIASED_LINE_WIDTH_RANGE);
/external/llvm/include/llvm/Analysis/
H A DScalarEvolution.h391 /// UnsignedRanges - Memoized results from getRange
394 /// SignedRanges - Memoized results from getRange
397 /// RangeSignHint - Used to parameterize getRange
413 /// getRange - Determine the range for a particular SCEV.
414 ConstantRange getRange(const SCEV *S, RangeSignHint Hint);
855 return getRange(S, HINT_RANGE_UNSIGNED);
861 return getRange(S, HINT_RANGE_SIGNED);
/external/llvm/include/llvm/Support/
H A DSourceMgr.h219 SMRange getRange() const { return Range; } function in class:llvm::SMFixIt

Completed in 636 milliseconds

123