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

/frameworks/base/services/java/com/android/server/display/
H A DDisplayViewport.java30 // True if this viewport is valid.
31 public boolean valid; field in class:DisplayViewport
54 valid = viewport.valid;
66 return "DisplayViewport{valid=" + valid
/frameworks/base/services/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.cpp223 bool valid = true; local
239 valid = false;
247 valid = false;
253 if (valid) {
263 valid = false;
267 return valid;
H A Dslang_rs_export_foreach.cpp59 bool valid = true; local
97 valid = false;
130 valid = false;
155 valid = false;
161 valid = false;
165 valid = false;
172 valid = false;
189 valid = false;
198 if (valid) {
223 valid
234 bool valid = true; local
575 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/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.cpp295 // by construction, these are either 0 or valid (possibly terminated)
321 // by construction, these are either 0 or valid (possibly terminated)
420 void egl_display_t::HibernationMachine::setDisplayValid(bool valid) { argument
422 mDpyValid = valid;
/frameworks/av/media/libmedia/
H A DAudioTrackShared.cpp735 bool valid = false; local
746 valid = true;
755 valid = true;
758 if (!valid) {
/frameworks/base/core/java/android/view/
H A DTextureView.java334 boolean destroyLayer(boolean valid) { argument
525 * @return A valid {@link Bitmap.Config#ARGB_8888} bitmap, or null if the surface
552 * @return A valid {@link Bitmap.Config#ARGB_8888} bitmap, or null if the surface
621 * true, {@link #getSurfaceTexture()} returns a valid surface texture.
H A DView.java2837 * is only valid after a call to updateMatrix() or to a function that
12458 * This method ensures the hardware renderer is in a valid state
12461 * This method will attempt to set a valid state even if the window
12465 * does not exist or cannot be put in a valid state, this method
12470 * @param action The action to execute after the renderer is in a valid state
13111 // The layer is not valid if the underlying GPU resources cannot be allocated
13135 boolean destroyLayer(boolean valid) { argument
13140 (valid || info.mHardwareRenderer.validate())) {
15786 * valid for the lifetime of this View. If the caller of this method keeps
16243 * @throws IllegalArgumentException If they specified key is not valid
[all...]
/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/services/input/
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/aidl/
H A Daidl.cpp177 bool valid = false; local
214 valid = (len >= expected.length());
216 if (valid) {
231 valid = (expected == p);
233 valid = !strcasecmp(expected.c_str(), p);
237 if (!valid) {
/frameworks/base/core/java/android/widget/
H A DGridLayout.java185 * intended to avoid confusion between valid values whose sign may not be known.
1390 // its just to stop default (row/col > 0) constraints obliterating valid entries
1526 if (!entry.valid) {
1574 if (!arc.valid) {
1642 arc.valid = false;
2092 public boolean valid = true; field in class:GridLayout.Arc
2101 return span + " " + (!valid ? "+>" : "->") + " " + value;
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java185 * intended to avoid confusion between valid values whose sign may not be known.
1279 // its just to stop default (row/col > 0) constraints obliterating valid entries
1415 if (!entry.valid) {
1463 if (!arc.valid) {
1531 arc.valid = false;
1975 public boolean valid = true; field in class:GridLayout.Arc
1984 return span + " " + (!valid ? "+>" : "->") + " " + value;
/frameworks/av/services/audioflinger/
H A DThreads.cpp192 bool valid = mCpuUsage.sampleAndEnable(wcNs); local
195 if (valid) {
210 valid = false;
214 if (valid && mCpukHz > 0) {
1631 LOG_FATAL("HAL channel mask %#x not valid for output", mChannelMask);
1640 LOG_FATAL("HAL format %d not valid for output", mFormat);
2612 // Though the fast mixer thread has exited, it's state queue is still valid.

Completed in 1397 milliseconds