HomeSort by relevance Sort by last modified time
    Searched refs:marker (Results 1 - 25 of 771) 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/Dialer/java/com/android/dialer/callcomposer/camera/exif/
JpegHeader.java 25 * SOF (start of frame). All value between SOF0 and SOF15 is SOF marker except for DHT, JPG, and
26 * DAC marker.
35 static boolean isSofMarker(short marker) {
36 return marker >= SOF0 && marker <= SOF15 && marker != DHT && marker != JPG && 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/Messaging/src/com/android/messaging/util/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/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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/crashers/
gc_inspection.py 24 marker = object()
25 yield marker
26 # now the marker is in the tuple being constructed
27 [tup] = [x for x in gc.get_referrers(marker) if type(x) is tuple]
  /external/python/cpython2/Lib/test/crashers/
gc_inspection.py 24 marker = object()
25 yield marker
26 # now the marker is in the tuple being constructed
27 [tup] = [x for x in gc.get_referrers(marker) if type(x) is tuple]
  /external/python/cpython3/Lib/test/crashers/
gc_inspection.py 24 marker = object()
25 yield marker
26 # now the marker is in the tuple being constructed
27 [tup] = [x for x in gc.get_referrers(marker) if type(x) is tuple]
  /external/slf4j/slf4j-api/src/main/java/org/slf4j/
Logger.java 60 * <a href="MDC.html">MDC</a> as well as <a href="Marker.html">Markers</a>.</p>
151 * marker data is also taken into account.
153 * @param marker The marker data to take into consideration
159 public boolean isTraceEnabled(Marker marker);
162 * Log a message with the specific Marker at the TRACE level.
164 * @param marker the marker data specific to this log statement
168 public void trace(Marker marker, String msg)
    [all...]
  /external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/
MarkerIgnoringBase.java 28 import org.slf4j.Marker;
32 * lacking Marker support. In this implementation, methods taking marker data
33 * simply invoke the corresponding method without the Marker argument, discarding
34 * any marker data passed as argument.
42 public boolean isTraceEnabled(Marker marker) {
46 public void trace(Marker marker, String msg) {
50 public void trace(Marker marker, String format, Object arg)
    [all...]
SubstituteLogger.java 28 import org.slf4j.Marker;
77 public boolean isTraceEnabled(Marker marker) {
78 return delegate().isTraceEnabled(marker);
81 public void trace(Marker marker, String msg) {
82 delegate().trace(marker, msg);
85 public void trace(Marker marker, String format, Object arg) {
86 delegate().trace(marker, format, arg)
    [all...]
BasicMarkerFactory.java 31 import org.slf4j.Marker;
44 private final ConcurrentMap<String, Marker> markerMap = new ConcurrentHashMap<String, Marker>();
48 * <code>BasicMarkerFactory</code> instances. <code>Marker</code>
59 * @param name the name of the marker to be created
60 * @return a Marker instance
62 public Marker getMarker(String name) {
64 throw new IllegalArgumentException("Marker name cannot be null");
67 Marker marker = markerMap.get(name) 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/smali/smalidea/src/main/antlr/
smalideaParser.g 39 import com.intellij.lang.PsiBuilder.Marker;
55 public Marker mark() {
62 Marker marker = null;
72 marker = null;
75 if (marker == null) {
76 marker = mark();
85 if (marker != null) {
86 marker.error("Unexpected tokens");
108 Marker mark = mark()
    [all...]
  /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/vogar/src/vogar/monitor/
InterleavedReader.java 33 * by a marker string and suffixed by a newline character.
43 private final String marker; field in class:InterleavedReader
53 public InterleavedReader(String marker, Reader reader) {
54 if (marker.length() > BUFFER_LENGTH) {
55 throw new IllegalArgumentException("marker.length() > BUFFER_LENGTH");
57 this.marker = marker;
93 // return the characters that precede the marker
98 if (count < marker.length()) {
99 // the buffer contains only the prefix of a marker so we must read mor
    [all...]
  /external/slf4j/slf4j-ext/src/main/java/org/slf4j/ext/
LoggerWrapper.java 28 import org.slf4j.Marker;
75 public boolean isTraceEnabled(Marker marker) {
76 return logger.isTraceEnabled(marker);
155 public void trace(Marker marker, String msg) {
156 if (!logger.isTraceEnabled(marker))
159 ((LocationAwareLogger) logger).log(marker, fqcn, LocationAwareLogger.TRACE_INT, msg, null, null);
161 logger.trace(marker, msg);
168 public void trace(Marker marker, String format, Object arg)
    [all...]
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/command/
RestCommandHandler.java 29 * <li>{@link #MARKER_KEY} ("marker") - the server marker submitted on the invocation (the first command parameter)
37 public static final String MARKER_KEY = "marker";
50 String marker = command.getRequiredParameter(0); local
51 invocationRecord.set(MARKER_KEY, marker);
52 sendReply(session, marker);
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/stub/command/
RestCommandHandler.java 29 * <li>{@link #MARKER_KEY} ("marker") - the server marker submitted on the invocation (the first command parameter)
38 public static final String MARKER_KEY = "marker";
51 String marker = command.getRequiredString(0); local
52 invocationRecord.set(MARKER_KEY, marker);
53 sendReply(session, marker);

Completed in 511 milliseconds

1 2 3 4 5 6 7 8 91011>>