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

1234

/frameworks/compile/slang/
H A Dslang_rs_special_func.cpp58 bool valid = true; local
72 valid = false;
81 valid = false;
89 valid = false;
97 valid = false;
103 return valid;
H A Dslang_rs_export_foreach.cpp57 bool valid = true; local
77 valid &= validateAndConstructKernelParams(Context, FD);
79 valid &= validateAndConstructOldStyleParams(Context, FD);
82 valid &= setSignatureMetadata(Context, FD);
83 return valid;
92 bool valid = true; local
101 valid = false;
107 valid &= processSpecialParameters(Context, FD, &IndexOfFirstSpecialParameter);
122 valid = false;
136 valid
167 bool valid = true; local
271 bool valid = true; local
[all...]
H A Dslang_rs_special_kernel_param.cpp113 bool valid = true; local
147 valid = false;
162 valid = false;
174 valid = false;
186 valid = false;
199 valid = false;
214 valid = false;
231 return valid;
H A Dslang_rs_context.cpp226 bool valid = true; local
253 valid = false;
256 if (valid && ShouldExportVariable && isSyntheticName(VD->getName()))
258 if (valid && ShouldExportVariable && !processExportVar(VD)) {
259 valid = false;
268 valid = false;
280 if (valid && mExportForEach[0] == nullptr) {
296 valid = false;
300 return valid;
312 bool valid local
[all...]
/frameworks/base/core/java/android/hardware/display/
H A DDisplayViewport.java33 // True if this viewport is valid.
34 public boolean valid; field in class:DisplayViewport
60 valid = viewport.valid;
87 return valid == other.valid &&
101 result += prime * result + (valid ? 1 : 0);
115 return "DisplayViewport{valid=" + valid
/frameworks/base/services/core/java/com/android/server/updates/
H A DTzDataInstallReceiver.java49 boolean valid = installer.install(content);
50 Slog.i(TAG, "Timezone data install valid for this device: " + valid);
51 // Even if !valid, we call super.install(). Only in the event of an exception should we
/frameworks/base/tools/aapt2/
H A DLocale.cpp81 bool valid = false; local
86 valid = true;
90 if (!valid || num_tags == 1) {
91 return valid;
94 // At this point, valid == true && numTags > 1.
104 valid = false;
107 if (!valid || num_tags == 2) {
108 return valid;
111 // At this point, valid == true && numTags > 1.
120 valid
[all...]
/frameworks/base/services/core/jni/
H A Dcom_android_server_lights_LightsService.cpp74 bool valid = true; local
78 valid = false;
85 valid = false;
92 valid = false;
98 valid = false;
101 return valid;
/frameworks/av/media/libstagefright/codecs/mp3dec/test/
H A Dmp3reader.cpp203 // Resync to next valid MP3 frame in the file.
218 // out, even if there _were_ 10 bytes of valid mp3 audio data...
242 bool valid = false; local
304 // We found what looks like a valid frame,
309 valid = true;
315 valid = false;
322 valid = false;
328 valid = false;
335 if (valid) {
346 } while (!valid);
[all...]
/frameworks/av/include/common_time/
H A Dcc_helper.h48 status_t isCommonTimeValid(bool* valid, uint32_t* timelineID);
/frameworks/base/core/tests/coretests/src/android/graphics/
H A DBitmapFactoryTest.java40 assertTrue("Got invalid FileDescriptor", fd.valid());
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsService.java133 boolean valid = false;
172 valid = true;
186 valid = true;
190 valid = true;
199 valid = true;
207 valid = true;
218 // what we have so far is a valid command
219 valid = true;
227 valid = true;
235 valid
[all...]
/frameworks/av/drm/mediacas/plugins/clearkey/
H A DClearKeySessionLibrary.cpp34 mKeyInfo[0].valid = mKeyInfo[1].valid = false;
H A DClearKeySessionLibrary.h51 bool valid; member in struct:android::clearkeycas::ClearKeyCasSession::KeyInfo
/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/core/tests/coretests/src/android/net/
H A DNetworkTest.java45 assertFalse(fd.valid());
60 assertTrue(fis.getFD().valid());
84 assertTrue(mLocalClient.getFileDescriptor().valid());
/frameworks/native/services/displayservice/
H A DDisplayEventReceiver.cpp64 if (!valid()) {
71 bool DisplayEventReceiver::AttachedEvent::valid() const { function in class:android::frameworks::displayservice::V1_0::implementation::DisplayEventReceiver::AttachedEvent
129 return mAttached->valid() ? Status::SUCCESS : Status::UNKNOWN;
/frameworks/native/libs/vr/libpdx/private/pdx/
H A Dchannel_handle.h35 bool valid() const { return value_ >= 0; } function in class:android::pdx::ChannelHandleBase
36 explicit operator bool() const { return valid(); }
/frameworks/native/services/displayservice/include/displayservice/
H A DDisplayEventReceiver.h52 bool valid() const;
/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/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);
/frameworks/native/libs/gui/
H A DFrameTimestamps.cpp106 if (!valid) {
163 return frame.valid && mFrameNumber == frame.frameNumber;
200 // Uses !|valid| as the MSB.
203 if (lhs.valid == rhs.valid) {
206 return lhs.valid;
212 if (!earliestFrame->valid) {
296 // The consumer only sends valid frames.
297 frame.valid = true;
371 newTimestamps.valid
[all...]
/frameworks/rs/script_api/
H A Drs_object_info.spec159 points to an actual valid object; it only checks for null.
305 Returns the Allocation for a given pointer. The pointer should point within a valid
306 allocation. The results are undefined if the pointer is not from a valid Allocation.

Completed in 1600 milliseconds

1234