HomeSort by relevance Sort by last modified time
    Searched refs:markers (Results 51 - 75 of 239) sorted by null

1 23 4 5 6 7 8 910

  /external/chromium-trace/catapult/third_party/graphy/graphy/backends/google_chart_api/
line_chart_test.py 43 self.chart.AddLine([1, 2, 3], markers=[(1, x), (2, o), (3, x)])
44 self.chart.AddLine([4, 5, 6], markers=[(x, line) for x in range(3)])
  /external/chromium-trace/catapult/third_party/graphy/graphy/
common_test.py 75 markers='markers', label='label')
79 self.assertEqual(series.markers, 'markers')
pie_chart.py 159 def AddSeries(self, points, color=None, style=None, markers=None, label=None):
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3input.h 118 pANTLR3_VECTOR markers; member in struct:ANTLR3_INPUT_STREAM_struct
antlr3commontreenodestream.h 264 pANTLR3_VECTOR markers; member in struct:ANTLR3_COMMON_TREE_NODE_STREAM_struct
316 * Calling mark() will push another of these on the markers stack.
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3inputstream.c 180 input->markers = NULL;
205 // Close any markers in the input stream
207 if (input->markers != NULL)
209 input->markers->free(input->markers);
210 input->markers = NULL;
268 input->markDepth = 0; /* Reset markers */
270 /* Clear out up the markers table if it is there
272 if (input->markers != NULL)
274 input->markers->clear(input->markers)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintList.java 179 List<IMarker> markers = getSelectedMarkers();
180 if (markers.size() > 0) {
181 mSelectedId = EclipseLintClient.getId(markers.get(0));
276 IMarker[] markers = EclipseLintClient.getMarkers(resource); local
277 for (IMarker marker : markers) {
316 List<IMarker> markers = new ArrayList<IMarker>(selection.length); local
320 markers.add((IMarker) data);
324 return markers;
366 Collection<IMarker> markers = types.get(id); local
367 int childCount = markers.size()
    [all...]
LintJob.java 145 // Delete specific markers
146 IMarker[] markers = EclipseLintClient.getMarkers(mSource); local
147 for (IMarker marker : markers) {
LintFixGenerator.java 174 List<IMarker> markers = AdtUtils.findMarkersOnLine(AdtConstants.MARKER_LINT, local
177 if (markers.size() > 0) {
178 for (IMarker marker : markers) {
213 * @param updateMarkers if true, update all markers
214 * @param resource the resource associated with the markers
409 return mGlobal ? "Clear All Lint Markers" : "Clear Markers in This File Only";
445 sb.append("Clears all lint warning markers from the project.");
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
FixImportsJob.java 86 IMarker[] markers = project.findMarkers(IMarker.PROBLEM, true, IResource.DEPTH_INFINITE); local
87 for (int i = 0; i < markers.length; i++) {
88 IMarker marker = markers[i];
  /external/libvorbis/lib/
envelope.c 194 /*filters[j].markers[pos]=valmax;*/
298 for(l=0;l<last;l++)marker[l*ve->searchstep]=ve->filter[m].markers[l]*.1;
305 for(l=0;l<last;l++)marker[l*ve->searchstep]=ve->filter[m+VE_BANDS].markers[l]*.1;
365 memmove(e->filter[i].markers,
366 e->filter[i].markers+smallshift,
367 (1024-smallshift)*sizeof(*(*e->filter).markers));
  /external/autotest/site_utils/bootperf-bin/
resultset.py 155 A list of all valid keyval names is stored in the `markers`
197 This method makes available the `markers` and `num_iterations`
206 self.markers = []
212 self.markers = map(lambda tp: tp[1], keylist)
  /external/chromium-trace/catapult/third_party/coverage/coverage/
python.py 71 markers = ['.zip'+os.sep, '.egg'+os.sep]
72 for marker in markers:
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
ConvertSwitchQuickFixProcessor.java 103 // to it. So instead we'll need to look up the markers on the line, and see
115 List<IMarker> markers = AdtUtils.findMarkersOnLine(IMarker.PROBLEM, local
117 for (IMarker marker : markers) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
IdeScanningContext.java 119 * Process any errors found to add error markers in the affected files (and
122 * @param async if true, delay updating markers until the next display
126 // Run asynchronously? This is necessary for example when adding markers
140 // First clear out old/previous markers
177 IMarker[] markers = resource.findMarkers(IMarker.PROBLEM, local
179 for (IMarker marker : markers) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
BaseBuilder.java 90 * compilation will not happen (we're putting markers)
174 // remove previous markers
214 * Removes markers from a resource and only the resource (not its children).
215 * @param file The file from which to delete the markers.
216 * @param markerId The id of the markers to remove. If null, all marker of
231 * Removes markers from a container and its children.
232 * @param folder The container from which to delete the markers.
233 * @param markerId The id of the markers to remove. If null, all marker of
354 // abort if there are TARGET or ADT type markers
365 IMarker[] markers = project.findMarkers(markerType, false /*includeSubtypes*/, depth) local
    [all...]
  /external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rjsmin/bench/
markermanager.js 11 * The MarkerManager places its markers onto a grid, similar to the map tiles.
13 * entered or left the viewport, and shows or hides all the markers in those
15 * (If the users scrolls the viewport beyond the markers that are loaded,
16 * no markers will be visible until the <code>EVENT_moveend</code>
18 * In practical consequences, this allows 10,000 markers to be distributed over
20 * the user will see good performance corresponding to the 100 visible markers,
21 * rather than poor performance corresponding to the total 10,000 markers.
23 * with the goal of accommodating thousands of markers.
46 * level. This value is also used when markers are added to the manager
49 * outside the map's current viewport monitored by a manager. Markers tha
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/
ProjectSelectionPage.java 263 IMarker[] markers = javaProject.getProject().findMarkers( local
266 for (IMarker marker : markers) {
  /prebuilts/tools/common/m2/repository/org/apache/maven/plugins/maven-dependency-plugin/2.8/
maven-dependency-plugin-2.8.jar 
  /external/antlr/antlr-3.4/runtime/ActionScript/project/test/org/antlr/runtime/test/
TestANTLRStringStream.as 88 // setup a couple of markers
  /prebuilts/devtools/tools/lib/
draw9patch.jar 
  /prebuilts/gradle-plugin/com/android/tools/draw9patch/24.4.0-beta3/
draw9patch-24.4.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/tools/draw9patch/24.4.0-beta6/
draw9patch-24.4.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/tools/draw9patch/24.5.0/
draw9patch-24.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/draw9patch/25.0.0/
draw9patch-25.0.0.jar 

Completed in 1137 milliseconds

1 23 4 5 6 7 8 910