HomeSort by relevance Sort by last modified time
    Searched full:marker (Results 26 - 50 of 1260) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/llvm/test/Transforms/ObjCARC/
contract-marker.ll 5 ; CHECK-NEXT: call void asm sideeffect "mov\09r7, r7\09\09@ marker for objc_retainAutoreleaseReturnValue", ""()
23 !0 = metadata !{metadata !"mov\09r7, r7\09\09@ marker for objc_retainAutoreleaseReturnValue"}
  /frameworks/media/libvideoeditor/osal/src/
M4PSW_Trace.c 57 va_list marker; /* pointer to list of arguments */ local
60 va_start(marker,format); /* set ptr to first argument in the list of arguments passed to the function */
61 vsprintf((char *)message, (const char *)format,marker ); /* formats and writes the data into message */
62 va_end(marker); /* reset pointer to NULL */
82 va_list marker; /* pointer to list of arguments */ local
85 va_start(marker,stringMsg); /* set ptr to first argument in the list of arguments passed to the function */
86 vsprintf((char *)message, (const char *)stringMsg,marker ); /* formats and writes the data into message */
87 va_end(marker); /* reset pointer to NULL */
  /external/chromium/chrome/common/extensions/docs/examples/extensions/mappy/
manifest.json 16 "default_icon": "marker.png",
  /external/markdown/docs/extensions/
Tables_of_Contents.txt 14 Place a marker in the document where you would like the table of contents to
16 marker. The marker defaults to ``[TOC]`` so the following document:
42 * **marker**: Text to find and replace with the Table of Contents. Defaults
  /external/markdown/tests/extensions-x-toc/
invalid.html 3 <p>The TOC marker cannot be inside a header. This test makes sure markdown doesn't
  /external/webkit/Tools/DumpRenderTree/mac/
AccessibilityTextMarkerMac.mm 33 AccessibilityTextMarker::AccessibilityTextMarker(PlatformTextMarker marker)
34 : m_textMarker(marker)
38 AccessibilityTextMarker::AccessibilityTextMarker(const AccessibilityTextMarker& marker)
39 : m_textMarker(marker.platformTextMarker())
  /external/jpeg/
