HomeSort by relevance Sort by last modified time
    Searched refs:marker (Results 1 - 25 of 577) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
JpegHeader.java 26 * SOF (start of frame). All value between SOF0 and SOF15 is SOF marker except for DHT, JPG,
27 * and DAC marker.
35 public static final boolean isSofMarker(short marker) {
36 return marker >= SOF0 && marker <= SOF15 && marker != DHT && marker != JPG
37 && marker != DAC;
  /packages/apps/Camera2/src/com/android/camera/exif/
JpegHeader.java 26 * SOF (start of frame). All value between SOF0 and SOF15 is SOF marker except for DHT, JPG,
27 * and DAC marker.
35 public static final boolean isSofMarker(short marker) {
36 return marker >= SOF0 && marker <= SOF15 && marker != DHT && marker != JPG
37 && marker != DAC;
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
JpegHeader.java 26 * SOF (start of frame). All value between SOF0 and SOF15 is SOF marker except for DHT, JPG,
27 * and DAC marker.
35 public static final boolean isSofMarker(short marker) {
36 return marker >= SOF0 && marker <= SOF15 && marker != DHT && marker != JPG
37 && marker != DAC;
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/exif/
JpegHeader.java 26 * SOF (start of frame). All value between SOF0 and SOF15 is SOF marker except for DHT, JPG,
27 * and DAC marker.
35 public static final boolean isSofMarker(short marker) {
36 return marker >= SOF0 && marker <= SOF15 && marker != DHT && marker != JPG
37 && marker != DAC;
  /packages/apps/Mms/src/com/android/mms/exif/
JpegHeader.java 26 * SOF (start of frame). All value between SOF0 and SOF15 is SOF marker except for DHT, JPG,
27 * and DAC marker.
35 public static final boolean isSofMarker(short marker) {
36 return marker >= SOF0 && marker <= SOF15 && marker != DHT && marker != JPG
37 && marker != DAC;
  /external/chromium_org/third_party/iccjpeg/
iccjpeg.c 25 * Since an ICC profile can be larger than the maximum size of a JPEG marker
30 * Marker sequence number 1 for first APP2, 2 for next, etc (1 byte)
33 * Decoders should use the marker sequence numbers to reassemble the profile,
37 #define ICC_MARKER (JPEG_APP0 + 2) /* JPEG marker code for ICC */
39 #define MAX_BYTES_IN_MARKER 65533 /* maximum data len of a JPEG marker */
47 * (This ordering ensures that the APP2 marker(s) will appear after the
58 unsigned int length; /* number of bytes to write in this marker */
66 /* length of profile to put in this marker */
72 /* Write the JPEG marker header (APP2 code and marker length) *
169 jpeg_saved_marker_ptr marker; local
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
IntStream.java 44 * current input position, index(), or some other marker so that
58 /** Reset the stream so that next call to index would return marker.
59 * The marker will usually be index() but it doesn't have to be. It's
60 * just a marker to indicate what state the stream was in. This is
62 * created after this marker argument, this routine must unroll them
63 * like a stack. Assume the state the stream was in when this marker
66 void rewind(int marker);
68 /** Rewind to the input position of the last marker.
72 * Do not "pop" the marker off the state. mark(i)
74 * like invoking rewind(last marker) but it should not "pop
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
FileCleaner.java 23 * marker object is reclaimed by the garbage collector.
49 * Track the specified file, using the provided marker, deleting the file
50 * when the marker instance is garbage collected.
54 * @param marker the marker object used to track the file, not null
59 public static void track(File file, Object marker) {
60 theInstance.track(file, marker);
64 * Track the specified file, using the provided marker, deleting the file
65 * when the marker instance is garbage collected.
69 * @param marker the marker object used to track the file, not nul
    [all...]
FileCleaningTracker.java 27 * marker object is reclaimed by the garbage collector.
63 * Track the specified file, using the provided marker, deleting the file
64 * when the marker instance is garbage collected.
68 * @param marker the marker object used to track the file, not null
71 public void track(File file, Object marker) {
72 track(file, marker, (FileDeleteStrategy) null);
76 * Track the specified file, using the provided marker, deleting the file
77 * when the marker instance is garbage collected.
81 * @param marker the marker object used to track the file, not nul
89 addTracker(file.getPath(), marker, deleteStrategy); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResourceMarker.cpp 83 // Map repaint rect into parent coordinate space, in which the marker boundaries have to be evaluated
99 SVGMarkerElement* marker = toSVGMarkerElement(element()); local
100 ASSERT(marker);
102 SVGLengthContext lengthContext(marker);
103 return FloatPoint(marker->refX()->currentValue()->value(lengthContext), marker->refY()->currentValue()->value(lengthContext));
108 SVGMarkerElement* marker = toSVGMarkerElement(element()); local
109 ASSERT(marker);
112 if (marker->orientType()->currentValue()->enumValue() == SVGMarkerOrientAngle)
113 angle = marker->orientAngle()->currentValue()->value()
120 SVGMarkerElement* marker = toSVGMarkerElement(element()); local
138 SVGMarkerElement* marker = toSVGMarkerElement(element()); local
167 SVGMarkerElement* marker = toSVGMarkerElement(element()); local
    [all...]
  /external/clang/test/Lexer/
conflict-marker.c 6 // diff3 style expected-error@+1 {{version control conflict marker in file}}
15 // normal style expected-error@+1 {{version control conflict marker in file}}
22 // Perforce style expected-error@+1 {{version control conflict marker in file}}
23 >>>> ORIGINAL conflict-marker.c#6
25 ==== THEIRS conflict-marker.c#7
27 ==== YOURS conflict-marker.c
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRIntStream.h 35 // current input position, index(), or some other marker so that
38 // TODO: problem in that lexer stream returns not index but some marker
47 // Reset the stream so that next call to index would return marker.
48 // The marker will usually be -index but it doesn't have to be. It's
49 // just a marker to indicate what state the stream was in. This is
51 // created after this marker argument, this routine must unroll them
52 // like a stack. Assume the state the stream was in when this marker
56 - (void) rewind:(NSInteger) marker;
59 // stream to keep bookkeeping objects around for a marker that is
63 - (void) release:(NSInteger) marker;
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRIntStream.h 35 // current input position, index(), or some other marker so that
38 // TODO: problem in that lexer stream returns not index but some marker
47 // Reset the stream so that next call to index would return marker.
48 // The marker will usually be -index but it doesn't have to be. It's
49 // just a marker to indicate what state the stream was in. This is
51 // created after this marker argument, this routine must unroll them
52 // like a stack. Assume the state the stream was in when this marker
56 - (void) rewind:(NSInteger) marker;
59 // stream to keep bookkeeping objects around for a marker that is
63 - (void) release:(NSInteger) marker;
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRIntStream.h 35 // current input position, index(), or some other marker so that
38 // TODO: problem in that lexer stream returns not index but some marker
47 // Reset the stream so that next call to index would return marker.
48 // The marker will usually be -index but it doesn't have to be. It's
49 // just a marker to indicate what state the stream was in. This is
51 // created after this marker argument, this routine must unroll them
52 // like a stack. Assume the state the stream was in when this marker
56 - (void) rewind:(NSInteger) marker;
59 // stream to keep bookkeeping objects around for a marker that is
63 - (void) release:(NSInteger) marker;
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
IIntStream.cs 61 /// <returns>Return a marker that can be passed to
64 /// <see cref="IIntStream.Index"/>, or some other marker.</returns>
76 /// <see cref="IIntStream.Index"/> would return marker.
79 /// The marker will usually be <see cref="IIntStream.Index"/> but
80 /// it doesn't have to be. It's just a marker to indicate what
83 /// If there are other markers created after the specified marker,
85 /// stream was in when this marker was created.
87 void Rewind(int marker);
90 /// Rewind to the input position of the last marker.
95 /// of the decision. Do not "pop" the marker off the state. Mark(i)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
IIntStream.cs 56 * current input position, Index, or some other marker so that
77 * Reset the stream so that next call to index would return marker.
78 * The marker will usually be Index but it doesn't have to be. It's
79 * just a marker to indicate what state the stream was in. This is
81 * created after this marker argument, this routine must unroll them
82 * like a stack. Assume the state the stream was in when this marker
86 void Rewind( int marker );
89 * Rewind to the input position of the last marker.
93 * Do not "pop" the marker off the state. mark(i)
95 * like invoking rewind(last marker) but it should not "pop
    [all...]
  /external/chromium_org/gpu/command_buffer/common/
debug_marker_manager.cc 18 void DebugMarkerManager::Group::SetMarker(const std::string& marker) {
19 marker_ = name_ + "." + marker;
30 void DebugMarkerManager::SetMarker(const std::string& marker) {
31 group_stack_.top().SetMarker(marker);
35 return group_stack_.top().marker();
debug_marker_manager.h 15 // Tracks debug marker.
21 // Gets the current marker on the top group.
23 // Sets the current marker on the top group.
24 void SetMarker(const std::string& marker);
41 void SetMarker(const std::string& marker);
43 const std::string& marker() const { function in class:gpu::gles2::DebugMarkerManager::Group
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
IntStream.as 43 * current input position, index(), or some other marker so that
57 /** Reset the stream so that next call to index would return marker.
58 * The marker will usually be index() but it doesn't have to be. It's
59 * just a marker to indicate what state the stream was in. This is
61 * created after this marker argument, this routine must unroll them
62 * like a stack. Assume the state the stream was in when this marker
65 function rewindTo(marker:int):void;
67 /** Rewind to the input position of the last marker.
71 * Do not "pop" the marker off the state. mark(i)
73 * like invoking rewind(last marker) but it should not "pop
    [all...]
  /external/chromium_org/media/cast/rtp_receiver/
rtp_receiver_defines.cc 11 : marker(false),
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRIntStream.h 39 // current input position, index(), or some other marker so that
42 // TODO: problem in that lexer stream returns not index but some marker
55 // Reset the stream so that next call to index would return marker.
56 // The marker will usually be -index but it doesn't have to be. It's
57 // just a marker to indicate what state the stream was in. This is
59 // created after this marker argument, this routine must unroll them
60 // like a stack. Assume the state the stream was in when this marker
64 - (void) rewind:(NSInteger) marker;
67 // stream to keep bookkeeping objects around for a marker that is
71 - (void) release:(NSInteger) marker;
    [all...]
  /external/chromium_org/chrome/common/
spellcheck_marker.h 10 // A predicate to test spellcheck marker validity.
15 bool operator()(const SpellCheckMarker& marker) const {
16 return marker.offset < text_length_;
  /packages/apps/LegacyCamera/src/com/android/camera/
Exif.java 34 int marker = jpeg[offset] & 0xFF; local
36 // Check if the marker is a padding.
37 if (marker == 0xFF) {
42 // Check if the marker is SOI or TEM.
43 if (marker == 0xD8 || marker == 0x01) {
46 // Check if the marker is EOI or SOS.
47 if (marker == 0xD9 || marker == 0xDA) {
58 // Break if the marker is EXIF in APP1
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintColumn.java 86 * @param marker the {@link IMarker} to get the value for
87 * @return the value of this column for the given marker
89 public abstract String getValue(@NonNull IMarker marker);
92 * @param marker the {@link IMarker} to get the value for
93 * @return the styled value of this column for the given marker
95 public StyledString getStyledValue(@NonNull IMarker marker) {
100 * @param marker the {@link IMarker} to get the image for
104 public Image getImage(@NonNull IMarker marker) {
109 * @param marker the {@link IMarker} to get the font for
113 public Font getFont(@NonNull IMarker marker) {
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
GrTraceMarker.cpp 22 void GrTraceMarkerSet::add(const GrGpuTraceMarker& marker) {
23 this->fMarkerArray.push(marker);
32 void GrTraceMarkerSet::remove(const GrGpuTraceMarker& marker) {
33 SkASSERT(-1 != fMarkerArray.find(marker));
34 int index = this->fMarkerArray.find(marker);

Completed in 797 milliseconds

1 2 3 4 5 6 7 8 91011>>