/frameworks/compile/slang/ |
H A D | slang_rs_export_foreach.cpp | 58 bool valid = true; local 86 valid = false; 119 valid = false; 144 valid = false; 150 valid = false; 154 valid = false; 161 valid = false; 178 valid = false; 187 if (valid) { 212 valid 371 bool valid = true; local [all...] |
H A D | slang_rs_context.cpp | 220 bool valid = true; local 236 valid = false; 244 valid = false; 250 if (valid) { 260 valid = false; 264 return valid;
|
H A D | slang_rs_backend.cpp | 122 bool valid = true; local 127 valid = false; 130 valid &= RSExportType::ValidateVarDecl(VD, TargetAPI); 132 return valid; 136 bool valid = true; local 144 valid = false; 148 return valid;
|
/frameworks/av/include/common_time/ |
H A D | cc_helper.h | 48 status_t isCommonTimeValid(bool* valid, uint32_t* timelineID);
|
H A D | ICommonClock.h | 72 virtual status_t isCommonTimeValid(bool* valid, uint32_t* timelineID) = 0;
|
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/ |
H A D | BitmapFactoryTest.java | 40 assertTrue("Got invalid FileDescriptor", fd.valid());
|
/frameworks/av/media/common_time/ |
H A D | cc_helper.cpp | 114 CCHELPER_METHOD(isCommonTimeValid(bool* valid, uint32_t* timelineID), 115 isCommonTimeValid(valid, timelineID))
|
H A D | ICommonClock.cpp | 53 virtual status_t isCommonTimeValid(bool* valid, uint32_t* timelineID) { argument 62 *valid = reply.readInt32(); 243 bool valid; local 245 status_t status = isCommonTimeValid(&valid, &timelineID); 248 reply->writeInt32(valid);
|
/frameworks/native/libs/ui/ |
H A D | PixelFormat.cpp | 122 bool valid = uint32_t(format) < numEntries; local 123 if (!valid) {
|
/frameworks/base/services/common_time/ |
H A D | common_clock_service.h | 33 virtual status_t isCommonTimeValid(bool* valid, uint32_t *timelineID);
|
H A D | common_clock_service.cpp | 41 status_t CommonClockService::isCommonTimeValid(bool* valid, argument 43 return mTimeServer.isCommonTimeValid(valid, timelineID);
|
H A D | common_time_server_api.cpp | 67 status_t CommonTimeServer::isCommonTimeValid(bool* valid, argument 70 *valid = mCommonClock.isValid();
|
H A D | common_time_server.h | 55 status_t isCommonTimeValid(bool* valid, uint32_t* timelineID); 246 // network synchronization whenever it has a valid network interface to bind 248 // will only participate in network synchronization when it has both a valid 255 bool mBindIfaceValid; // whether or not the bind Iface is valid. 256 bool mBindIfaceDirty; // whether or not the bind Iface is valid.
|
/frameworks/av/media/libstagefright/ |
H A D | MP3Extractor.cpp | 64 // 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/net/http/ |
H A D | CertificateChainValidator.java | 77 // get a valid SSLSession, close the socket if we fail 160 boolean valid = domain != null 163 if (!valid) {
|
/frameworks/base/media/java/android/media/ |
H A D | MediaMetadataRetriever.java | 171 if (!descriptor.valid()) {
|
/frameworks/native/opengl/libs/EGL/ |
H A D | egl_display.h | 70 // add reference to this object. returns true if this is a valid object. 170 void setDisplayValid(bool valid);
|
H A D | egl_display.cpp | 318 // by construction, these are either 0 or valid (possibly terminated) 344 // by construction, these are either 0 or valid (possibly terminated) 436 void egl_display_t::HibernationMachine::setDisplayValid(bool valid) { argument 438 mDpyValid = valid;
|
/frameworks/base/services/input/ |
H A D | EventHub.h | 67 bool valid; // true if the information is valid, false otherwise member in struct:android::RawAbsoluteAxisInfo 76 valid = false;
|
H A D | InputReader.cpp | 1807 if (axis.valid) { 2876 // Ensure we have valid X and Y axes. 2877 if (!mRawPointerAxes.x.valid || !mRawPointerAxes.y.valid) { 2965 if (mRawPointerAxes.touchMajor.valid 2968 } else if (mRawPointerAxes.toolMajor.valid 3016 } else if (mRawPointerAxes.pressure.valid 3034 mHaveTilt = mRawPointerAxes.tiltX.valid && mRawPointerAxes.tiltY.valid; 3069 if (mRawPointerAxes.orientation.valid) { [all...] |
/frameworks/base/tools/aidl/ |
H A D | aidl.cpp | 171 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/opengl/java/android/opengl/ |
H A D | GLErrorWrapper.java | 949 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...] |
/frameworks/base/core/java/android/os/ |
H A D | MemoryFile.java | 93 * will fail, but {@link #getFileDescriptor()} will still return a valid file descriptor. 119 return !mFD.valid(); 248 * @throws IOException If <code>fd</code> is not a valid file descriptor.
|
/frameworks/base/core/java/android/view/ |
H A D | TextureView.java | 319 boolean destroyLayer(boolean valid) { argument 501 * @return A valid {@link Bitmap.Config#ARGB_8888} bitmap, or null if the surface 528 * @return A valid {@link Bitmap.Config#ARGB_8888} bitmap, or null if the surface 596 * true, {@link #getSurfaceTexture()} returns a valid surface texture.
|
/frameworks/base/core/java/android/widget/ |
H A D | GridLayout.java | 172 * 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;
|