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

12 3 4 5 6 7

  /external/jpeg/
wrjpgcom.c 9 * user-supplied text as a COM (comment) marker in a JFIF file.
135 write_marker (int marker)
138 PUTBYTE(marker);
152 * JPEG markers consist of one or more 0xFF bytes, followed by a marker
153 * code byte (which is not an FF). Here are the marker codes of interest
177 * Find the next JPEG marker and return its marker code.
182 * NB: this routine must not be used after seeing SOS marker, since it will
198 /* Get marker code byte, swallowing any duplicate FF bytes. Extra FFs
214 * Read the initial marker, which should be SOI
291 int marker; local
421 int marker; local
    [all...]
jcinit.c 71 (*cinfo->marker->write_file_header) (cinfo);
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...]
transupp.c 889 jpeg_saved_marker_ptr marker; local
896 for (marker = srcinfo->marker_list; marker != NULL; marker = marker->next) {
898 marker->marker == JPEG_APP0 &&
899 marker->data_length >= 5 &&
900 GETJOCTET(marker->data[0]) == 0x4A &&
901 GETJOCTET(marker->data[1]) == 0x46 &
    [all...]
  /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...]
OldLogCatView.java 182 IMarker marker = null; local
189 marker = file.createMarker(IMarker.TEXT);
190 marker.setAttributes(map);
192 marker = file.createMarker(IMarker.TEXT);
193 marker.setAttribute(IMarker.LINE_NUMBER, mLineNumber);
199 return marker;
207 IMarker marker = createMarkerFromSearchMatch(matched_file, match); local
210 if (marker != null) {
212 openFile(matched_file, marker);
427 void openFile(IFile file, IMarker marker) {
    [all...]
  /external/antlr/src/org/antlr/runtime/debug/
DebugTokenStream.java 114 public void rewind(int marker) {
115 dbg.rewind(marker);
116 input.rewind(marker);
124 public void release(int marker) {
DebugTreeNodeStream.java 102 public void rewind(int marker) {
103 dbg.rewind(marker);
104 input.rewind(marker);
112 public void release(int marker) {
DebugEventListener.java 108 * the token stream's marker is sent in case you need it.
110 public void mark(int marker);
114 * rewound to the position associated with marker.
116 public void rewind(int marker);
118 /** Rewind to the input position of the last marker.
122 * Do not "pop" the marker off the state. mark(i)
  /packages/apps/Mms/src/org/w3c/dom/smil/
Time.java 108 * The name of the marker from the media element, for media marker times.
115 public void setMarker(String marker)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
XmlErrorHandler.java 158 IMarker marker = BaseProjectHelper.markResource(getFile(), local
162 if (marker != null) {
164 marker.setAttribute(AdtConstants.MARKER_ATTR_TYPE,
166 marker.setAttribute(AdtConstants.MARKER_ATTR_CLASS, className);
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...]
  /system/media/wilhelm/src/android/
AudioTrackProxy.h 49 void setMarkerPosition(uint32_t marker)
50 { mRaw->setMarkerPosition(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);
  /external/webkit/Source/WebCore/rendering/svg/
SVGInlineFlowBox.cpp 100 const DocumentMarker& marker = *markerIt; local
102 // SVG is only interessted in the TextMatch marker, for now.
103 if (marker.type != DocumentMarker::TextMatch)
113 int markerStartPosition = max<int>(marker.startOffset - textBox->start(), 0);
114 int markerEndPosition = min<int>(marker.endOffset - textBox->start(), textBox->len());
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/lint/
LintFix.java 87 protected LintFix(String id, IMarker marker) {
89 mMarker = marker;
172 * @param marker the marker corresponding to the error
175 public static LintFix getFix(String id, final IMarker marker) {
182 return constructor.newInstance(id, marker);
193 protected DocumentFix(String id, IMarker marker) {
194 super(id, marker);
221 private SetPropertyFix(String id, IMarker marker) {
222 super(id, marker);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
AaptQuickFix.java 66 * marker resolution (Problem view handling), since there is a lot of overlap between
87 public boolean hasResolutions(IMarker marker) {
90 message = (String) marker.getAttribute(IMarker.MESSAGE);
100 public IMarkerResolution[] getResolutions(IMarker marker) {
101 IResource markerResource = marker.getResource();
104 String message = (String) marker.getAttribute(IMarker.MESSAGE);
114 int start = marker.getAttribute(IMarker.CHAR_START, 0);
115 int end = marker.getAttribute(IMarker.CHAR_END, 0);
169 for (IMarker marker : markers) {
170 String message = marker.getAttribute(IMarker.MESSAGE, ""); //$NON-NLS-1
    [all...]
  /external/jhead/
jpgfile.c 43 // Process a COM marker.
44 // We want to print out the marker contents as legible text;
73 printf("COM marker comment: %s\n",Comment);
82 // Process a SOFn marker. This is useful for the image dimensions
84 static void process_SOFn (const uchar * Data, int marker)
99 ImageInfo.Process = marker;
127 // Parse the marker stream until SOS or EOI is seen;
141 int marker = 0; local
148 marker = fgetc(infile);
149 if (marker != 0xff) break
337 int marker = 0; local
    [all...]
  /external/astl/tests/
test_set.cpp 104 set<string>::iterator marker = res.first; local
123 EXPECT_TRUE(res.first == marker);
  /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...]
  /frameworks/media/libvideoeditor/osal/src/
M4OSA_CharStar.c 309 va_list marker; local
332 va_start(marker,format);
387 err= vsnprintf((char *)pStrOut, (size_t)strOutMaxLen + 1, (const char *)format, marker);
388 va_end(marker);
493 err = vsnprintf((char *)pStrOut, (size_t)strOutMaxLen + 1, (const char *)newFormat, marker);
494 va_end(marker);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtUtils.java 341 * @param markerType the marker type
360 for (IMarker marker : markers) {
361 int start = marker.getAttribute(IMarker.CHAR_START, -1);
362 int end = marker.getAttribute(IMarker.CHAR_END, -1);
364 matchingMarkers.add(marker);
367 int line = marker.getAttribute(IMarker.LINE_NUMBER, -1);
369 matchingMarkers.add(marker);
  /external/antlr/src/org/antlr/runtime/
ANTLRStringStream.java 184 public void release(int marker) {
186 markDepth = marker;
187 // release this marker
  /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/chromium/chrome/browser/sync/sessions/
session_state_unittest.cc 89 std::string marker(i, i);
90 download_progress_markers[i] = marker;
100 std::string marker(i, i);
102 EXPECT_TRUE(base::Base64Encode(marker, &expected_value));

Completed in 444 milliseconds

12 3 4 5 6 7