Home
last modified time | relevance | path

Searched refs:given (Results 1 – 25 of 419) sorted by relevance

12345678910>>...17

/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DNotificationQSContainerControllerTest.kt88 given(taskbarVisible = true,
94 given(taskbarVisible = true,
105 given(taskbarVisible = false,
110 given(taskbarVisible = false,
120 given(taskbarVisible = false,
125 given(taskbarVisible = false,
135 given(taskbarVisible = true,
140 given(taskbarVisible = true,
149 given(taskbarVisible = false,
154 given(taskbarVisible = false,
[all …]
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
H A DPhonebookEntry.java30 public String given; field in PhonebookEntry.Name
45 && (Objects.equals(given, n.given) || given != null && given.equals(n.given)) in equals()
55 result = 23 * result + (given == null ? 0 : given.hashCode()); in hashCode()
68 sb.append(given); in toString()
130 name.given = n.getGiven(); in PhonebookEntry()
/aosp12/packages/apps/Contacts/src/com/android/contacts/util/
H A DNameConverter.java107 String given = null; in parsePhoneticName() local
117 given = strings[1]; in parsePhoneticName()
122 given = strings[2]; in parsePhoneticName()
132 item.setPhoneticGivenName(given); in parsePhoneticName()
139 public static String buildPhoneticName(String family, String middle, String given) { in buildPhoneticName() argument
141 || !TextUtils.isEmpty(given)) { in buildPhoneticName()
149 if (!TextUtils.isEmpty(given)) { in buildPhoneticName()
150 sb.append(given.trim()).append(' '); in buildPhoneticName()
/aosp12/build/bazel/json_module_graph/
H A DREADME.md16 * `printModule` prints all variations of a given module
17 * `filterSubtree` dumps only those modules that are in the given subtree of the
19 * `directDeps` prints the names of the direct dependencies of the given module
20 * `transitiveDeps` prints the names of the transitive dependencies of the given
22 * `fullTransitiveDeps` returns the full transitive dependencies of the given
25 in the module graph within the transitive closure of given module
29 closure of the given module
/aosp12/hardware/interfaces/audio/effect/2.0/
H A DIEqualizerEffect.hal35 * Sets the gain for the given equalizer band.
40 * Gets the gain for the given equalizer band.
45 * Gets the center frequency of the given band, in milliHertz.
51 * Gets the frequency range of the given frequency band, in milliHertz.
57 * Gets the band that has the most effect on the given frequency
/aosp12/hardware/interfaces/audio/effect/4.0/
H A DIEqualizerEffect.hal35 * Sets the gain for the given equalizer band.
40 * Gets the gain for the given equalizer band.
45 * Gets the center frequency of the given band, in milliHertz.
51 * Gets the frequency range of the given frequency band, in milliHertz.
57 * Gets the band that has the most effect on the given frequency
/aosp12/hardware/interfaces/audio/effect/5.0/
H A DIEqualizerEffect.hal35 * Sets the gain for the given equalizer band.
40 * Gets the gain for the given equalizer band.
45 * Gets the center frequency of the given band, in milliHertz.
51 * Gets the frequency range of the given frequency band, in milliHertz.
57 * Gets the band that has the most effect on the given frequency
/aosp12/hardware/interfaces/audio/effect/6.0/
H A DIEqualizerEffect.hal35 * Sets the gain for the given equalizer band.
40 * Gets the gain for the given equalizer band.
45 * Gets the center frequency of the given band, in milliHertz.
51 * Gets the frequency range of the given frequency band, in milliHertz.
57 * Gets the band that has the most effect on the given frequency
/aosp12/hardware/interfaces/audio/effect/7.0/
H A DIEqualizerEffect.hal35 * Sets the gain for the given equalizer band.
40 * Gets the gain for the given equalizer band.
45 * Gets the center frequency of the given band, in milliHertz.
51 * Gets the frequency range of the given frequency band, in milliHertz.
57 * Gets the band that has the most effect on the given frequency
/aosp12/frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
H A DErrorCalculator.java72 public float calcErrorRS(Bitmap ideal, Bitmap given) { in calcErrorRS() argument
79 mGivenPixelsAllocation = Allocation.createFromBitmap(mRS, given, in calcErrorRS()
117 public void calcErrorHeatmapRS(Bitmap ideal, Bitmap given, Bitmap output) { in calcErrorHeatmapRS() argument
120 mGivenPixelsAllocation = Allocation.createFromBitmap(mRS, given, in calcErrorHeatmapRS()
132 public static float calcError(Bitmap ideal, Bitmap given) { in calcError() argument
156 int givenColor = given.getPixel(x, y); in calcError()
H A DerrorCalculator.rscript9 rs_allocation given;
39 uchar4 givenPixel = rsGetElementAt_uchar4(given, x, y);
52 float4 givenPixel = rsGetElementAt_float4(given, x, y);
/aosp12/hardware/interfaces/tv/input/1.0/
H A DITvInput.hal44 * INVALID_ARGUMENTS if the given device ID is not valid.
58 * INVALID_ARGUMENTS if any of given IDs are not valid;
59 * INVALID_STATE if the stream with the given ID is already open;
74 * INVALID_ARGUMENTS if any of given IDs are not valid;
75 * INVALID_STATE if the stream with the given ID is not open.
/aosp12/system/core/fs_mgr/libfiemap/
H A Dutility.cpp82 struct stat userdata, given; in GetDevicePathForFile() local
83 if (!stat(bdev_path.c_str(), &given) && !stat(kUserdataDevice, &userdata)) { in GetDevicePathForFile()
84 if (S_ISBLK(given.st_mode) && S_ISBLK(userdata.st_mode) && in GetDevicePathForFile()
85 given.st_rdev == userdata.st_rdev) { in GetDevicePathForFile()
/aosp12/hardware/interfaces/graphics/composer/2.4/
H A DIComposerClient.hal46 * particular set of supported capabilities for a given display may be
58 * Indicates that both the composer HAL implementation and the given display
82 * Sets a piece of generic metadata for the given layer. If this
88 * A given piece of metadata may either be mandatory or a hint
95 * returned from getLayerGenericMetadataKeys for the given key.
101 * representation of a HIDL type corresponding to the given key. For
193 * Returns whether the given physical display is internal or external.
196 * BAD_DISPLAY when the given display is invalid or virtual.
279 * implementation or the given display
316 * UNSUPPORTED when the given content type is not supported by the composer
[all …]
/aosp12/frameworks/compile/mclinker/include/mcld/LD/
H A DDiagCommonKinds.inc20 "cannot recognize the format of file `%0'.\n object format or given "
22 "cannot recognize the format of file `%0'.\n object format or given "
164 "Cannot initialize mcld::Target for given triple '%0'.\n(Detail: %1)",
165 "Cannot initialize mcld::Target for given triple '%0'.\n(Detail: %1)")
168 "Cannot initialize mcld::DiagnosticLineInfo for given triple '%0'",
169 "Cannot initialize mcld::DiagnosticLineInfo for given triple '%0'")
172 "Cannot initialize mcld::TargetLDBackend for given triple '%0'.",
173 "Cannot initialize mcld::TargetLDBackend for given triple '%0'.")
/aosp12/hardware/google/interfaces/bluetooth/ccc/1.0/
H A DIBluetoothCcc.hal26 * API to monitor Bluetooth and system timestamp for given Bluetooth device when Bluetooth
27 * controller send/receive given LMP events.
37 * API to stop monitor given Bluetooth device.
/aosp12/frameworks/native/opengl/specs/
H A DEGL_ANDROID_blob_cache.txt116 the cache and associates it with the given key. <get> points to a function
117 that retrieves from the cache the value associated with a given key. The
137 To insert a new binary value into the cache and associate it with a given
149 No guarantees are made as to whether a given key/value pair is present in
151 with the given key in the past then it is undefined which value, if any, is
154 recently set value for a given key.
156 To retrieve the binary value associated with a given key from the cache, a
165 a value associated with the given key then the size of that binary value in
168 If the cache contains a value for the given key and its size in bytes is
/aosp12/hardware/interfaces/soundtrigger/2.3/
H A DISoundTriggerHw.hal43 * Start recognition on a given model. Only one recognition active
64 * Set a model specific parameter with the given value. This parameter
75 * @param value The value to set for the given model parameter
91 * @param modelHandle The sound model associated with given modelParam
108 * to determine if a given parameter ID is supported at all by the
119 * of the parameter for the given model handle. If the parameter is not
/aosp12/hardware/interfaces/power/stats/1.0/
H A Dtypes.hal69 * given PowerEntity.
82 * ID corresponding to the state. Unique for a given PowerEntityStateSpace
90 * PowerEntityStateSpace contains the state space information of a given
91 * PowerEntity. The state space, is the set of possible states that a given
/aosp12/hardware/interfaces/automotive/evs/1.1/
H A DIEvsEnumerator.hal46 * @return evsCamera EvsCamera object associated with a given cameraId.
48 * not support a given stream configuration or is already
71 * requests access to the display identified by a given ID. If the target EVS display
95 * given ultrasonicsArrayId.
H A DIEvsCamera.hal43 * method if a given device ID is matched. Otherwise, this will return a
106 * @param display IEvsDisplay handle. If a given display is in either
113 * EvsResult::INVALID_ARG if a given display handle is null
171 * Retrieves values of given camera parameter.
191 * @return result EvsResult::OK if the driver recognizes a given
196 * given identifier.
232 * given buffers.
/aosp12/hardware/interfaces/thermal/2.0/
H A DIThermal.hal27 * @param filterType whether to filter the result for a given type.
47 * @param filterType whether to filter the result for a given type.
73 * should unregister the given IThermalChangedCallback first.
77 * @param filterType if filter for given sensor type.
104 * @param filterType whether to filter the result for a given type.
/aosp12/packages/apps/Launcher3/protos/
H A Dlauncher_atom.proto292 // New value matches with second top suggestion given that top suggestion was empty.
298 // New value matches with third top suggestion given that top suggestion was empty.
304 // New value matches with 4th top suggestion given that top suggestion was empty.
310 // New value is empty given that top suggestion was empty.
313 // New value is empty given that no suggestions were provided.
316 // New value is empty given that suggestions feature was disabled.
322 // New value is non-empty and not match with any suggestions given that top suggestion was empty.
/aosp12/frameworks/base/packages/SystemUI/docs/
H A Dphysics-animation-layout.md10 …, and has methods such as ```moveStack(x, y)``` to animate the stack to a given point. ExpansionAn…
23 If the animation at the given index should update another animation whenever its value changes, ret…
29 Returns a SpringForce instance to use for animations of the given property. This allows the control…
45 …(Path, int, TimeInterpolator)`, which animates a ‘target’ point along the given path using a tradi…
48 - `withStartDelay(int)`, for starting the animation after a given delay.
49 - `withStartVelocity(float)`, for starting the animation with the given start velocity.
73 …e method for starting animations on multiple child views, starting at the given index. The `ChildA…
120 Sets the given controller as the active controller for the layout. This causes the layout to constr…
/aosp12/hardware/interfaces/graphics/composer/2.1/
H A DIComposerClient.hal55 * layers are not marked as Composition::CLIENT or the given display
78 * determine whether a given display supports these modes.
132 /** Possible composition types for a given layer. */
304 * Creates a new layer on the given display.
321 * Destroys the given layer.
350 * Returns whether a client target with the given properties can be
449 * Returns whether the given display supports PowerMode::DOZE and
519 * Sets the color mode of the given display.
963 * Sets the blend mode of the given layer.
983 * Sets the desired composition type of the given layer. During
[all …]

12345678910>>...17