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/compile/slang/
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
558 bool valid = true; local
[all...]
H A Dslang_rs_context.cpp221 bool valid = true; local
237 valid = false;
245 valid = false;
251 if (valid) {
261 valid = false;
265 return valid;
/frameworks/native/libs/ui/
H A DPixelFormat.cpp122 bool valid = uint32_t(format) < numEntries; local
123 if (!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/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/utils/
H A DDebug.cpp113 bool valid; local
116 // valid = isasciitype(c[3]);
117 valid = true;
120 while (valid && i<3) {
122 if (!zero) valid = false;
125 //if (!isasciitype(c[i])) valid = false;
129 // if all zeros, not a valid type code.
130 if (zero) valid = false;
132 valid = isident(c[3]) ? true : false;
135 while (valid
[all...]
/frameworks/native/opengl/libs/EGL/
H A Degl_display.cpp331 // by construction, these are either 0 or valid (possibly terminated)
357 // by construction, these are either 0 or valid (possibly terminated)
449 void egl_display_t::HibernationMachine::setDisplayValid(bool valid) { argument
451 mDpyValid = valid;
/frameworks/base/core/java/android/view/
H A DTextureView.java326 boolean destroyLayer(boolean valid) { argument
517 * @return A valid {@link Bitmap.Config#ARGB_8888} bitmap, or null if the surface
544 * @return A valid {@link Bitmap.Config#ARGB_8888} bitmap, or null if the surface
613 * true, {@link #getSurfaceTexture()} returns a valid surface texture.
H A DView.java2653 * is only valid after a call to updateMatrix() or to a function that
12395 // The layer is not valid if the underlying GPU resources cannot be allocated
12419 boolean destroyLayer(boolean valid) { argument
12424 (valid || info.mHardwareRenderer.validate())) {
14941 * valid for the lifetime of this View. If the caller of this method keeps
15312 * @throws IllegalArgumentException If they specified key is not valid
15544 * {@link #onMeasure(int, int)} is a valid use.
/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.h67 bool valid; // true if the information is valid, false otherwise member in struct:android::RawAbsoluteAxisInfo
76 valid = false;
/frameworks/base/tools/aidl/
H A Daidl.cpp171 bool valid = false; local
208 valid = (len >= expected.length());
210 if (valid) {
225 valid = (expected == p);
227 valid = !strcasecmp(expected.c_str(), p);
231 if (!valid) {
/frameworks/base/core/java/android/widget/
H A DGridLayout.java172 * intended to avoid confusion between valid values whose sign may not be known.
1343 // its just to stop default (row/col > 0) constraints obliterating valid entries
1479 if (!entry.valid) {
1527 if (!arc.valid) {
1595 arc.valid = false;
2041 public boolean valid = true; field in class:GridLayout.Arc
2050 return span + " " + (!valid ? "+>" : "->") + " " + value;
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java171 * intended to avoid confusion between valid values whose sign may not be known.
1265 // its just to stop default (row/col > 0) constraints obliterating valid entries
1400 if (!entry.valid) {
1448 if (!arc.valid) {
1530 arc.valid = false;
1974 public boolean valid = true; field in class:GridLayout.Arc
1983 return span + " " + (!valid ? "+>" : "->") + " " + value;
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp2412 // Though the fast mixer thread has exited, it's state queue is still valid.
2460 bool valid = mCpuUsage.sampleAndEnable(wcNs); local
2463 if (valid) {
2478 valid = false;
2482 if (valid && mCpukHz > 0) {
8283 // the first valid handle in the list has control over the module
9223 // by convention, return first effect if id provided is 0 (0 is never a valid id)

Completed in 2374 milliseconds