Searched defs:marker (Results 1 - 25 of 191) sorted by relevance

12345678

/external/mockito/src/org/mockito/internal/verification/
H A DOnly.java20 private final InvocationMarker marker = new InvocationMarker(); field in class:Only
34 marker.markVerified(chunk.get(0), wantedMatcher);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DIIntStream.cs61 /// <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); argument
90 /// Rewind to the input position of the last marker.
95 /// of the decision. Do not "pop" the marker of
114 Release(int marker) argument
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DIntStream.java44 * 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); argument
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) bu
87 release(int marker) argument
[all...]
/external/chromium_org/gpu/command_buffer/common/
H A Ddebug_marker_manager.cc18 void DebugMarkerManager::Group::SetMarker(const std::string& marker) { argument
19 marker_ = name_ + "." + marker;
30 void DebugMarkerManager::SetMarker(const std::string& marker) { argument
31 group_stack_.top().SetMarker(marker);
35 return group_stack_.top().marker();
H A Ddebug_marker_manager.h15 // 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/chromium_org/media/cast/net/rtp/
H A Drtp_receiver_defines.h19 bool marker; member in struct:media::cast::RtpCastHeader
H A Drtp_header_parser.cc26 marker(false),
57 const bool marker = ((rtp_data_begin_[1] & 0x80) == 0) ? false : true; local
71 parsed_packet->marker = marker;
H A Drtp_header_parser.h29 bool marker; member in struct:media::cast::RtpCastTestHeader
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DRenderedDocumentMarker.h37 static PassOwnPtrWillBeRawPtr<RenderedDocumentMarker> create(const DocumentMarker& marker) argument
39 return adoptPtrWillBeNoop(new RenderedDocumentMarker(marker));
50 explicit RenderedDocumentMarker(const DocumentMarker& marker) argument
51 : DocumentMarker(marker)
71 DEFINE_TYPE_CASTS(RenderedDocumentMarker, DocumentMarker, marker, true, true);
/external/chromium_org/v8/src/
H A Dcircular-queue.h43 // Reserved values for the entry marker.
51 Entry() : marker(kEmpty) {}
53 base::Atomic32 marker; variable
H A Dhydrogen-environment-liveness.cc73 HEnvironmentMarker* marker) {
74 if (!marker->CheckFlag(HValue::kEndsLiveRange)) return;
75 HSimulate* simulate = marker->next_simulate();
77 DCHECK(VerifyClosures(simulate->closure(), marker->closure()));
78 ZapEnvironmentSlot(marker->index(), simulate);
99 HEnvironmentMarker* marker = HEnvironmentMarker::cast(instr); local
100 int index = marker->index();
102 marker->SetFlag(HValue::kEndsLiveRange);
104 marker->ClearFlag(HValue::kEndsLiveRange);
107 marker
72 ZapEnvironmentSlotsForInstruction( HEnvironmentMarker* marker) argument
[all...]
/external/mockito/src/org/mockito/internal/verification/checkers/
H A DNonGreedyNumberOfInvocationsInOrderChecker.java23 private final InvocationMarker marker; field in class:NonGreedyNumberOfInvocationsInOrderChecker
29 NonGreedyNumberOfInvocationsInOrderChecker(InvocationsFinder finder, Reporter reporter, InvocationMarker marker ) {
32 this.marker = marker;
43 marker.markVerified( next, wanted );
/external/vixl/tools/
H A Dgenerate_simulator_traces.py58 marker = [ variable
71 if line.strip() == marker[matched]:
73 if matched == len(marker):
80 if matched != len(marker):
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DListMarkerPainter.cpp39 IntRect marker = m_renderListMarker.getRelativeMarkerRect(); local
40 marker.moveBy(roundedIntPoint(boxOrigin));
45 context->drawImage(m_renderListMarker.image()->image(&m_renderListMarker, marker.size()).get(), marker);
69 context->fillEllipse(marker);
72 context->strokeEllipse(marker);
75 context->fillRect(marker);
166 marker.moveBy(roundedIntPoint(-boxOrigin));
167 marker = marker
[all...]
/external/chromium_org/third_party/skia/tests/
H A DPathOpsExtendedTest.cpp28 static const char marker[] = variable
372 outFile.writeText(marker);
563 char* insert = strstr(inData.begin(), marker);
565 insert += sizeof(marker) - 1;
/external/skia/src/gpu/
H A DGrTraceMarker.cpp22 void GrTraceMarkerSet::add(const GrGpuTraceMarker& marker) { argument
23 this->fMarkerArray.push(marker);
32 void GrTraceMarkerSet::remove(const GrGpuTraceMarker& marker) { argument
33 SkASSERT(-1 != fMarkerArray.find(marker));
34 int index = this->fMarkerArray.find(marker);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DUnbufferedTokenStream.cs119 public override void Release(int marker) argument
121 base.Release(marker);
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DLookaheadStream.h144 public void release(int marker) { argument
148 public void rewind(int marker) { argument
150 seek(marker); // assume marker is top
151 // release(marker); // waste of call; it does nothing in this class
155 seek(lastMarker); // rewind but do not release marker
/external/chromium_org/third_party/iccjpeg/
H A Diccjpeg.c25 * Since an ICC profile can be larger than the maximum size of a JPEG marker
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) */
76 /* Write the marker identifyin
124 marker_is_icc(jpeg_saved_marker_ptr marker) argument
169 jpeg_saved_marker_ptr marker; local
[all...]
/external/chromium_org/third_party/libjpeg_turbo/
H A Djcapimin.c189 (*cinfo->marker->write_file_trailer) (cinfo);
197 * Write a special marker.
204 jpeg_write_marker (j_compress_ptr cinfo, int marker, argument
215 (*cinfo->marker->write_marker_header) (cinfo, marker, datalen);
216 write_marker_byte = cinfo->marker->write_marker_byte; /* copy for speed */
226 jpeg_write_m_header (j_compress_ptr cinfo, int marker, unsigned int datalen) argument
234 (*cinfo->marker->write_marker_header) (cinfo, marker, datalen);
240 (*cinfo->marker
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dsuperframe_test.cc50 const uint8_t marker = buffer[pkt->data.frame.sz - 1]; local
51 const int frames = (marker & 0x7) + 1;
52 const int mag = ((marker >> 3) & 3) + 1;
54 if ((marker & 0xe0) == 0xc0 &&
56 buffer[pkt->data.frame.sz - index_sz] == marker) {
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/decoder/
H A Dvp9_decoder.h86 uint8_t marker; local
87 decrypt_cb(decrypt_state, data, &marker, 1);
88 return marker;
/external/chromium_org/third_party/skia/experimental/Intersection/AddTestOutput/
H A Dmain.cpp6 static bool replace(const char* fun, const char* dir, const char* filename, const char* marker, argument
26 char* opInsert = strstr(opData.begin(), marker);
28 SkDebugf("%s missing marker in %s\n", fun, outFileStr.c_str());
33 const char* opInsertEnd = opInsert + strlen(marker);
37 SkDebugf("%s missing marker second half in %s\n", fun, outFileStr.c_str());
/external/chromium_org/third_party/skia/src/gpu/
H A DGrTraceMarker.cpp22 void GrTraceMarkerSet::add(const GrGpuTraceMarker& marker) { argument
23 this->fMarkerArray.push(marker);
32 void GrTraceMarkerSet::remove(const GrGpuTraceMarker& marker) { argument
33 SkASSERT(-1 != fMarkerArray.find(marker));
34 int index = this->fMarkerArray.find(marker);
H A DGrTraceMarker.h17 GrGpuTraceMarker(const char* marker, int idCounter) : fMarker(marker), fID(idCounter) {} argument
41 // Adds marker to the set.
42 void add(const GrGpuTraceMarker& marker);
46 void remove(const GrGpuTraceMarker& marker);
53 * marker string used in the TraceMarker and the (#,#,..) is a list of instance
54 * id's for the the given marker string

Completed in 1184 milliseconds

12345678