HomeSort by relevance Sort by last modified time
    Searched refs:flattened (Results 1 - 25 of 71) sorted by null

1 2 3

  /cts/tests/sensor/src/android/hardware/cts/helpers/
SensorStatsTest.java 47 // Add empty stats, expect no value in flattened map
50 // Add null values, expect no value in flattened map
54 Map<String, Object> flattened = stats.flatten(); local
56 assertEquals(6, flattened.size());
57 assertEquals(0, (int) (Integer) flattened.get("value0"));
58 assertEquals(1, (int) (Integer) flattened.get("value1"));
59 assertEquals(2, (int) (Integer) flattened.get("stats0__value2"));
60 assertEquals(3, (int) (Integer) flattened.get("stats0__value3"));
61 assertEquals(4, (int) (Integer) flattened.get("stats0__stats1__value4"));
62 assertEquals(5, (int) (Integer) flattened.get("stats0__stats1__value5"))
    [all...]
SensorStats.java 117 * Flattens the map and all sub {@link SensorStats} objects. Keys will be flattened using
119 * {@code "key1"} containing the key value pair {@code \("key2", "value"\)}, the flattened map
139 final Map<String, Object> flattened = flatten(); local
140 for (String key : getSortedKeys(flattened)) {
141 Object value = flattened.get(key);
152 final Map<String, Object> flattened = flatten(); local
155 for (String key : getSortedKeys(flattened)) {
156 Object value = flattened.get(key);
  /frameworks/support/lifecycle/compiler/src/main/kotlin/android/arch/lifecycle/
transformation.kt 82 val flattened: MutableMap<LifecycleObserverInfo, LifecycleObserverInfo> = mutableMapOf()
86 if (observer in flattened) {
91 flattened[observer] = observer
94 observers.filter { it !in flattened }.forEach(::traverse)
96 .map(flattened::get)
101 flattened[observer] = LifecycleObserverInfo(observer.type,
106 return flattened.values.toList()
  /frameworks/av/camera/
CameraParameters2.cpp 39 String8 flattened("");
47 flattened += k;
48 flattened += "=";
49 flattened += v;
51 flattened += ";";
54 ALOGV("%s: Flattened params = %s", __FUNCTION__, flattened.string());
56 return flattened;
CameraParameters.cpp 187 String8 flattened("");
195 flattened += k;
196 flattened += "=";
197 flattened += v;
199 flattened += ";";
202 return flattened;
  /cts/tests/tests/tv/src/android/media/tv/cts/
TvContentRatingTest.java 53 String flattened = TvContentRating.createRating(DOMAIN, RATING_SYSTEM, MAIN_RATING_1, local
55 TvContentRating rating = TvContentRating.unflattenFromString(flattened);
  /hardware/interfaces/camera/common/1.0/default/
CameraParameters.cpp 194 String8 flattened("");
202 flattened += k;
203 flattened += "=";
204 flattened += v;
206 flattened += ";";
209 return flattened;
  /external/dtc/Documentation/
dtc-paper.tex 44 flattened-tree representation of the system's hardware based on the
55 This flattened-tree approach is now the only supported method of
107 \section{The Flattened Tree}
114 compact, flattened format. The resulting device tree ``blob'' is then
121 directly from the entry point taking a flattened device tree. The
129 \subsection{Properties of the flattened tree}
131 The flattened tree format should be easy to handle, both for the
141 make tweaks to the flattened tree, such as deleting or inserting a
143 having to effectively regenerate the whole flattened tree. In
247 Having seen how to represent the device tree structure as a flattened
    [all...]
  /frameworks/base/core/java/android/hardware/
Camera.java 2553 StringBuilder flattened = new StringBuilder(128); local
    [all...]
  /external/trappy/tests/
test_stats.py 49 flattened = [0, 1, 2, 3, 4, 5]
51 self.assertEqual(flattened, topology.flatten())
  /external/v8/src/
conversions.cc 507 Handle<String> flattened = String::Flatten(string); local
510 String::FlatContent flat = flattened->GetFlatContent();
  /prebuilts/go/darwin-x86/src/go/types/
typestring.go 46 // - embedded interfaces get flattened (the embedding info is lost,
159 // print flattened interface
  /prebuilts/go/linux-x86/src/go/types/
typestring.go 46 // - embedded interfaces get flattened (the embedding info is lost,
159 // print flattened interface
  /packages/apps/LegacyCamera/src/com/android/camera/
Util.java 454 String flattened = parameters.flatten(); local
455 StringTokenizer tokenizer = new StringTokenizer(flattened, ";");
  /prebuilts/maven_repo/android/android/arch/lifecycle/compiler/1.0.0-alpha10/
compiler-1.0.0-alpha10.jar 
  /frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
AndroidCameraAgentImpl.java 1038 String flattened = getParameters().flatten(); local
    [all...]
  /prebuilts/go/darwin-x86/src/net/
interface_windows.go 34 // structures. The structure contains an IP adapter and flattened
  /prebuilts/go/linux-x86/src/net/
interface_windows.go 34 // structures. The structure contains an IP adapter and flattened
  /frameworks/base/services/core/java/com/android/server/wallpaper/
WallpaperManagerService.java 883 final String flattened = wpService.flattenToString(); local
    [all...]
  /external/ImageMagick/www/api/
layer.php 113 <p>Images do NOT have to be the same size, though it is best that all the images are 'coalesced' (images are all the same size, on a flattened canvas, so as to represent exactly how an specific frame should look).</p>
  /external/libvorbis/doc/
08-residue.tex 142 interleaved and flattened into a single vector of length
  /prebuilts/go/darwin-x86/src/encoding/gob/
doc.go 20 transmitted; that is, the values are flattened. Nil pointers are not permitted,
  /prebuilts/go/linux-x86/src/encoding/gob/
doc.go 20 transmitted; that is, the values are flattened. Nil pointers are not permitted,
  /external/guice/lib/build/
bnd-0.0.384.jar 
  /external/protobuf/js/binary/
writer.js 226 // Post condition: `flattened` must have had every byte written.
229 // Replace our block list with the flattened block, which lets GC reclaim
    [all...]

Completed in 851 milliseconds

1 2 3