Searched defs:valueName (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
H A DPreconditions.java136 * @param valueName the name of the argument to use if the check fails
143 final String valueName) {
145 throw new NullPointerException(valueName + " must not be null");
152 String.format("%s[%d] must not be null", valueName, ctr));
164 * @param valueName the name of the argument to use if the check fails.
172 final String valueName) {
174 throw new NullPointerException(valueName + " must not be null");
177 throw new IllegalArgumentException(valueName + " is empty");
142 checkCollectionElementsNotNull(final Collection<T> value, final String valueName) argument
171 checkCollectionNotEmpty(final Collection<T> value, final String valueName) argument
/frameworks/base/core/java/com/android/internal/util/
H A DPreconditions.java244 * @param valueName the name of the argument to use if the check fails
250 public static float checkArgumentFinite(final float value, final String valueName) { argument
252 throw new IllegalArgumentException(valueName + " must not be NaN");
254 throw new IllegalArgumentException(valueName + " must not be infinite");
269 * @param valueName the name of the argument to use if the check fails
276 String valueName) {
278 throw new IllegalArgumentException(valueName + " must not be NaN");
282 "%s is out of range of [%f, %f] (too low)", valueName, lower, upper));
286 "%s is out of range of [%f, %f] (too high)", valueName, lower, upper));
298 * @param valueName th
275 checkArgumentInRange(float value, float lower, float upper, String valueName) argument
304 checkArgumentInRange(int value, int lower, int upper, String valueName) argument
331 checkArgumentInRange(long value, long lower, long upper, String valueName) argument
356 checkArrayElementsNotNull(final T[] value, final String valueName) argument
382 checkCollectionElementsNotNull( final C value, final String valueName) argument
411 checkCollectionNotEmpty(final Collection<T> value, final String valueName) argument
438 checkArrayElementsInRange(float[] value, float lower, float upper, String valueName) argument
[all...]
/frameworks/av/services/audiopolicy/engineconfigurable/wrapper/
H A DParameterManagerWrapper.cpp153 char *valueName = strtok_r(valueNames, ",", &ctx); local
154 while (valueName != NULL) {
155 if (strlen(valueName) != 0) {
159 if (strchr(valueName, ':') != NULL) {
161 char *first = strtok(valueName, ":");
174 addCriterionTypeValuePair(typeName, pfwIndex, valueName);
178 valueName = strtok_r(NULL, ",", &ctx);
/frameworks/base/media/java/android/mtp/
H A DMtpObjectInfo.java506 private static int longToUint32(long value, String valueName) { argument
507 Preconditions.checkArgumentInRange(value, 0, 0xffffffffL, valueName);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DGraphReader.java442 private static void assertValueNotNull(String valueName, Object value) { argument
/frameworks/opt/setupwizard/tools/docs/
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...

Completed in 435 milliseconds