HomeSort by relevance Sort by last modified time
    Searched refs:marker (Results 201 - 225 of 771) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRDebugTokenStream.h 53 - (void) release:(NSInteger)marker;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRDebugTokenStream.h 53 - (void) release:(NSInteger)marker;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRDebugTokenStream.h 53 - (void) release:(NSInteger)marker;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRDebugTokenStream.h 53 - (void) release:(NSInteger)marker;
  /external/antlr/antlr-3.4/runtime/Python/antlr3/
streams.py 77 current input position, index(), or some other marker so that
97 def rewind(self, marker=None):
99 Reset the stream so that next call to index would return marker.
100 The marker will usually be index() but it doesn't have to be. It's
101 just a marker to indicate what state the stream was in. This is
103 created after this marker argument, this routine must unroll them
104 like a stack. Assume the state the stream was in when this marker
107 If marker is None:
108 Rewind to the input position of the last marker.
112 Do not "pop" the marker off the state. mark(i
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
event-hub.rb 165 def mark( marker )
167 listener.mark( marker )
183 def rewind( marker )
185 listener.rewind( marker )
  /external/dtc/
treesource.c 68 struct marker *m = val.markers;
141 struct marker *m = val.markers;
171 struct marker *m = val.markers;
199 struct marker *m = prop->val.markers;
dtc.h 81 struct marker { struct
85 struct marker *next;
91 struct marker *markers;
112 struct data data_insert_at_marker(struct data d, struct marker *m,
222 struct marker *get_marker_label(struct node *tree, const char *label,
  /external/eigen/Eigen/src/SparseLU/
SparseLUImpl.h 41 Index snode_dfs(const Index jcol, const Index kcol,const MatrixType& mat, IndexVector& xprune, IndexVector& marker, GlobalLU_t& glu);
47 Ref<IndexVector> repfnz_col, IndexVector& xprune, Ref<IndexVector> marker, IndexVector& parent,
49 void panel_dfs(const Index m, const Index w, const Index jcol, MatrixType& A, IndexVector& perm_r, Index& nseg, ScalarVector& dense, IndexVector& panel_lsub, IndexVector& segrep, IndexVector& repfnz, IndexVector& xprune, IndexVector& marker, IndexVector& parent, IndexVector& xplore, GlobalLU_t& glu);
52 Index column_dfs(const Index m, const Index jcol, IndexVector& perm_r, Index maxsuper, Index& nseg, BlockIndexVector lsub_col, IndexVector& segrep, BlockIndexVector repfnz, IndexVector& xprune, IndexVector& marker, IndexVector& parent, IndexVector& xplore, GlobalLU_t& glu);
  /external/v8/src/arm64/
instrument-arm64.h 70 void DumpEventMarker(unsigned marker);
  /external/vixl/src/aarch64/
instrument-aarch64.h 97 void DumpEventMarker(unsigned marker);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintFix.java 63 protected LintFix(String id, IMarker marker) {
65 mMarker = marker;
92 * This will be used to determine whether the marker can be deleted immediately
176 // ApiDetector.UNSUPPORTED is provided as a marker resolution rather than
177 // a quick assistant (the marker resolution adds a suitable @TargetApi annotation)
188 * @param marker the marker corresponding to the error
192 public static List<LintFix> getFixes(@NonNull String id, @NonNull IMarker marker) {
199 LintFix fix = constructor.newInstance(id, marker);
AddSuppressAnnotation.java 76 * Marker resolution for adding {@code @SuppressLint} annotations in Java files.
92 @NonNull IMarker marker,
97 mMarker = marker;
119 public void run(IMarker marker) {
139 // Remove the marker now that the suppress annotation has been added
141 // and besides we don't want to keep offering marker resolutions on this
142 // marker which could lead to duplicate annotations since the above code
306 * @param marker the marker to create fixes for
310 public static void createFixes(IMarker marker, String id
    [all...]
  /system/extras/cppreopts/
cppreopts.sh 45 if ! test -f ${mountpoint}/system-other-odex-marker ; then
  /external/syslinux/gpxe/src/core/
proto_eth_slow.c 59 /* Marker Protocol Data Unit(PDU) structure(43.5.3.2 in the 802.3ad standard) */
61 uint8_t subtype; /* = 0x02 (marker PDU) */
64 #define MARKER_TLV_TERMINATOR 0 /* marker terminator */
65 #define MARKER_TLV_INFO 1 /* marker information */
66 #define MARKER_TLV_RESPONSE 2 /* marker response information */
80 struct slow_marker marker; member in union:slow_union
389 /* If we receive a marker information packet return it */
391 (nic.packetlen >= ETH_HLEN + sizeof(pkt->marker)) &&
392 (pkt->marker.tlv_type == MARKER_TLV_INFO) &&
393 (pkt->marker.marker_length == 0x16))
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
CommonTreeNodeStream.js 241 release: function(marker) {
249 rewind: function(marker) {
250 if (!org.antlr.lang.isNumber(marker)) {
251 marker = this.lastMarker;
253 this.seek(marker);
  /external/libjpeg-turbo/
transupp.c 1597 jpeg_saved_marker_ptr marker; local
    [all...]
  /prebuilts/go/darwin-x86/src/image/jpeg/
reader.go 204 // marker byte) that wasn't the expected byte-stuffed sequence 0xff, 0x00.
528 // Check for the Start Of Image marker.
533 return nil, FormatError("missing SOI marker")
536 // Process the remaining segments until the End Of Image marker.
550 // "\xff\xd9" EOI marker), but it does not put back non-marker data,
552 // non-marker bytes before next_marker has a chance to see them (and
569 marker := d.tmp[1]
570 if marker == 0 {
574 for marker == 0xff
    [all...]
  /prebuilts/go/linux-x86/src/image/jpeg/
reader.go 204 // marker byte) that wasn't the expected byte-stuffed sequence 0xff, 0x00.
528 // Check for the Start Of Image marker.
533 return nil, FormatError("missing SOI marker")
536 // Process the remaining segments until the End Of Image marker.
550 // "\xff\xd9" EOI marker), but it does not put back non-marker data,
552 // non-marker bytes before next_marker has a chance to see them (and
569 marker := d.tmp[1]
570 if marker == 0 {
574 for marker == 0xff
    [all...]
  /external/libvpx/libvpx/vp9/decoder/
vp9_decoder.c 416 // data is 0xc0 the encoder must add a 0 byte. If we have the marker but
417 // not the associated matching marker byte at the front of the index we have
420 uint8_t marker; local
423 marker = read_marker(decrypt_cb, decrypt_state, data + data_sz - 1);
426 if ((marker & 0xe0) == 0xc0) {
427 const uint32_t frames = (marker & 0x7) + 1;
428 const uint32_t mag = ((marker >> 3) & 0x3) + 1;
440 // the matching marker byte at the front of the index therefore it's an
442 if (marker != marker2) return VPX_CODEC_CORRUPT_FRAME;
  /external/ImageMagick/coders/
meta.c 958 /* get marker byte, swallowing possible padding */
970 static int jpeg_skip_till_marker(Image *ifile, int marker)
986 /* get marker byte, swallowing possible padding */
993 } while (c != marker);
1001 unsigned int marker;
1013 marker=(unsigned int) jpeg_nextmarker(ifile, ofile);
1014 if (marker == M_EOI)
1020 if (marker != M_APP13)
1023 (void) WriteBlobByte(ofile,(unsigned char) marker);
1027 switch (marker)
997 unsigned int marker; local
1071 unsigned int marker; local
1085 unsigned int marker; local
1564 marker; local
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
streams.rb 122 <tt>marker = stream.mark</tt> causes the stream to record important information
124 return a memento, <tt>marker</tt>. The marker object is typically an integer key
127 Used in tandem with, <tt>stream.rewind(mark = last_marker)</tt>, the marker can
131 <tt>stream.release(marker = last_marker)</tt> can be used to release an existing
132 state marker from the memory table.
200 # :method: rewind( marker = last_marker )
202 # by the given marker
206 # :method: release( marker = last_marker )
207 # clears the saved state information associated with the given marker valu
    [all...]
  /external/tremolo/Tremolo/
codebook.c 150 ogg_uint32_t marker[MARKER_SIZE]; local
158 memset(marker,0,sizeof(marker));
167 ogg_uint32_t entry=marker[length];
196 /* Look to see if the next shorter marker points to the node
199 if(marker[j]&1){
200 marker[j]=marker[j-1]<<1;
203 marker[j]++;
210 if((marker[j]>>1) == entry)
    [all...]
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/syncadapter/
SyncAdapter.java 53 private static final String SYNC_MARKER_KEY = "com.example.android.samplesync.marker";
122 // Save off the new sync marker. On our next sync, we only want to receive
167 * @param marker The high-water-mark we want to save.
169 private void setServerSyncMarker(Account account, long marker) {
170 mAccountManager.setUserData(account, SYNC_MARKER_KEY, Long.toString(marker));
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
ANTLRStringStream.cs 238 public virtual void Release(int marker) {
240 markDepth = marker;
241 // release this marker

Completed in 719 milliseconds

1 2 3 4 5 6 7 891011>>