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

123

/external/webkit/Source/WebCore/dom/
H A DDOMTextContentWalker.cpp38 static PassRefPtr<Range> getRange(const Position& start, const Position& end) function in namespace:WebCore
54 if (getRange(position.deepEquivalent(), forwardChar.range()->startPosition())->text().length() == 0)
63 m_hitOffsetInContent = getRange(backwardsChar.range()->endPosition(), position.deepEquivalent())->text().length();
64 m_contentRange = getRange(backwardsChar.range()->endPosition(), forwardChar.range()->startPosition());
78 return getRange(start, end);
/external/clang/lib/Sema/
H A DSemaStmtAttr.cpp30 S.Diag(A.getRange().getBegin(), diag::err_fallthrough_attr_wrong_target)
41 S.Diag(A.getRange().getBegin(), diag::err_fallthrough_attr_outside_switch);
44 return ::new (S.Context) FallThroughAttr(A.getRange(), S.Context);
61 S.Diag(A.getRange().getBegin(), diag::err_attribute_invalid_on_stmt)
H A DSemaDeclAttr.cpp515 GuardedVarAttr(Attr.getRange(), S.Context,
528 PtGuardedVarAttr(Attr.getRange(), S.Context,
564 D->addAttr(::new (S.Context) GuardedByAttr(Attr.getRange(), S.Context, Arg));
576 D->addAttr(::new (S.Context) PtGuardedByAttr(Attr.getRange(),
601 D->addAttr(::new (S.Context) LockableAttr(Attr.getRange(), S.Context));
610 ScopedLockableAttr(Attr.getRange(), S.Context,
627 D->addAttr(::new (S.Context) NoThreadSafetyAnalysisAttr(Attr.getRange(),
645 NoSanitizeAddressAttr(Attr.getRange(), S.Context,
662 D->addAttr(::new (S.Context) NoSanitizeMemoryAttr(Attr.getRange(),
679 D->addAttr(::new (S.Context) NoSanitizeThreadAttr(Attr.getRange(),
[all...]
H A DTargetAttributesSema.cpp150 D->addAttr(::new (S.Context) X86ForceAlignArgPointerAttr(Attr.getRange(),
195 DLLImportAttr *NewAttr = S.mergeDLLImportAttr(D, Attr.getRange(), Index);
238 DLLExportAttr *NewAttr = S.mergeDLLExportAttr(D, Attr.getRange(), Index);
283 D->addAttr(::new (S.Context) Mips16Attr(Attr.getRange(), S.Context,
300 NoMips16Attr(Attr.getRange(), S.Context,
H A DSemaCXXScopeSpec.cpp221 if (loc.isInvalid()) loc = SS.getRange().getBegin();
225 SS.getRange())) {
226 SS.SetInvalid(SS.getRange());
245 SS.SetInvalid(SS.getRange());
253 << type << SS.getRange();
254 SS.SetInvalid(SS.getRange());
344 Found.setContextRange(SS.getRange());
431 Found.setContextRange(SS.getRange());
516 << Name << LookupCtx << CorrectedQuotedStr << SS.getRange()
679 << &Identifier << LookupCtx << SS.getRange();
[all...]
H A DSemaExprMember.cpp187 if (SS.isSet()) Range.setBegin(SS.getRange().getBegin());
485 << SS.getRange() << rep << BaseType;
581 SemaRef.Diag(SS.getRange().getEnd(), diag::err_typecheck_incomplete_tag)
582 << SS.getRange() << DC;
590 << DC << SS.getRange();
617 << Name << DC << CorrectedQuotedStr << SS.getRange()
933 if (SS.getRange().isValid())
934 Loc = SS.getRange().getBegin();
1132 Diag(SS.getRange().getBegin(), diag::err_qualified_objc_access)
1134 << FixItHint::CreateRemoval(SS.getRange());
[all...]
/external/webkit/Tools/DumpRenderTree/chromium/
H A DPlainTextController.cpp66 if (!WebBindings::getRange(npobject, &range))
/external/webkit/Source/JavaScriptCore/parser/
H A DSourceProvider.h56 virtual UString getRange(int start, int end) const = 0;
86 UString getRange(int start, int end) const function in class:JSC::UStringSourceProvider
H A DSourceCode.h67 return m_provider->getRange(m_startChar, m_endChar);
/external/clang/lib/Lex/
H A DPPExpressions.cpp45 const SourceRange &getRange() const { return Range; } function in class:__anon3808::PPValue
339 << Result.getRange();
371 PP.Diag(Loc, diag::warn_pp_expr_overflow) << Result.getRange();
459 << LHS.getRange();
503 << RHS.getRange();
551 << LHS.getRange() << RHS.getRange();
556 << LHS.getRange() << RHS.getRange();
570 << 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.h84 virtual CXSourceRange getRange(unsigned Range) const = 0;
145 virtual CXSourceRange getRange(unsigned Range) const;
H A DCXLoadedDiagnostic.h53 virtual CXSourceRange getRange(unsigned Range) const;
H A DCXStoredDiagnostic.cpp88 CXSourceRange CXStoredDiagnostic::getRange(unsigned int Range) const { function in class:CXStoredDiagnostic
H A DCIndexDiagnostic.cpp77 CXSourceRange getRange(unsigned Range) const { return clang_getNullRange(); } function in class:__anon5070::CXDiagnosticCustomNoteImpl
419 return D->getRange(Range);
/external/webkit/Source/WebCore/bindings/js/
H A DCachedScriptSourceProvider.h48 JSC::UString getRange(int start, int end) const { return JSC::UString(m_cachedScript->script().characters() + start, end - start); } function in class:WebCore::CachedScriptSourceProvider
H A DStringSourceProvider.h46 JSC::UString getRange(int start, int end) const { return JSC::UString(m_source.characters() + start, end - start); } function in class:WebCore::StringSourceProvider
/external/clang/include/clang/AST/
H A DAttr.h89 SourceRange getRange() const { return Range; } function in class:clang::Attr
/external/webkit/Source/WebKit/chromium/public/
H A DWebBindings.h133 WEBKIT_API static bool getRange(NPObject* range, WebRange*);
/external/clang/unittests/AST/
H A DMatchVerifier.h152 /// by overriding getRange().
166 SourceRange R = getRange(Node);
187 virtual SourceRange getRange(const NodeType &Node) { function in class:clang::ast_matchers::RangeVerifier
H A DSourceLocationTest.cpp63 virtual SourceRange getRange(const LabelStmt &Node) { function in class:clang::ast_matchers::LabelDeclRangeVerifier
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/heightmap/
H A DMidpointDisplacementHeightMap.java258 public float getRange() { method in class:MidpointDisplacementHeightMap

Completed in 2789 milliseconds

123