HomeSort by relevance Sort by last modified time
    Searched full:markers (Results 1 - 25 of 430) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/markdown/tests/extensions-x-footnotes/
named_markers.txt 2 that have named[^bar] markers and
3 oddly[^56] numbered[^99] markers.
named_markers.html 2 that have named<sup id="fnref:bar"><a href="#fn:bar" rel="footnote">2</a></sup> markers and
3 oddly<sup id="fnref:56"><a href="#fn:56" rel="footnote">3</a></sup> numbered<sup id="fnref:99"><a href="#fn:99" rel="footnote">4</a></sup> markers.</p>
  /external/markdown/tests/misc/
br.txt 14 `+`, and `-`) as list markers. These three markers are
br.html 10 <code>+</code>, and <code>-</code>) as list markers. These three markers are
  /external/webkit/Source/WebCore/dom/
DocumentMarkerController.cpp 85 // Markers are stored in order sorted by their start offset.
86 // Markers of the same type do not overlap each other.
104 Vector<DocumentMarker>& markers = vectorPair->first; local
106 size_t numMarkers = markers.size();
109 // Iterate over all markers whose start offset is less than or equal to the new marker's.
113 DocumentMarker marker = markers[i];
118 markers.remove(i);
125 // Iterate over all markers whose end offset is less than or equal to the new marker's,
126 // removing markers of the same type as the new marker which touch it or intersect with it,
129 DocumentMarker marker = markers[j]
172 Vector<DocumentMarker>& markers = vectorPair->first; local
287 Vector<DocumentMarker>& markers = vectorPair->first; local
334 Vector<DocumentMarker> markers = markersForNode(node); local
362 Vector<DocumentMarker>& markers = vectorPair->first; local
424 Vector<DocumentMarker>& markers = vectorPair->first; local
475 Vector<DocumentMarker>& markers = vectorPair->first; local
504 Vector<DocumentMarker>& markers = vectorPair->first; local
629 Vector<DocumentMarker> markers = markersForNode(node); local
661 Vector<DocumentMarker>& markers = vectorPair->first; local
689 Vector<DocumentMarker>& markers = vectorPair->first; local
    [all...]
  /external/webkit/Source/WebCore/editing/
