Searched defs:valid (Results 51 - 75 of 674) sorted by relevance

1234567891011>>

/external/chromium_org/components/crx_file/
H A Dcrx_file.cc58 bool valid = false; local
77 valid = true;
78 return valid;
/external/chromium_org/gpu/command_buffer/service/
H A Dgles2_cmd_decoder_unittest_2.cc256 bool valid) {
257 if (!valid) {
270 bool valid) {
271 if (valid) {
283 bool /* valid */) {
336 bool /* valid */) {
351 bool /* valid */) {
371 bool /* valid */) {
377 bool /* valid */) {
383 bool /* valid */) {
255 SpecializedSetup( bool valid) argument
269 SpecializedSetup( bool valid) argument
[all...]
/external/chromium_org/net/cert/
H A Dx509_cert_types.cc61 bool valid = true; local
64 exploded.year = ParseIntAndAdvance(&field, year_length, &valid);
65 exploded.month = ParseIntAndAdvance(&field, 2, &valid);
66 exploded.day_of_month = ParseIntAndAdvance(&field, 2, &valid);
67 exploded.hour = ParseIntAndAdvance(&field, 2, &valid);
68 exploded.minute = ParseIntAndAdvance(&field, 2, &valid);
69 exploded.second = ParseIntAndAdvance(&field, 2, &valid);
70 if (valid && year_length == 2)
73 valid &= exploded.HasValidValues();
75 if (!valid)
[all...]
/external/chromium_org/net/cookies/
H A Dcookie_util_unittest.cc67 const bool valid; member in struct:__anon9129
143 if (!tests[i].valid) {
/external/deqp/framework/opengl/simplereference/
H A DsglrShaderProgram.cpp105 bool ShaderProgramDeclaration::valid (void) const function in class:sglr::pdec::ShaderProgramDeclaration
149 DE_ASSERT(decl.valid());
/external/qemu/android/base/files/
H A DScopedHandle.h41 // Returns true iff the wrapped HANDLE value is valid.
42 bool valid() const { return handle_ != INVALID_HANDLE_VALUE; } function in class:android::base::ScopedHandle
/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/valgrind/main/memcheck/tests/amd64/
H A Dinsn-pcmpistri.c34 /* Compute strlen(s). Arrange for result to be valid or invalid
36 int test_strlen(const char *const s, int valid) argument
50 if (valid) {
/external/apache-harmony/luni/src/test/api/unix/org/apache/harmony/luni/tests/java/net/
H A DUnixNetworkInterfaceTest.java31 private boolean valid = false; field in class:UnixNetworkInterfaceTest
44 if (!up && valid) {
67 if (valid) {
95 if (hardAddr != null && valid) {
125 if (valid) {
152 && subInterfaces2.hasMoreElements() && valid) {
172 while (subInterfaces.hasMoreElements() && valid) {
209 valid = (netifs != null)
216 valid = false;
/external/chromium_org/chrome/browser/prefs/
H A Dincognito_mode_prefs.cc48 bool valid = IntToAvailability(pref_value, &result); local
49 DCHECK(valid);
/external/chromium_org/components/policy/core/common/
H A Dschema.h85 // Returns true if this Schema is valid. Schemas returned by the methods below
87 bool valid() const { return node_ != NULL; } function in class:policy::Schema
136 // Returns the Schema for the current property. This Schema is always valid.
153 // property name then the returned Schema is not valid.
160 // not allowed for this Schema then the Schema returned is not valid.
/external/chromium_org/content/browser/renderer_host/media/
H A Dmedia_stream_manager.h227 bool valid; member in struct:content::MediaStreamManager::EnumerationCache
/external/chromium_org/courgette/
H A Dmemory_allocator.cc56 DCHECK(!valid());
73 bool FileMapping::valid() const { function in class:courgette::FileMapping
120 bool TempMapping::valid() const { function in class:courgette::TempMapping
121 return mapping_.valid();
/external/chromium_org/media/cast/test/utility/
H A Dbarcode.cc112 bool valid = true; local
113 if (i[0] > unit_size * 2 || i[0] < unit_size / 2) valid = false;
114 if (i[1] > unit_size * 2 || i[1] < unit_size / 2) valid = false;
115 if (i[2] > unit_size * 2 || i[2] < unit_size / 2) valid = false;
116 if (i[3] > unit_size * 2 || i[3] < unit_size / 2) valid = false;
118 for (size_t bit = 0; valid && bit < output->size(); bit++) {
126 // Not a valid code
127 valid = false;
131 if (i[0] > unit_size * 2 || i[0] < unit_size / 2) valid = false;
132 if (i[1] > unit_size * 2 || i[1] < unit_size / 2) valid
[all...]
/external/chromium_org/net/base/
H A Dmime_util_unittest.cc21 bool valid; member in struct:net::__anon9020
38 EXPECT_EQ(tests[i].valid, rv);
48 bool valid; member in struct:net::__anon9021
64 EXPECT_EQ(tests[i].valid, rv);
322 // Experimental types are also considered to be valid.
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DSizesCalcParserTest.cpp21 const bool valid; member in struct:blink::TestCase
33 static void verifyCSSCalc(String text, double value, bool valid, unsigned fontSize, unsigned viewportWidth, unsigned viewportHeight) argument
42 ASSERT_EQ(valid, false);
122 ASSERT_EQ(testCases[i].valid, calcParser.isValid());
132 verifyCSSCalc(testCases[i].input, testCases[i].output, testCases[i].valid, data.defaultFontSize, data.viewportWidth, data.viewportHeight);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGInteger.cpp61 bool valid = true; local
62 m_value = stripLeadingAndTrailingHTMLSpaces(string).toIntStrict(&valid);
64 if (!valid) {
H A DSVGNumber.cpp77 bool valid = false; local
81 valid = parse(ptr, end);
85 valid = parse(ptr, end);
88 if (!valid) {
122 bool valid = parseNumberOrPercentage(string, m_value); local
124 if (!valid) {
/external/chromium_org/third_party/freetype/include/freetype/internal/
H A Dftvalid.h107 ft_validator_init( FT_Validator valid,
115 ft_validator_run( FT_Validator valid ); variable
122 ft_validator_error( FT_Validator valid,
126 /* Calls ft_validate_error. Assumes that the `valid' local variable */
133 ft_validator_error( valid, _prefix ## _error )
/external/chromium_org/third_party/libaddressinput/src/cpp/src/util/
H A Djson.cc53 bool valid() const { return valid_; } function in class:i18n::addressinput::Json::JsonImpl
113 if (!impl_->valid()) {
/external/chromium_org/third_party/libxml/src/
H A DtestReader.c41 static int valid = 0; variable
48 printf("\t --valid: validate the document\n");
77 if (valid)
122 else if ((!strcmp(argv[i], "-valid")) || (!strcmp(argv[i], "--valid")))
123 valid++;
H A DtestXPath.c45 static int valid = 0; variable
157 else if ((!strcmp(argv[i], "-valid")) || (!strcmp(argv[i], "--valid")))
158 valid++;
171 if (valid != 0) xmlDoValidityCheckingDefaultValue = 1;
202 printf("\t--valid : switch on DTD support in the parser\n");
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/
H A Dradeon_mipmap_tree.h47 GLuint valid; member in struct:_radeon_mipmap_level
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
H A Dradeon_mipmap_tree.h47 GLuint valid; member in struct:_radeon_mipmap_level
/external/chromium_org/third_party/skia/tests/
H A DClipperTest.cpp93 bool valid = SkLineClipper::IntersectLine(&gEmpty[i], gR, dst); local
94 if (valid) {
97 REPORTER_ASSERT(reporter, !valid);
117 bool valid = SkLineClipper::IntersectLine(&gFull[i], gR, dst); local
118 if (!valid || memcmp(&gFull[i], dst, sizeof(dst))) {
121 REPORTER_ASSERT(reporter, valid && !memcmp(&gFull[i], dst, sizeof(dst)));
136 bool valid = SkLineClipper::IntersectLine(&gPartial[i], gR, dst); local
137 if (!valid || memcmp(&gPartial[i+2], dst, sizeof(dst))) {
140 REPORTER_ASSERT(reporter, valid &&

Completed in 810 milliseconds

1234567891011>>