Searched refs:Range (Results 201 - 225 of 370) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/dom/
H A DDocumentMarkerController.cpp31 #include "Range.h"
60 void DocumentMarkerController::addMarker(Range* range, DocumentMarker::MarkerType type, String description)
64 RefPtr<Range> textPiece = markedText.range();
71 void DocumentMarkerController::removeMarkers(Range* range, DocumentMarker::MarkerTypes markerTypes, RemovePartiallyOverlappingMarkerOrNot shouldRemovePartiallyOverlappingMarker)
78 RefPtr<Range> textPiece = markedText.range();
320 Vector<DocumentMarker> DocumentMarkerController::markersInRange(Range* range, DocumentMarker::MarkerType markerType)
568 void DocumentMarkerController::setMarkersActive(Range* range, bool active)
616 bool DocumentMarkerController::hasMarkers(Range* range, DocumentMarker::MarkerTypes markerTypes)
644 void DocumentMarkerController::clearDescriptionOnMarkersIntersectingRange(Range* range, DocumentMarker::MarkerTypes markerTypes)
H A DPosition.h43 class Range;
/external/webkit/Source/WebCore/platform/win/
H A DPasteboardWin.cpp39 #include "Range.h"
117 void Pasteboard::writeSelection(Range* selectedRange, bool canSmartCopyOrDelete, Frame* frame)
283 PassRefPtr<DocumentFragment> Pasteboard::documentFragment(Frame* frame, PassRefPtr<Range> context, bool allowPlainText, bool& chosePlainText)
H A DDragDataWin.cpp164 PassRefPtr<DocumentFragment> DragData::asFragment(Frame* frame, PassRefPtr<Range>, bool, bool&) const
/external/webkit/Source/WebCore/platform/wince/
H A DPasteboardWinCE.cpp40 #include "Range.h"
111 void Pasteboard::writeSelection(Range* selectedRange, bool canSmartCopyOrDelete, Frame* frame)
264 PassRefPtr<DocumentFragment> Pasteboard::documentFragment(Frame* frame, PassRefPtr<Range> context, bool allowPlainText, bool& chosePlainText)
/external/clang/lib/Lex/
H A DPPExpressions.cpp34 SourceRange Range; member in class:__anon127::PPValue
44 const SourceRange &getRange() const { return Range; }
46 void setRange(SourceLocation L) { Range.setBegin(L); Range.setEnd(L); }
48 Range.setBegin(B); Range.setEnd(E);
50 void setBegin(SourceLocation L) { Range.setBegin(L); }
51 void setEnd(SourceLocation L) { Range.setEnd(L); }
/external/llvm/lib/CodeGen/
H A DCriticalAntiDepBreaker.cpp605 Range = RegRefs.equal_range(AntiDepReg); local
606 if (unsigned NewReg = findSuitableFreeRegister(Range.first, Range.second,
618 Q = Range.first, QE = Range.second; Q != QE; ++Q) {
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DDumpRenderTreeSupportGtk.cpp140 Range* range = toRange(toJS(exec, value));
563 RefPtr<Range> range = TextIterator::rangeFromLocationAndLength(scope, location, length);
582 RefPtr<Range> range = frame->selection()->toNormalizedRange().get();
587 RefPtr<Range> testRange = Range::create(scope->document(), scope, 0, range->startContainer(), range->startOffset());
/external/webkit/Source/WebKit/mac/WebCoreSupport/
H A DWebEditorClient.mm232 bool WebEditorClient::shouldDeleteRange(Range* range)
254 bool WebEditorClient::shouldApplyStyle(CSSStyleDeclaration* style, Range* range)
260 bool WebEditorClient::shouldMoveRangeAfterDelete(Range* range, Range* rangeToBeReplaced)
266 bool WebEditorClient::shouldBeginEditing(Range* range)
274 bool WebEditorClient::shouldEndEditing(Range* range)
280 bool WebEditorClient::shouldInsertText(const String& text, Range* range, EditorInsertAction action)
286 bool WebEditorClient::shouldChangeSelectedRange(Range* fromRange, Range* toRange, EAffinity selectionAffinity, bool stillSelecting)
483 bool WebEditorClient::shouldInsertNode(Node *node, Range* replacingRang
[all...]
/external/clang/lib/Frontend/
H A DSerializedDiagnosticPrinter.cpp283 void SDiagsWriter::AddCharSourceRangeToRecord(CharSourceRange Range, argument
286 AddLocToRecord(Range.getBegin(), Record, &SM);
288 if (Range.isTokenRange())
289 TokSize = Lexer::MeasureTokenLength(Range.getEnd(),
292 AddLocToRecord(Range.getEnd(), Record, &SM, TokSize);
/external/clang/lib/Parse/
H A DParseDeclCXX.cpp453 attrs.Range = SourceRange();
514 SourceRange Range; local
516 Range = SourceRange(Name.TemplateId->LAngleLoc,
519 Range = TemplateInfo.getSourceRange();
520 Diag(Range.getBegin(), diag::err_alias_declaration_specialization)
521 << SpecKind << Range; local
1192 SourceRange Range(NameLoc);
1194 Range.setBegin(SS.getBeginLoc());
1197 << Name << static_cast<int>(TemplateId->Kind) << Range;
1575 SourceRange Range(StartLo
2712 SourceRange Range; local
2744 ParseTrailingReturnType(SourceRange &Range) argument
[all...]
/external/webkit/Source/WebCore/editing/
H A DInsertListCommand.cpp138 RefPtr<Range> currentSelection = endingSelection().firstRange();
158 RefPtr<Range> lastSelectionRange = TextIterator::rangeFromLocationAndLength(document()->documentElement(), indexForEndOfSelection, 0, true);
189 void InsertListCommand::doApplyForSingleParagraph(bool forceCreateList, const QualifiedName& listTag, Range* currentSelection)
H A DApplyBlockElementCommand.cpp89 RefPtr<Range> startRange = TextIterator::rangeFromLocationAndLength(document()->documentElement(), startIndex, 0, true);
90 RefPtr<Range> endRange = TextIterator::rangeFromLocationAndLength(document()->documentElement(), endIndex, 0, true);
/external/webkit/Source/WebKit2/WebProcess/WebPage/win/
H A DWebPageWin.cpp343 if (RefPtr<Range> range = frame->editor()->hasComposition() ? frame->editor()->compositionRange() : frame->selection()->selection().toNormalizedRange()) {
345 RefPtr<Range> tempRange = range->cloneRange(ec);
355 RefPtr<Range> selectedRange = frame->selection()->toNormalizedRange();
/external/clang/lib/CodeGen/
H A DCodeGenAction.cpp251 std::pair<unsigned, unsigned> Range = D.getRanges()[i]; local
253 B << SourceRange(Loc.getLocWithOffset(Range.first - Column),
254 Loc.getLocWithOffset(Range.second - Column));
/external/clang/lib/Sema/
H A DSemaStmt.cpp1658 Stmt *First, SourceLocation ColonLoc, Expr *Range,
1660 if (!First || !Range)
1663 if (ObjCEnumerationCollection(Range))
1664 return ActOnObjCForCollectionStmt(ForLoc, First, Range, RParenLoc);
1676 if (DiagnoseUnexpandedParameterPack(Range, UPPC_Expression))
1680 SourceLocation RangeLoc = Range->getLocStart();
1684 if (FinishForRangeVarDecl(*this, RangeVar, Range, RangeLoc,
1791 Expr *Range,
1795 ExprResult AdjustedRange = SemaRef.BuildUnaryOp(S, RangeLoc, UO_Deref, Range);
1838 Expr *Range local
1657 ActOnCXXForRangeStmt(SourceLocation ForLoc, Stmt *First, SourceLocation ColonLoc, Expr *Range, SourceLocation RParenLoc, bool ShouldTryDeref) argument
1787 RebuildForRangeWithDereference(Sema &SemaRef, Scope *S, SourceLocation ForLoc, Stmt *LoopVarDecl, SourceLocation ColonLoc, Expr *Range, SourceLocation RangeLoc, SourceLocation RParenLoc) argument
1923 Expr *Range = BEFFailure ? EndRangeRef.get() : BeginRangeRef.get(); local
[all...]
/external/chromium/testing/gtest/test/
H A Dgtest_repeat_test.cc137 testing::Range(0, kNumberOfParamTests));
/external/gtest/test/
H A Dgtest_repeat_test.cc137 testing::Range(0, kNumberOfParamTests));
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h170 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; member in struct:llvm::SelectionDAGBuilder::CaseRec
268 First(F), Range(R), SValue(SV), Reg(Rg), RegVT(RgVT), Emitted(E),
271 APInt Range; member in struct:llvm::SelectionDAGBuilder::BitTestBlock
/external/llvm/lib/VMCore/
H A DVerifier.cpp811 std::map<IntegersSubset::Range, unsigned> RangeSetMap;
815 IntegersSubset::Range r = CaseRanges.getItem(ri);
1395 if (MDNode *Range = LI.getMetadata(LLVMContext::MD_range)) {
1396 unsigned NumOperands = Range->getNumOperands();
1397 Assert1(NumOperands % 2 == 0, "Unfinished range!", Range);
1399 Assert1(NumRanges >= 1, "It should have at least one range!", Range);
1403 ConstantInt *Low = dyn_cast<ConstantInt>(Range->getOperand(2*i));
1405 ConstantInt *High = dyn_cast<ConstantInt>(Range->getOperand(2*i + 1));
1408 High->getType() == ElTy, "Range types must match load type!",
1415 "Range mus
[all...]
/external/protobuf/gtest/test/
H A Dgtest_repeat_test.cc137 testing::Range(0, kNumberOfParamTests));
/external/webkit/Source/WebCore/html/
H A DHTMLFormControlElement.h209 PassRefPtr<Range> selection() const;
/external/webkit/Source/WebCore/platform/haiku/
H A DClipboardHaiku.cpp190 void ClipboardHaiku::writeRange(Range*, Frame*)
/external/clang/include/clang/AST/
H A DExprObjC.h97 SourceRange Range; member in class:clang::ObjCBoxedExpr
104 SubExpr(E), BoxingMethod(method), Range(R) {}
115 SourceLocation getAtLoc() const { return Range.getBegin(); }
118 return Range;
136 SourceRange Range; member in class:clang::ObjCArrayLiteral
154 SourceRange getSourceRange() const LLVM_READONLY { return Range; }
250 SourceRange Range; member in class:clang::ObjCDictionaryLiteral
317 SourceRange getSourceRange() const LLVM_READONLY { return Range; }
/external/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp209 uint64_t Range = cast<ConstantInt>(Leaf.High)->getSExtValue() - local
211 for (uint64_t j = 0; j < Range; ++j) {

Completed in 446 milliseconds

1234567891011>>