Searched defs:markers (Results 26 - 45 of 45) sorted by relevance

12

/external/chromium_org/chrome/browser/spellchecker/
H A Dfeedback_sender.cc246 const std::vector<uint32>& markers) {
256 feedback_.FinalizeRemovedMisspellings(renderer_process_id, markers);
266 const std::vector<SpellCheckMarker>& markers,
277 for (size_t i = 0; i < markers.size(); ++i)
278 marker_map[markers[i].offset] = markers[i].hash;
356 // Request document markers from all the renderers that are still alive.
244 OnReceiveDocumentMarkers( int renderer_process_id, const std::vector<uint32>& markers) argument
263 OnSpellcheckResults( int renderer_process_id, const base::string16& text, const std::vector<SpellCheckMarker>& markers, std::vector<SpellCheckResult>* results) argument
/external/chromium_org/chrome/renderer/spellchecker/
H A Dspellcheck.cc52 const std::vector<uint32>& markers() const { return markers_; } function in class:__anon5848::DocumentMarkersCollector
63 WebVector<uint32> markers;
64 render_view->GetWebView()->spellingMarkers(&markers);
65 for (size_t i = 0; i < markers.size(); ++i)
66 markers_.push_back(markers[i]);
194 new SpellCheckHostMsg_RespondDocumentMarkers(collector.markers()));
384 // markers to them if our spellchecker tells they are correct words, i.e. they
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/toolbox/
H A DMediaQueryInspector.js251 var markers = []; variable
264 markers.push(lastMarker);
268 if (markers.length !== this._lastReportedCount) {
269 this._lastReportedCount = markers.length;
270 this.dispatchEventToListeners(WebInspector.MediaQueryInspector.Events.CountUpdated, markers.length);
281 for (var i = 0; i < markers.length; ++i) {
282 if (!i || markers[i].model.section() !== markers[i - 1].model.section())
284 var marker = markers[i];
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentMarkerController.cpp121 // Rendered rects for markers in WebKit are not populated until each time
122 // the markers are painted. However, we need it to happen sooner, because
126 DocumentMarkerVector markers = markersFor(node); local
127 toRenderedDocumentMarker(markers[markers.size() - 1])->setRenderedRect(range->boundingBox());
203 OwnPtrWillBeMember<MarkerLists>& markers = m_markers.add(node, nullptr).storedValue->value; local
204 if (!markers) {
205 markers = adoptPtrWillBeNoop(new MarkerLists);
206 markers->grow(DocumentMarker::MarkerTypeIndexesCount);
210 if (!markers
257 MarkerLists* markers = m_markers.get(srcNode); local
302 MarkerLists* markers = m_markers.get(node); local
384 MarkerLists* markers = nodeIterator->value.get(); local
401 MarkerLists* markers = m_markers.get(node); local
418 DocumentMarkerVector DocumentMarkerController::markers() function in class:blink::DocumentMarkerController
422 MarkerLists* markers = i->value.get(); local
447 DocumentMarkerVector markers = markersFor(node); local
475 MarkerLists* markers = nodeIterator->value.get(); local
513 MarkerLists* markers = i->value.get(); local
557 MarkerLists* markers = iterator->value.get(); local
602 MarkerLists* markers = i->value.get(); local
624 MarkerLists* markers = i->value.get(); local
639 MarkerLists* markers = m_markers.get(node); local
687 MarkerLists* markers = m_markers.get(node); local
724 DocumentMarkerVector markers = markersFor(node); local
748 MarkerLists* markers = m_markers.get(node); local
[all...]
H A DDocument.h777 DocumentMarkerController& markers() const { return *m_markers; } function in class:blink::Document
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DSpellChecker.cpp148 // We always recheck textfields because markers are removed from them on blur.
160 frame().document()->markers().removeMarkers(selectedRange.get(), DocumentMarker::Spelling);
312 frame().document()->markers().addMarker(badGrammarStart, badGrammarEnd, DocumentMarker::Grammar, grammarDetail.userDescription);
324 frame().document()->markers().addMarker(misspellingStart, misspellingEnd, DocumentMarker::Spelling);
343 frame().document()->markers().removeMarkers(selectedRange.get(), DocumentMarker::MisspellingMarkers());
617 misspellingRange->startContainer()->document().markers().addMarker(misspellingRange.get(), DocumentMarker::Spelling, result->replacement, result->hash);
625 badGrammarRange->startContainer()->document().markers().addMarker(badGrammarRange.get(), DocumentMarker::Grammar, detail->userDescription, result->hash);
631 invisibleSpellcheckRange->startContainer()->document().markers().addMarker(invisibleSpellcheckRange.get(), DocumentMarker::InvisibleSpellcheck, result->replacement, result->hash);
677 // We want to remove the markers from a word if an editing command will change the word. This can happen in one of
683 // remove the markers o
899 DocumentMarkerVector markers = frame().document()->markers().markersFor(node); local
[all...]
/external/chromium_org/third_party/simplejson/
H A D_speedups.c76 PyObject *markers; member in struct:_PyEncoderObject
96 {"markers", T_OBJECT, offsetof(PyEncoderObject, markers), READONLY, "markers"},
2051 s->markers = NULL;
2070 static char *kwlist[] = {"markers", "default", "encoder", "indent", "key_separator", "item_separator", "sort_keys", "skipkeys", "allow_nan", "key_memo", "use_decimal", "namedtuple_as_object", "tuple_as_array", "bigint_as_string", "item_sort_key", "Decimal", NULL};
2073 PyObject *markers, *defaultfn, *encoder, *indent, *key_separator; local
2082 &markers, &defaultfn, &encoder, &indent, &key_separator, &item_separator,
2088 s->markers = markers;
[all...]
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DEventHandler.cpp397 DocumentMarkerVector markers = innerNode->document().markers().markersInRange(makeRange(pos, pos).get(), DocumentMarker::MisspellingMarkers()); local
398 if (markers.size() == 1) {
399 start.moveToOffset(markers[0]->startOffset());
400 end.moveToOffset(markers[0]->endOffset());
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DInternals.cpp716 return node->document().markers().markersFor(node, markerTypes).size();
723 // Only TextMatch markers can be active.
725 DocumentMarkerVector markers = node->document().markers().markersFor(node, markerType); local
728 for (DocumentMarkerVector::iterator iter = markers.begin(); iter != markers.end(); ++iter) {
745 DocumentMarkerVector markers = node->document().markers().markersFor(node, markerTypes); local
746 if (markers.size() <= index)
748 return markers[inde
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebViewImpl.cpp3537 void WebViewImpl::spellingMarkers(WebVector<uint32_t>* markers) argument
3543 const DocumentMarkerVector& documentMarkers = toLocalFrame(frame)->document()->markers().markers();
3547 markers->assign(result);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.debug.core_3.6.0.v20100519.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.apt.core_3.3.401.R36_v20100727-0110.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.pde.api.tools_1.0.202.v20100820_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.pde.core_3.6.1.v20100902_r361.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 519 milliseconds

12