Searched refs:valid (Results 1 - 25 of 49) sorted by relevance

12

/frameworks/base/core/java/android/hardware/display/
H A DDisplayViewport.java32 // True if this viewport is valid.
33 public boolean valid; field in class:DisplayViewport
56 valid = viewport.valid;
68 return "DisplayViewport{valid=" + valid
/frameworks/compile/slang/
H A Dslang_rs_export_foreach.cpp40 bool valid = true; local
60 valid |= validateAndConstructKernelParams(Context, FD);
62 valid |= validateAndConstructOldStyleParams(Context, FD);
65 valid |= setSignatureMetadata(Context, FD);
66 return valid;
75 bool valid = true; local
84 valid = false;
91 valid |= validateIterationParameters(Context, FD, &IndexOfFirstIterator);
105 valid = false;
119 valid
150 bool valid = true; local
237 bool valid = true; local
299 bool valid = true; local
524 bool valid = true; local
[all...]
H A Dslang_rs_context.cpp204 bool valid = true; local
220 valid = false;
228 valid = false;
234 if (valid) {
244 valid = false;
248 return valid;
/frameworks/av/include/common_time/
H A Dcc_helper.h48 status_t isCommonTimeValid(bool* valid, uint32_t* timelineID);
H A DICommonClock.h72 virtual status_t isCommonTimeValid(bool* valid, uint32_t* timelineID) = 0;
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/
H A DBitmapFactoryTest.java40 assertTrue("Got invalid FileDescriptor", fd.valid());
/frameworks/av/media/common_time/
H A Dcc_helper.cpp114 CCHELPER_METHOD(isCommonTimeValid(bool* valid, uint32_t* timelineID),
115 isCommonTimeValid(valid, timelineID))
H A DICommonClock.cpp54 virtual status_t isCommonTimeValid(bool* valid, uint32_t* timelineID) { argument
63 *valid = reply.readInt32();
244 bool valid; local
246 status_t status = isCommonTimeValid(&valid, &timelineID);
249 reply->writeInt32(valid);
/frameworks/base/cmds/settings/src/com/android/commands/settings/
H A DSettingsCmd.java64 boolean valid = false;
97 valid = true;
108 valid = true;
116 valid = false;
119 if (valid) {
/frameworks/av/media/libstagefright/
H A DMP3Extractor.cpp64 // out, even if there _were_ 10 bytes of valid mp3 audio data...
94 bool valid = false; local
160 // We found what looks like a valid frame,
165 valid = true;
169 valid = false;
178 valid = false;
185 valid = false;
194 if (valid) {
201 ALOGV("no dice, no valid sequence of frames found.");
207 } while (!valid);
[all...]
/frameworks/base/core/java/android/app/
H A DDatePickerDialog.java206 public void onValidationChanged(boolean valid) {
209 positive.setEnabled(valid);
H A DTimePickerDialog.java175 public void onValidationChanged(boolean valid) {
178 positive.setEnabled(valid);
/frameworks/base/libs/common_time/
H A Dcommon_clock_service.cpp41 status_t CommonClockService::isCommonTimeValid(bool* valid, argument
43 return mTimeServer.isCommonTimeValid(valid, timelineID);
H A Dcommon_clock_service.h34 virtual status_t isCommonTimeValid(bool* valid, uint32_t *timelineID);
H A Dcommon_time_server_api.cpp67 status_t CommonTimeServer::isCommonTimeValid(bool* valid, argument
70 *valid = mCommonClock.isValid();
/frameworks/base/core/jni/
H A Dandroid_text_StaticLayout.cpp69 if (icuLocale.valid()) {
/frameworks/base/core/java/android/widget/
H A DTimePicker.java154 * Sets the callback that indicates the current time is valid.
262 void onValidationChanged(boolean valid); argument
302 protected void onValidationChanged(boolean valid) { argument
304 mValidationCallback.onValidationChanged(valid);
/frameworks/base/core/java/android/net/http/
H A DCertificateChainValidator.java113 // get a valid SSLSession, close the socket if we fail
219 boolean valid = domain != null
223 if (!valid) {
/frameworks/base/services/core/java/com/android/server/notification/
H A DConditionProviders.java243 final ArrayMap<Uri, Condition> valid = new ArrayMap<Uri, Condition>(N);
250 if (valid.containsKey(id)) {
254 valid.put(id, conditions[i]);
256 if (valid.size() == 0) return null;
257 if (valid.size() == N) return conditions;
258 final Condition[] rt = new Condition[valid.size()];
260 rt[i] = valid.valueAt(i);
/frameworks/base/tools/aapt/
H A DAaptAssets.cpp219 bool valid = false; local
224 valid = true;
228 if (!valid || numTags == 1) {
229 return valid;
232 // At this point, valid == true && numTags > 1.
242 valid = false;
245 if (!valid || numTags == 2) {
246 return valid;
249 // At this point, valid == true && numTags > 1.
257 valid
[all...]
/frameworks/base/media/java/android/media/
H A DMediaMetadataRetriever.java181 if (!descriptor.valid()) {
/frameworks/native/opengl/libs/EGL/
H A Degl_display.h68 // add reference to this object. returns true if this is a valid object.
172 void setDisplayValid(bool valid);
H A Degl_display.cpp320 // by construction, these are either 0 or valid (possibly terminated)
346 // by construction, these are either 0 or valid (possibly terminated)
445 void egl_display_t::HibernationMachine::setDisplayValid(bool valid) { argument
447 mDpyValid = valid;
/frameworks/base/tools/aidl/
H A Daidl.cpp178 bool valid = false; local
215 valid = (len >= expected.length());
217 if (valid) {
232 valid = (expected == p);
234 valid = !strcasecmp(expected.c_str(), p);
238 if (!valid) {
/frameworks/base/opengl/java/android/opengl/
H A DGLErrorWrapper.java949 int valid = mgl10Ext.glQueryMatrixxOES(mantissa, mantissaOffset,
952 return valid;
957 int valid = mgl10Ext.glQueryMatrixxOES(mantissa, exponent);
959 return valid;
1213 boolean valid = mgl11.glIsBuffer(buffer);
1215 return valid;
1220 boolean valid = mgl11.glIsEnabled(cap);
1222 return valid;
1227 boolean valid = mgl11.glIsTexture(texture);
1229 return valid;
[all...]

Completed in 4247 milliseconds

12