Searched refs:graph (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DScheduler.java31 Scheduler(FilterGraph graph) { argument
32 mGraph = graph;
H A DSimpleScheduler.java28 public SimpleScheduler(FilterGraph graph) { argument
29 super(graph);
H A DRandomScheduler.java33 public RandomScheduler(FilterGraph graph) { argument
34 super(graph);
H A DRoundRobinScheduler.java32 public RoundRobinScheduler(FilterGraph graph) { argument
33 super(graph);
H A DFilterContext.java105 for (FilterGraph graph : mGraphs) {
106 graph.tearDown(this);
123 final void addGraph(FilterGraph graph) { argument
124 mGraphs.add(graph);
H A DOneShotScheduler.java40 public OneShotScheduler(FilterGraph graph) { argument
41 super(graph);
75 if (mLogVerbose) Log.v(TAG, "One pass through graph completed.");
H A DSyncRunner.java45 public SyncRunner(FilterContext context, FilterGraph graph, Class schedulerClass) { argument
56 mScheduler = (Scheduler)schedulerConstructor.newInstance(graph);
72 // Associate this runner and the graph with the context
74 mFilterContext.addGraph(graph);
80 // Setup graph filters
81 graph.setupFilters();
92 throw new RuntimeException("Trying to process graph that is not open!");
104 if (mLogVerbose) Log.v(TAG, "Closing graph.");
150 throw new RuntimeException("SyncRunner does not support stopping a graph!");
224 throw new RuntimeException("Calling step on scheduler with no graph i
[all...]
H A DAsyncRunner.java66 if (mLogVerbose) Log.v(TAG, "Starting background graph processing.");
69 if (mLogVerbose) Log.v(TAG, "Preparing filter graph for processing.");
72 if (mLogVerbose) Log.v(TAG, "Running graph.");
103 if (mLogVerbose) Log.v(TAG, "Done with background graph processing.");
132 if (mLogVerbose) Log.v(TAG, "Calling graph done callback.");
142 /** Create a new asynchronous graph runner with the given filter
154 /** Create a new asynchronous graph runner with the given filter
167 * completes running a graph, whether the completion is due to a stop() call
175 /** Sets the graph to be run. Will call prepare() on graph
178 setGraph(FilterGraph graph) argument
[all...]
/frameworks/base/media/mca/filterfw/java/android/filterfw/
H A DGraphEnvironment.java35 * A GraphEnvironment provides a simple front-end to filter graph setup and execution using the
38 * 2. Perform any configuration, such as adding graph references and setting a GL environment.
39 * 3. Load a graph file using loadGraph() or add a graph using addGraph().
59 public GraphHandle(FilterGraph graph) { argument
60 mGraph = graph;
95 * @param reader The GraphReader to use for graph loading, or null to auto-create one.
97 * null if you will not load any graph files.
105 * Returns the used graph reader. This will create one, if a reader has not been set already.
115 * Add graph reference
151 addGraph(FilterGraph graph) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DRelativeLayout.java327 final DependencyGraph graph = mGraph;
328 graph.clear();
332 graph.add(child);
337 graph.log(getResources(), RULES_VERTICAL);
339 graph.log(getResources(), RULES_HORIZONTAL);
342 graph.getSortedViews(mSortedVerticalChildren, RULES_VERTICAL);
343 graph.getSortedViews(mSortedHorizontalChildren, RULES_HORIZONTAL);
1414 * List of all views in the graph.
1419 * List of nodes in the graph. Each node is identified by its
1426 * for this graph
[all...]

Completed in 79 milliseconds