Lines Matching refs:characteristics

74     // TODO: Consider making this work across any metadata object, not just camera characteristics
136 * @param characteristics static info for a camera
137 * @throws IllegalArgumentException if characteristics was null
139 public StaticMetadata(CameraCharacteristics characteristics) {
140 this(characteristics, CheckLevel.WARN, /*collector*/null);
150 * @param characteristics static info for a camera
152 * @throws IllegalArgumentException if characteristics or collector was null.
154 public StaticMetadata(CameraCharacteristics characteristics, CameraErrorCollector collector) {
155 this(characteristics, CheckLevel.COLLECT, collector);
166 * @param characteristics static info for a camera
169 * @throws IllegalArgumentException if characteristics was null or level was
172 public StaticMetadata(CameraCharacteristics characteristics, CheckLevel level,
174 if (characteristics == null) {
175 throw new IllegalArgumentException("characteristics was null");
181 mCharacteristics = characteristics;
1863 * Determine whether or not all the {@code keys} are available characteristics keys
1866 * <p>If this returns {@code true}, then querying for this key from a characteristics
1869 * @param keys collection of camera characteristics keys
1870 * @return whether or not all characteristics keys are available
1913 * Determine whether or not all the {@code keys} are available characteristics keys
1916 * <p>If this returns {@code true}, then querying for this key from a characteristics
1920 * @return whether or not all characteristics keys are available