HomeSort by relevance Sort by last modified time
    Searched defs:cluster (Results 1 - 25 of 62) sorted by null

1 2 3

  /packages/services/Car/car-cluster-demo-renderer/src/android/car/cluster/demorenderer/
InstrumentClusterRendererFactory.java 16 package android.car.cluster.demorenderer;
18 import android.car.cluster.renderer.InstrumentClusterRenderer;
DemoInstrumentClusterRenderer.java 16 package android.car.cluster.demorenderer;
18 import android.car.cluster.renderer.DisplayConfiguration;
19 import android.car.cluster.renderer.InstrumentClusterRenderer;
20 import android.car.cluster.renderer.NavigationRenderer;
DemoMediaRenderer.java 16 package android.car.cluster.demorenderer;
18 import android.car.cluster.demorenderer.MediaStateMonitor.MediaStateListener;
25 * Demo of rendering media data in instrument cluster.
DemoPhoneRenderer.java 17 package android.car.cluster.demorenderer;
19 import android.car.cluster.demorenderer.CallStateMonitor.PhoneStateListener;
27 * Demo for rendering phone status in instrument cluster.
DemoInstrumentClusterView.java 16 package android.car.cluster.demorenderer;
29 * This class is responsible for drawing the whole instrument cluster.
DemoNavigationRenderer.java 16 package android.car.cluster.demorenderer;
22 import android.car.cluster.renderer.NavigationRenderer;
MediaStateMonitor.java 16 package android.car.cluster.demorenderer;
30 * Reports current media status to instrument cluster renderer.
  /packages/services/Car/service/src/com/android/car/cluster/
InstrumentClusterPresentation.java 16 package com.android.car.cluster;
InstrumentClusterRendererLoader.java 16 package com.android.car.cluster;
18 import android.car.cluster.renderer.InstrumentClusterRenderer;
33 * Responsible for loading {@link InstrumentClusterRenderer} from separate android.car.cluster APK
42 * Returns true if instrument cluster renderer installed.
86 /** Returns instrument cluster renderer or null if renderer package is not found */
  /packages/services/Car/car-lib/src/android/car/cluster/renderer/
NavigationRenderer.java 16 package android.car.cluster.renderer;
23 * Contains methods specified for Navigation App renderer in instrument cluster.
DisplayConfiguration.java 16 package android.car.cluster.renderer;
64 /** Region that will be fully visible in instrument cluster */
71 * be partially visible in the instrument cluster. It is useful to fade-out primary
InstrumentClusterRenderer.java 16 package android.car.cluster.renderer;
26 * Interface for instrument cluster rendering.
28 * TODO: implement instrument cluster feature list and extend API.
38 * Calls once when instrument cluster should be created.
52 * Returns properties of instrument cluster for navigation.
  /packages/services/Car/service/src/com/android/car/cluster/renderer/
RendererHandler.java 16 package com.android.car.cluster.renderer;
ThreadSafeNavigationRenderer.java 16 package com.android.car.cluster.renderer;
19 import android.car.cluster.renderer.NavigationRenderer;
  /external/libvpx/libvpx/
webmdec.h 25 const void *cluster; member in struct:WebmInputContext
webmdec.cc 38 webm_ctx->cluster = NULL;
50 const mkvparser::Cluster *const cluster = segment->GetFirst(); member in class:__anon16676::mkvparser
51 webm_ctx->cluster = cluster;
134 const mkvparser::Cluster* cluster = local
135 reinterpret_cast<const mkvparser::Cluster*>(webm_ctx->cluster);
145 status = cluster->GetFirst(block_entry)
    [all...]
  /hardware/qcom/msm8994/kernel-headers/linux/
msm-core-interface.h 34 uint32_t cluster; member in struct:sched_params
  /hardware/qcom/msm8994/original-kernel-headers/linux/
msm-core-interface.h 18 uint32_t cluster; member in struct:sched_params
  /hardware/qcom/msm8996/kernel-headers/linux/
msm-core-interface.h 34 uint32_t cluster; member in struct:sched_params
  /hardware/qcom/msm8996/original-kernel-headers/linux/
msm-core-interface.h 18 uint32_t cluster; member in struct:sched_params
  /external/harfbuzz_ng/src/
sample.py 53 cluster = info.cluster variable
58 print("gid%d=%d@%d,%d+%d" % (gid, cluster, x_advance, x_offset, y_offset))
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
ClusterManager.java 33 * locations initially are kept by the clusters. Periodially, a cluster consolidating
34 * procedure is carried out to refine the cluster centers. After consolidation, the
49 // A location cluster can be labeled as a semantic cluster if it has been
125 // add the last location to cluster.
126 // first find the cluster it belongs to.
136 // add the location to the selected cluster
140 // if it is far away from all existing clusters, create a new cluster.
141 LocationCluster cluster = new LocationCluster(mLastLocation, duration); local
142 mLocationClusters.add(cluster);
241 semanticIdMap.put(cluster.getSemanticId(), cluster); local
268 BaseCluster cluster = local
    [all...]
  /external/opencv3/modules/features2d/src/
bagofwords.cpp 90 Mat BOWKMeansTrainer::cluster() const function in class:cv::BOWKMeansTrainer
105 return cluster( mergedDescriptors );
111 Mat BOWKMeansTrainer::cluster( const Mat& _descriptors ) const function in class:cv::BOWKMeansTrainer
179 // Match keypoint descriptors to cluster center (to vocabulary)
199 int trainIdx = matches[i].trainIdx; // cluster index
  /packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/cluster/
InstrumentClusterFragment.java 16 package com.google.android.car.kitchensink.cluster;
36 * Contains functions to test instrument cluster API.
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadNotifier.java 161 // Cluster downloads together
166 IntArray cluster = clustered.get(tag); local
167 if (cluster == null) {
168 cluster = new IntArray();
169 clustered.put(tag, cluster);
171 cluster.add(cursor.getPosition());
175 // Build notification for each cluster
178 final IntArray cluster = clustered.valueAt(i); local
185 // Use time when cluster was first shown to avoid shuffling
206 final long[] downloadIds = getDownloadIds(cursor, cluster);
    [all...]

Completed in 1807 milliseconds

1 2 3