SpellingCorrectionController.cpp 73 static bool markersHaveIdenticalDescription(const Vector<DocumentMarker>& markers)
75 if (markers.isEmpty())
78 const String& description = markers[0].description;
79 for (size_t i = 1; i < markers.size(); ++i) {
80 if (description != markers[i].description)
151 return !m_frame->document()->markers()->hasMarkers(misspellingRange.get(), DocumentMarker::SpellCheckingExemption);
208 // After we replace the word at range rangeToBeReplaced, we need to add markers to that range.
237 DocumentMarkerController* markers = replacementRange->startContainer()->document()->markers();
244 markers->addMarker(replacementRange.get(), markerType, description)
276 DocumentMarkerController* markers = m_frame->document()->markers(); local
388 Vector<DocumentMarker> markers = node->document()->markers()->markersForNode(node); local
449 DocumentMarkerController* markers = replacedRange->startContainer()->document()->markers(); local
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/thirdparty/simplejson/
encoder.py 168 def _iterencode_list(self, lst, markers=None):
172 if markers is not None:
174 if markerid in markers:
176 markers[markerid] = lst
192 for chunk in self._iterencode(value, markers):
198 if markers is not None:
199 del markers[markerid]
201 def _iterencode_dict(self, dct, markers=None):
205 if markers is not None:
207 if markerid in markers
    [all...]
  /external/clang/test/Preprocessor/
pragma_sysheader.c 7 // PR9861: Verify that line markers are not messed up in -E mode.
  /external/guava/
README.android 8 "BEGIN/END android-changed" markers.
  /external/jpeg/
rdjpgcom.1 44 will also attempt to print the contents of any "APP12" markers as text.
45 Some digital cameras produce APP12 markers containing useful textual
transupp.h 118 * Support for copying optional markers from source to destination file.
122 JCOPYOPT_NONE, /* copy no optional markers */
123 JCOPYOPT_COMMENTS, /* copy only comment (COM) markers */
124 JCOPYOPT_ALL /* copy all optional markers */
129 /* Setup decompression object to save desired markers in memory */
132 /* Copy markers saved in the given source object to the destination object */
rdjpgcom.c 9 * the text in COM (comment) markers in a JFIF file.
11 * JPEG markers.
84 /* All 2-byte quantities in JPEG markers are MSB first */
101 * JPEG markers consist of one or more 0xFF bytes, followed by a marker
110 #define M_SOF5 0xC5 /* NB: codes C4 and CC are NOT SOF markers */
131 * There could also be non-FF garbage between markers. The treatment of such
191 * such bytes do NOT introduce new markers.
315 * display any COM markers.
316 * While the companion program wrjpgcom will always insert COM markers before
319 * (Conversely, if we only cared about COM markers, there would be no nee
    [all...]
jpegtran.1 149 also recognizes these switches that control what to do with "extra" markers,
153 Copy no extra markers from source file. This setting suppresses all
157 Copy only comment markers. This setting copies comments from the source file,
161 Copy all extra markers. This setting preserves miscellaneous markers
163 In some files these extra markers can be sizable.
wrjpgcom.c 11 * JPEG markers.
103 /* All 2-byte quantities in JPEG markers are MSB first */
152 * JPEG markers consist of one or more 0xFF bytes, followed by a marker
161 #define M_SOF5 0xC5 /* NB: codes C4 and CC are NOT SOF markers */
180 * There could also be non-FF garbage between markers. The treatment of such
240 * such bytes do NOT introduce new markers.
285 * copy data to output, but discard COM markers unless keep_COM is true.
298 /* Scan miscellaneous markers until we reach SOFn. */
562 * or JFXX markers, as required by the JFIF specification.
575 * Note that any COM markers occuring after SOF will not be touched
    [all...]
  /external/antlr/src/org/antlr/runtime/
ANTLRStringStream.java 61 protected List markers; field in class:ANTLRStringStream
151 if ( markers==null ) {
152 markers = new ArrayList();
153 markers.add(null); // depth 0 means no backtracking, leave blank
157 if ( markDepth>=markers.size() ) {
159 markers.add(state);
162 state = (CharStreamState)markers.get(markDepth);
172 CharStreamState state = (CharStreamState)markers.get(m);
185 // unwind any other markers made after m and release m
  /external/clang/test/Lexer/
conflict-marker.c 3 // Test that we recover gracefully from conflict markers left in input files.
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
atm_nicstar.h 27 /* set buffer level markers */
  /external/webkit/Source/WebCore/rendering/svg/
SVGInlineFlowBox.cpp 96 Vector<DocumentMarker> markers = document->markers()->markersForNode(textRenderer->node()); local
98 Vector<DocumentMarker>::iterator markerEnd = markers.end();
99 for (Vector<DocumentMarker>::iterator markerIt = markers.begin(); markerIt != markerEnd; ++markerIt) {
141 document->markers()->setRenderedRectForMarker(node, marker, textRenderer->localToAbsoluteQuad(markerRect).enclosingBoundingBox());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
BaseBuilder.java 70 * compilation will not happen (we're putting markers)
153 // remove previous markers
193 * Removes markers from a resource and only the resource (not its children).
194 * @param file The file from which to delete the markers.
195 * @param markerId The id of the markers to remove. If null, all marker of
210 * Removes markers from a container and its children.
211 * @param folder The container from which to delete the markers.
212 * @param markerId The id of the markers to remove. If null, all marker of
311 // abort if there are TARGET or ADT type markers
322 IMarker[] markers = project.findMarkers(markerType, false /*includeSubtypes*/, depth) local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/build/
AaptParserTest.java 171 IMarker[] markers = file.findMarkers(AdtConstants.MARKER_AAPT_COMPILE, true, local
173 for (IMarker marker : markers) {
178 markers = file.findMarkers(AdtConstants.MARKER_AAPT_COMPILE, true,
180 assertNotNull(markers);
181 assertEquals(1, markers.length);
188 IMarker marker = markers[0];
AaptQuickFixTest.java 96 // Run AaptParser such that markers are added...
123 IMarker[] markers = file.findMarkers(AdtConstants.MARKER_AAPT_COMPILE, true, local
125 for (IMarker marker : markers) {
196 // Insert selection markers -- [ ] for the selection range, ^ for the caret
230 IMarker[] markers = file.findMarkers(AdtConstants.MARKER_AAPT_COMPILE, true, local
232 assertEquals(1, markers.length);
233 IMarker marker = markers[0];
  /external/chromium/chrome/common/extensions/docs/examples/extensions/mappy/
popup.html 25 "&markers=" + latlng + "&zoom=14" +
  /external/clang/include/clang/Frontend/
PreprocessorOutputOptions.h 21 unsigned ShowLineMarkers : 1; ///< Show #line markers.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
ClearLintMarkersAction.java 24 /** Action which clear lint markers from the current project */
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
IdeScanningContext.java 95 * Process any errors found to add error markers in the affected files (and
98 * @param async if true, delay updating markers until the next display
102 // Run asynchronously? This is necessary for example when adding markers
115 // First clear out old/previous markers

Completed in 900 milliseconds

1 2 3 4 5 6 7 8 91011>>