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

1234567

/external/clang/test/CodeGen/
H A D2006-09-11-BitfieldRefCrash.c6 unsigned valid : 2; member in struct:state_struct
10 return p->valid;
/external/icu4c/common/
H A Dlocbased.h52 * object. Either the valid or the actual locale may be
62 * object. Either the valid or the actual locale may be
73 * @param valid the ID of the valid locale
76 void setLocaleIDs(const char* valid, const char* actual);
80 char* valid; member in class:LocaleBased
86 valid(validAlias), actual(actualAlias) {
92 valid((char*)validAlias), actual((char*)actualAlias) {
/external/chromium/chrome/browser/ui/gtk/
H A Dcairo_cached_surface.h29 bool valid() const { function in class:CairoCachedSurface
/external/chromium/net/base/
H A Dmime_util_unittest.cc15 bool valid; member in struct:net::__anon2809
29 EXPECT_EQ(tests[i].valid, rv);
39 bool valid; member in struct:net::__anon2810
55 EXPECT_EQ(tests[i].valid, rv);
H A Dx509_cert_types.cc105 bool valid = true; local
108 exploded.year = ParseIntAndAdvance(&field, year_length, &valid);
109 exploded.month = ParseIntAndAdvance(&field, 2, &valid);
110 exploded.day_of_month = ParseIntAndAdvance(&field, 2, &valid);
111 exploded.hour = ParseIntAndAdvance(&field, 2, &valid);
112 exploded.minute = ParseIntAndAdvance(&field, 2, &valid);
113 exploded.second = ParseIntAndAdvance(&field, 2, &valid);
114 if (valid && year_length == 2)
117 valid &= exploded.HasValidValues();
119 if (!valid)
[all...]
/external/chromium/net/http/
H A Dhttp_byte_range_unittest.cc13 bool valid; member in struct:__anon2937
31 EXPECT_EQ(tests[i].valid, range.IsValid());
47 // Zero instance size is valid, this is the case that user has to handle.
/external/oprofile/libutil++/
H A Dbfd_support.h35 bool valid() const { return abfd; } function in struct:bfd_info
90 * find_separate_debug_file - return true if a valid separate debug file found
94 * @param filename path to valid debug file
/external/webkit/Source/WebKit/android/content/
H A Dcontent_detector.h57 bool valid; // Flag indicating if the result is valid. member in struct:ContentDetector::Result
62 Result() : valid(false) {}
67 : valid(true),
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMNodeIterator.java62 private boolean valid=true; field in class:DTMNodeIterator
103 valid=false;
160 if(!valid)
178 if(!valid)
/external/chromium/chrome/browser/metrics/
H A Dmetrics_response.h21 // True if the XML passed to the constructor was valid and parseable.
22 bool valid() { return valid_; } function in class:MetricsResponse
/external/skia/tests/
H A DClipperTest.cpp56 bool valid = SkLineClipper::IntersectLine(&gEmpty[i], gR, dst); local
57 if (valid) {
60 REPORTER_ASSERT(reporter, !valid);
80 bool valid = SkLineClipper::IntersectLine(&gFull[i], gR, dst); local
81 if (!valid || memcmp(&gFull[i], dst, sizeof(dst))) {
84 REPORTER_ASSERT(reporter, valid && !memcmp(&gFull[i], dst, sizeof(dst)));
99 bool valid = SkLineClipper::IntersectLine(&gPartial[i], gR, dst); local
100 if (!valid || memcmp(&gPartial[i+2], dst, sizeof(dst))) {
103 REPORTER_ASSERT(reporter, valid &&
/external/srec/srec/cfront/
H A Dca_front.c128 int valid; local
149 valid = make_frame(hWave->data.channel, hFrontend->config->waveobj,
155 valid = make_frame(hWave->data.channel, hFrontend->config->waveobj,
166 if (valid > 0 && hWave->data.channel->frame_count > (DELTA + 3))
170 valid = False;
172 else valid = False;
178 return (valid);
/external/apache-harmony/luni/src/test/api/unix/org/apache/harmony/luni/tests/java/net/
H A DUnixNetworkInterfaceTest.java32 private boolean valid = false; field in class:UnixNetworkInterfaceTest
46 if (!up && valid) {
70 if (valid) {
99 if (hardAddr != null && valid) {
130 if (valid) {
158 && subInterfaces2.hasMoreElements() && valid) {
179 while (subInterfaces.hasMoreElements() && valid) {
218 valid = (netifs != null)
225 valid = false;
/external/chromium/chrome/browser/policy/
H A Dcloud_policy_cache_base.h74 bool valid; member in struct:policy::CloudPolicyCacheBase::PublicKeyVersion
136 // valid policy, learned that the device is unmanaged or ran into
/external/clang/test/Analysis/
H A Dcxx11-crashes.cpp5 bool valid; member in class:PlotPoint
/external/freetype/include/freetype/internal/
H A Dftvalid.h96 ft_validator_init( FT_Validator valid,
104 ft_validator_run( FT_Validator valid ); variable
111 ft_validator_error( FT_Validator valid,
115 /* Calls ft_validate_error. Assumes that the `valid' local variable */
122 ft_validator_error( valid, _prefix ## _error )
/external/llvm/lib/MC/MCDisassembler/
H A DEDInst.h45 /// valid - Returns true if the result has been obtained by executing the
47 bool valid() { return Valid; } function in struct:llvm::CachedResult
49 /// valid() is false
51 /// setResult - Sets the result of the function and declares it valid
/external/valgrind/main/coregrind/m_demangle/
H A Ddemangle.c172 Bool error, oflow, valid, fn_is_encoded, is_VG_Z_prefixed; local
182 valid = sym[0] == '_'
195 if (valid
200 valid = False;
203 if (!valid)
/external/webkit/Source/WebCore/css/
H A DCSSStyleApplyProperty.h82 static bool valid(CSSPropertyID property) function in class:WebCore::CSSStyleApplyProperty
90 ASSERT(valid(property));
96 ASSERT(valid(newProperty));
97 ASSERT(valid(equivalentProperty));
103 ASSERT(valid(property));
/external/webkit/Source/WebCore/html/
H A DValidityState.cpp209 bool ValidityState::valid() const function in class:WebCore::ValidityState
/external/webkit/Source/WebCore/svg/
H A DSVGFitToViewBox.cpp55 bool valid = parseNumber(c, end, x) && parseNumber(c, end, y) && parseNumber(c, end, width) && parseNumber(c, end, height, false); local
60 if (!valid) {
H A DSVGTests.cpp103 bool valid = svgElement->isValid(); local
104 if (valid && !svgElement->attached())
106 if (!valid && svgElement->attached())
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dgas_serv.h46 u8 valid; member in struct:gas_dialog_info
/external/wpa_supplicant_8/src/ap/
H A Dgas_serv.h46 u8 valid; member in struct:gas_dialog_info
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dgas_serv.h46 u8 valid; member in struct:gas_dialog_info

Completed in 886 milliseconds

1234567