rdjpgcom.c 101 * JPEG markers consist of one or more 0xFF bytes, followed by a marker
102 * code byte (which is not an FF). Here are the marker codes of interest
122 #define M_APP0 0xE0 /* Application-specific marker, type N */
128 * Find the next JPEG marker and return its marker code.
133 * NB: this routine must not be used after seeing SOS marker, since it will
149 /* Get marker code byte, swallowing any duplicate FF bytes. Extra FFs
165 * Read the initial marker, which should be SOI.
186 * Most types of marker are followed by a variable-length parameter segment.
187 * This routine skips over the parameters for any marker we don't otherwis
326 int marker; local
    [all...]
jcapimin.c 177 (*cinfo->marker->write_file_trailer) (cinfo);
185 * Write a special marker.
192 jpeg_write_marker (j_compress_ptr cinfo, int marker,
203 (*cinfo->marker->write_marker_header) (cinfo, marker, datalen);
204 write_marker_byte = cinfo->marker->write_marker_byte; /* copy for speed */
214 jpeg_write_m_header (j_compress_ptr cinfo, int marker, unsigned int datalen)
222 (*cinfo->marker->write_marker_header) (cinfo, marker, datalen);
228 (*cinfo->marker->write_marker_byte) (cinfo, val)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
BaseProjectHelper.java 102 * Adds a marker to a file on a specific line. This methods catches thrown
105 * @param markerId The id of the marker to add.
107 * @param lineNumber the line number where to put the mark. If line is < 1, it puts the marker
109 * @param severity the severity of the marker.
118 * Adds a marker to a file on a specific line, for a specific range of text. This
122 * @param markerId The id of the marker to add.
125 * the marker on line 1,
126 * @param startOffset the beginning offset of the marker (relative to the beginning of
128 * @param endOffset the ending offset of the marker
129 * @param severity the severity of the marker
135 IMarker marker = resource.createMarker(markerId); local
196 IMarker marker = project.createMarker(markerId); local
    [all...]
  /external/webkit/Source/WebCore/dom/
DocumentMarker.h 42 // if a Replacement marker contains non-empty description, a reversion UI will be shown.
45 // correction. Text with Replacement marker doesn't necessarily has CorrectionIndicator
46 // marker. For instance, after some text has been corrected, it will have both Replacement
48 // CorrectionIndicator marker, but retain Replacement marker.
52 // Text has been modified by autocorrection. The description of this marker is the original text before autocorrection.
  /external/chromium/chrome/browser/sync/engine/
store_timestamps_command.cc 32 // Update the progress marker tokens from the server result. If a marker
51 << "Get Updates got new progress marker for types: "
  /external/webkit/Source/WebCore/rendering/svg/
SVGMarkerLayoutInfo.h 36 : marker(markerObj)
39 ASSERT(marker);
42 RenderSVGResourceMarker* marker; member in struct:WebCore::MarkerLayout
SVGResourcesCycleSolver.cpp 56 // <marker id="a"> <path marker-start="url(#b)"/> ...
57 // <marker id="b" marker-start="url(#a)"/>
71 // <marker id="a"> <path marker-start="url(#b)"/> ...
72 // <marker id="b"> <path marker-start="url(#a)"/> ...
RenderSVGResourceMarker.h 48 // Calculates marker boundaries, mapped to the target element's coordinate space
69 // Generates a transformation matrix usable to render marker content. Handles scaling the marker content
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
LogCatView.java 136 IMarker marker = null; local
143 marker = file.createMarker(IMarker.TEXT);
144 marker.setAttributes(attrs);
146 marker = file.createMarker(IMarker.TEXT);
147 marker.setAttribute(IMarker.LINE_NUMBER, mLineNumber);
153 return marker;
161 IMarker marker = createMarkerFromSearchMatch(matchedFile, match); local
164 if (marker != null) {
166 showMarker(marker);
197 private void showMarker(IMarker marker) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/build/
AaptQuickFixTest.java 122 // Test marker resolution.
125 for (IMarker marker : markers) {
126 int start = marker.getAttribute(IMarker.CHAR_START, 0);
127 int end = marker.getAttribute(IMarker.CHAR_END, 0);
129 // Found the target marker. Now check the marker resolution of it.
130 assertTrue(aaptQuickFix.hasResolutions(marker));
131 IMarkerResolution[] resolutions = aaptQuickFix.getResolutions(marker);
138 // Not running marker yet -- if we create the files here they already
141 //resolution.run(marker);
233 IMarker marker = markers[0]; local
    [all...]
  /external/webkit/PerformanceTests/PageLoad/svg/files/
hereGear4.svg     [all...]
  /external/clang/test/SemaObjC/
props-on-prots.m 33 -(void) setMarker:(XCElementTabMarker *) marker;
59 - (void) setMarker:(XCElementTabMarker *) marker {
  /external/webkit/Tools/QueueStatusServer/
index.yaml 7 # index.yaml file manually, remove the above marker line (the line
9 # manually, move them above the marker line. The index.yaml file is
  /external/webkit/Tools/TestResultServer/
index.yaml 7 # index.yaml file manually, remove the above marker line (the line
9 # manually, move them above the marker line. The index.yaml file is
  /frameworks/base/media/libstagefright/
JPEGSource.cpp 45 #define JPEG_JFIF 0xE0 /* Jfif marker*/
46 #define JPEG_EXIF 0xE1 /* Exif marker*/
159 uint8_t marker; local
160 if (mSource->readAt(i++, &marker, 1) != 1) {
164 CHECK_EQ(marker, 0xff);
166 if (mSource->readAt(i++, &marker, 1) != 1) {
170 CHECK(marker != 0xff);
183 switch (marker) {
  /external/webkit/Source/WebCore/editing/
SpellingCorrectionController.h 33 // On such platform, if word with marker is edited, we need to remove the marker.
123 bool shouldStartTimeFor(const DocumentMarker& marker, int endOffset) const
125 return (((marker.type == DocumentMarker::Replacement && !marker.description.isNull())
126 || marker.type == DocumentMarker::Spelling) && static_cast<int>(marker.endOffset) == endOffset);
  /dalvik/dx/tests/115-merge/com/android/dx/merge/
DexMergeTest.java 109 Class<? extends Annotation> marker local
110 = (Class<? extends Annotation>) loader.loadClass("testdata.Annotated$Marker");
112 assertEquals("@testdata.Annotated$Marker(a=on class, b=[A, B, C], "
115 annotated.getAnnotation(marker).toString());
116 assertEquals("@testdata.Annotated$Marker(a=on method, b=[], "
118 method.getAnnotation(marker).toString());
119 assertEquals("@testdata.Annotated$Marker(a=on field, b=[], "
121 field.getAnnotation(marker).toString());
122 assertEquals("@testdata.Annotated$Marker(a=on parameter, b=[], "
  /external/webkit/Source/WebCore/svg/
svgattrs.in 116 marker-end
117 marker-mid
118 marker-start
  /libcore/luni/src/main/java/java/io/
WriteAbortedException.java 22 * an exception marker in the input stream. This marker indicates that exception
23 * occurred when the object was serialized, and this marker was inserted instead

Completed in 641 milliseconds

12 3 4 5 6 7 8 91011>>