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

1 23 4 5 6

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
FixImportsJob.java 86 IMarker[] markers = project.findMarkers(IMarker.PROBLEM, true, IResource.DEPTH_INFINITE); local
87 for (int i = 0; i < markers.length; i++) {
88 IMarker marker = markers[i];
  /external/libvorbis/lib/
envelope.c 194 /*filters[j].markers[pos]=valmax;*/
298 for(l=0;l<last;l++)marker[l*ve->searchstep]=ve->filter[m].markers[l]*.1;
305 for(l=0;l<last;l++)marker[l*ve->searchstep]=ve->filter[m+VE_BANDS].markers[l]*.1;
365 memmove(e->filter[i].markers,
366 e->filter[i].markers+smallshift,
367 (1024-smallshift)*sizeof(*(*e->filter).markers));
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3commontreenodestream.h 264 pANTLR3_VECTOR markers; member in struct:ANTLR3_COMMON_TREE_NODE_STREAM_struct
316 * Calling mark() will push another of these on the markers stack.
  /external/chromium_org/content/shell/renderer/test_runner/
SpellCheckClient.cpp 85 const WebVector<uint32_t>& markers,
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentMarkerController.h 80 WillBeHeapVector<DocumentMarker*> markers();
  /external/chromium_org/third_party/WebKit/Source/web/
ContextMenuClientImpl.cpp 164 WillBeHeapVector<DocumentMarker*> markers = selectedFrame->document()->markers().markersInRange(selectionRange.get(), DocumentMarker::MisspellingMarkers()); local
165 if (markers.size() != 1)
167 marker = *markers[0];
318 // When Chrome enables asynchronous spellchecking, its spellchecker adds spelling markers to misspelled
319 // words and attaches suggestions to these markers in the background. Therefore, when a user right-clicks
TextFinder.cpp 185 // Remove all markers for matches found and turn off the highlighting.
186 m_ownerFrame.frame()->document()->markers().removeMarkers(DocumentMarker::TextMatch);
627 m_ownerFrame.frame()->document()->markers().addTextMatchMarker(range, activeMatch);
634 m_ownerFrame.frame()->document()->markers().setMarkersActive(range, active);
WebLocalFrameImpl.cpp     [all...]
  /external/chromium_org/third_party/simplejson/
_speedups.c 76 PyObject *markers; member in struct:_PyEncoderObject
96 {"markers", T_OBJECT, offsetof(PyEncoderObject, markers), READONLY, "markers"},
2073 PyObject *markers, *defaultfn, *encoder, *indent, *key_separator; local
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
files.py 65 markers = ['.zip'+os.sep, '.egg'+os.sep]
66 for marker in markers:
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
ConvertSwitchQuickFixProcessor.java 103 // to it. So instead we'll need to look up the markers on the line, and see
115 List<IMarker> markers = AdtUtils.findMarkersOnLine(IMarker.PROBLEM, local
117 for (IMarker marker : markers) {
AaptQuickFix.java 159 // error markers). Unfortunately, an IQuickAssistProcessor only gets
176 List<IMarker> markers = AdtUtils.findMarkersOnLine(AdtConstants.MARKER_AAPT_COMPILE, local
179 for (IMarker marker : markers) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintJob.java 145 // Delete specific markers
146 IMarker[] markers = EclipseLintClient.getMarkers(mSource); local
147 for (IMarker marker : markers) {
LintFixGenerator.java 174 List<IMarker> markers = AdtUtils.findMarkersOnLine(AdtConstants.MARKER_LINT, local
177 if (markers.size() > 0) {
178 for (IMarker marker : markers) {
213 * @param updateMarkers if true, update all markers
214 * @param resource the resource associated with the markers
409 return mGlobal ? "Clear All Lint Markers" : "Clear Markers in This File Only";
445 sb.append("Clears all lint warning markers from the project.");
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
IdeScanningContext.java 119 * Process any errors found to add error markers in the affected files (and
122 * @param async if true, delay updating markers until the next display
126 // Run asynchronously? This is necessary for example when adding markers
140 // First clear out old/previous markers
177 IMarker[] markers = resource.findMarkers(IMarker.PROBLEM, local
179 for (IMarker marker : markers) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
BaseBuilder.java 90 * compilation will not happen (we're putting markers)
174 // remove previous markers
214 * Removes markers from a resource and only the resource (not its children).
215 * @param file The file from which to delete the markers.
216 * @param markerId The id of the markers to remove. If null, all marker of
231 * Removes markers from a container and its children.
232 * @param folder The container from which to delete the markers.
233 * @param markerId The id of the markers to remove. If null, all marker of
354 // abort if there are TARGET or ADT type markers
365 IMarker[] markers = project.findMarkers(markerType, false /*includeSubtypes*/, depth) local
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebView.h 356 // Retrieves a list of spelling markers.
357 virtual void spellingMarkers(WebVector<uint32_t>* markers) = 0;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/
ProjectSelectionPage.java 263 IMarker[] markers = javaProject.getProject().findMarkers( local
266 for (IMarker marker : markers) {
  /external/chromium_org/third_party/WebKit/Source/core/editing/
CompositeEditCommand.cpp 500 static void copyMarkers(const WillBeHeapVector<DocumentMarker*>& markerPointers, Vector<DocumentMarker>& markers)
503 markers.reserveCapacity(arraySize);
505 markers.append(*markerPointers[i]);
511 DocumentMarkerController& markerController = document().markers();
512 Vector<DocumentMarker> markers; local
513 copyMarkers(markerController.markersInRange(Range::create(document(), node.get(), offset, node.get(), offset + count).get(), DocumentMarker::AllMarkers()), markers);
516 for (size_t i = 0; i < markers.size(); ++i)
517 markerController.addMarker(newRange.get(), markers[i].type(), markers[i].description());
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/test/org/antlr/runtime/test/
TestANTLRStringStream.as 88 // setup a couple of markers
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
HitTestResult.cpp 204 // Return the tool tip string associated with this point, if any. Only markers associated with bad grammar
205 // currently supply strings, but maybe someday markers associated with misspelled words will also.
209 DocumentMarker* marker = m_innerNonSharedNode->document().markers().markerContainingPoint(m_hitTestLocation.point(), DocumentMarker::Grammar);
367 return m_innerNonSharedNode->document().markers().markersInRange(
  /prebuilts/devtools/tools/lib/
draw9patch.jar 
  /external/chromium_org/third_party/WebKit/Source/core/testing/
Internals.cpp 788 return node->document().markers().markersFor(node, markerTypes).size();
798 // Only TextMatch markers can be active.
800 WillBeHeapVector<DocumentMarker*> markers = node->document().markers().markersFor(node, markerType); local
803 for (WillBeHeapVector<DocumentMarker*>::iterator iter = markers.begin(); iter != markers.end(); ++iter) {
824 WillBeHeapVector<DocumentMarker*> markers = node->document().markers().markersFor(node, markerTypes); local
825 if (markers.size() <= index)
827 return markers[index]
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
IncludeFinder.java 794 IMarker[] markers = resource.findMarkers(markerId, true, IResource.DEPTH_ZERO); local
796 for (final IMarker marker : markers) {
816 // if we couldn't get the markers, then we just mark the file again
836 IMarker[] markers = resource.findMarkers(markerId, true, IResource.DEPTH_ZERO); local
838 for (IMarker marker : markers) {
861 // if we couldn't get the markers, then we just mark the file again
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
ProjectHelper.java 702 * Returns if the project has error level markers.
708 IMarker[] markers = project.findMarkers(IMarker.PROBLEM, true, IResource.DEPTH_INFINITE); local
709 if (markers != null && markers.length > 0) {
713 for (IMarker m : markers) {
    [all...]

Completed in 612 milliseconds

1 23 4 5 6