/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
ANTLRLookaheadStream.h | 60 - (void) release:(NSInteger) marker; 61 - (void) rewind:(NSInteger) marker;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
ANTLRDebugTreeNodeStream.h | 61 - (void) rewind:(NSUInteger) marker; 63 - (void) release:(NSUInteger) marker;
|
ANTLRLookaheadStream.h | 60 - (void) release:(NSInteger) marker; 61 - (void) rewind:(NSInteger) marker;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
ANTLRDebugTreeNodeStream.h | 61 - (void) rewind:(NSUInteger) marker; 63 - (void) release:(NSUInteger) marker;
|
ANTLRLookaheadStream.h | 60 - (void) release:(NSInteger) marker; 61 - (void) rewind:(NSInteger) marker;
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRDebugTreeNodeStream.h | 61 - (void) rewind:(NSUInteger) marker; 63 - (void) release:(NSUInteger) marker;
|
ANTLRLookaheadStream.h | 64 - (void) release:(NSInteger) marker; 65 - (void) rewind:(NSInteger) marker;
|
/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...] |
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...] |
/external/mockito/src/org/mockito/internal/verification/ |
Only.java | 20 private final InvocationMarker marker = new InvocationMarker();
field in class:Only 34 marker.markVerified(chunk.get(0), wantedMatcher);
|
/external/qemu/distrib/jpeg-6b/ |
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.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
AddPrefixFix.java | 34 private AddPrefixFix(String id, IMarker marker) { 35 super(id, marker);
|
LintViewPart.java | 332 for (IMarker marker : markers) { 333 if (!LintFix.hasFix(EclipseLintClient.getId(marker))) { 340 List<LintFix> fixes = LintFix.getFixes(EclipseLintClient.getId(marker), marker); 350 for (IMarker marker : markers) { 351 IResource resource = marker.getResource(); 490 for (IMarker marker : markers) { 491 List<LintFix> fixes = LintFix.getFixes(EclipseLintClient.getId(marker), 492 marker); 497 IResource resource = marker.getResource() [all...] |
/external/libvorbis/lib/ |
sharedbook.c | 75 ogg_uint32_t marker[33]; local 77 memset(marker,0,sizeof(marker)); 82 ogg_uint32_t entry=marker[length]; 97 /* Look to see if the next shorter marker points to the node 102 if(marker[j]&1){ 105 marker[1]++; 107 marker[j]=marker[j-1]<<1; 108 break; /* invariant says next upper marker would alread [all...] |
/external/openssh/ |
hostfile.c | 197 char marker[32], *sp, *cp = *cpp; local 201 /* Only one marker is allowed */ 208 /* Extract marker for comparison */ 209 if (sp <= cp + 1 || sp >= cp + sizeof(marker)) 211 memcpy(marker, cp, sp - cp); 212 marker[sp - cp] = '\0'; 213 if (strcmp(marker, CA_MARKER) == 0) 215 else if (strcmp(marker, REVOKE_MARKER) == 0) 220 /* Skip past marker and any whitespace that follows it */ 245 HostkeyMarker marker; local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
SVGInlineFlowBox.cpp | 97 DocumentMarker* marker = *markerIt; local 99 // SVG is only interessted in the TextMatch marker, for now. 100 if (marker->type() != DocumentMarker::TextMatch) 110 int markerStartPosition = max<int>(marker->startOffset() - textBox->start(), 0); 111 int markerEndPosition = min<int>(marker->endOffset() - textBox->start(), textBox->len()); 138 toRenderedDocumentMarker(marker)->setRenderedRect(textRenderer->localToAbsoluteQuad(markerRect).enclosingBoundingBox());
|
/external/chromium_org/third_party/tcmalloc/chromium/src/base/ |
linuxthreads.cc | 252 int proc = -1, marker = -1, num_threads = 0; local 257 /* Create "marker" that we can use to detect threads sharing the same 263 if ((marker = sys_socket(PF_LOCAL, SOCK_DGRAM, 0)) < 0 || 264 sys_fcntl(marker, F_SETFD, FD_CLOEXEC) < 0) { 268 if (marker >= 0) 269 NO_INTR(sys_close(marker)); 270 sig_marker = marker = -1; 286 /* Compute path for marker socket in /proc */ 287 local_itoa(strcpy(marker_path, "/fd/") + 4, marker); 307 sig_marker = marker; [all...] |
/external/chromium_org/third_party/tcmalloc/vendor/src/base/ |
linuxthreads.cc | 252 int proc = -1, marker = -1, num_threads = 0; local 257 /* Create "marker" that we can use to detect threads sharing the same 263 if ((marker = sys_socket(PF_LOCAL, SOCK_DGRAM, 0)) < 0 || 264 sys_fcntl(marker, F_SETFD, FD_CLOEXEC) < 0) { 268 if (marker >= 0) 269 NO_INTR(sys_close(marker)); 270 sig_marker = marker = -1; 286 /* Compute path for marker socket in /proc */ 287 local_itoa(strcpy(marker_path, "/fd/") + 4, marker); 307 sig_marker = marker; [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/ |
AaptQuickFix.java | 68 * marker resolution (Problem view handling), since there is a lot of overlap between 90 public boolean hasResolutions(IMarker marker) { 93 message = (String) marker.getAttribute(IMarker.MESSAGE); 104 public IMarkerResolution[] getResolutions(IMarker marker) { 105 IResource markerResource = marker.getResource(); 108 String message = (String) marker.getAttribute(IMarker.MESSAGE); 118 int start = marker.getAttribute(IMarker.CHAR_START, 0); 119 int end = marker.getAttribute(IMarker.CHAR_END, 0); 179 for (IMarker marker : markers) { 180 String message = marker.getAttribute(IMarker.MESSAGE, ""); //$NON-NLS-1 [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/ |
BaseProjectHelper.java | 104 * Adds a marker to a file on a specific line. This methods catches thrown 107 * @param markerId The id of the marker to add. 109 * @param lineNumber the line number where to put the mark. If line is < 1, it puts the marker 111 * @param severity the severity of the marker. 120 * Adds a marker to a file on a specific line, for a specific range of text. This 124 * @param markerId The id of the marker to add. 127 * the marker on line 1, 128 * @param startOffset the beginning offset of the marker (relative to the beginning of 130 * @param endOffset the ending offset of the marker 131 * @param severity the severity of the marker 142 IMarker marker = resource.createMarker(markerId); local 209 IMarker marker = project.createMarker(markerId); local [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 339 int marker = 0; local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
LintTooltip.java | 60 IMarker marker = delegate.getIssueForNode(node); local 61 if (marker != null) { 62 String message = marker.getAttribute(IMarker.MESSAGE, null);
|
/external/antlr/antlr-3.4/runtime/C/include/ |
antlr3intstream.h | 111 /** Last marker position allocated 128 * current input position, index(), or some other marker so that 139 /** Reset the stream so that next call to index would return marker. 140 * The marker will usually be index() but it doesn't have to be. It's 141 * just a marker to indicate what state the stream was in. This is 143 * created after this marker argument, this routine must unroll them 144 * like a stack. Assume the state the stream was in when this marker 147 void (*rewind) (struct ANTLR3_INT_STREAM_struct * intStream, ANTLR3_MARKER marker); 149 /** Reset the stream to the last marker position, witouh destryoing the 150 * last marker position [all...] |
/frameworks/volley/src/com/android/volley/ |
VolleyLog.java | 106 /** Minimum duration from first marker to last in an marker log to warrant logging. */ 109 private static class Marker { 114 public Marker(String name, long thread, long time) { 121 private final List<Marker> mMarkers = new ArrayList<Marker>(); 124 /** Adds a marker to this log with the specified name. */ 127 throw new IllegalStateException("Marker added to finished log"); 130 mMarkers.add(new Marker(name, threadId, SystemClock.elapsedRealtime())); 136 * @param header Header string to print above the marker log [all...] |