Searched defs:valid (Results 1 - 18 of 18) sorted by relevance

/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/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_time_server_api.cpp67 status_t CommonTimeServer::isCommonTimeValid(bool* valid, argument
70 *valid = mCommonClock.isValid();
/frameworks/compile/slang/
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;
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...]
/frameworks/av/media/common_time/
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/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);
H A DDatePicker.java263 * Sets the callback that indicates the current date is valid.
516 protected void onValidationChanged(boolean valid) { argument
518 mValidationCallback.onValidationChanged(valid);
530 void onValidationChanged(boolean valid); argument
H A DGridLayout.java136 * the corresponding value in any other valid solution.
187 * intended to avoid confusion between valid values whose sign may not be known.
1404 // its just to stop default (row/col > 0) constraints obliterating valid entries
1540 if (!entry.valid) {
1588 if (!arc.valid) {
1664 arc.valid = false;
2240 public boolean valid = true; field in class:GridLayout.Arc
2249 return span + " " + (!valid ? "+>" : "->") + " " + value;
/frameworks/native/libs/binder/
H A DDebug.cpp99 bool valid; local
102 // valid = isasciitype(c[3]);
103 valid = true;
106 while (valid && i<3) {
108 if (!zero) valid = false;
111 //if (!isasciitype(c[i])) valid = false;
115 // if all zeros, not a valid type code.
116 if (zero) valid = false;
118 valid = isident(c[3]) ? true : false;
121 while (valid
[all...]
/frameworks/native/opengl/libs/EGL/
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/av/media/libmedia/
H A DAudioTrackShared.cpp770 bool valid = false; local
781 valid = true;
801 valid = true;
804 if (!valid || mPosition > mFrameCount) {
/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/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/native/services/inputflinger/
H A DEventHub.h82 bool valid; // true if the information is valid, false otherwise member in struct:android::RawAbsoluteAxisInfo
91 valid = false;
/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/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java132 * the corresponding value in any other valid solution.
177 * intended to avoid confusion between valid values whose sign may not be known.
1281 // its just to stop default (row/col > 0) constraints obliterating valid entries
1417 if (!entry.valid) {
1465 if (!arc.valid) {
1541 arc.valid = false;
2115 public boolean valid = true; field in class:GridLayout.Arc
2124 return span + " " + (!valid ? "+>" : "->") + " " + value;
/frameworks/av/services/audioflinger/
H A DThreads.cpp242 bool valid = mCpuUsage.sampleAndEnable(wcNs); local
245 if (valid) {
260 valid = false;
264 if (valid && mCpukHz > 0) {
1816 LOG_ALWAYS_FATAL("HAL channel mask %#x not valid for output", mChannelMask);
1827 LOG_ALWAYS_FATAL("HAL format %#x not valid for output", mFormat);
1922 mMixerBufferFormat = AUDIO_FORMAT_PCM_FLOAT; // also valid: AUDIO_FORMAT_PCM_16_BIT.
2558 // Merge mMixerBuffer data into mEffectBuffer (if any effects are valid)
2600 // Effects buffer (buffer valid), we need to
2964 // Though the fast mixer thread has exited, it's state queue is still valid
[all...]

Completed in 1455 milliseconds