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

1234567891011>>

/external/chromium_org/native_client_sdk/src/libraries/xray/
H A Dreport.c120 bool valid = XRayFrameIsValid(capture, frame); local
125 valid ? " " : "*",
H A Dxray.c63 bool valid; member in struct:XRayTraceFrameEntry
545 return capture->frame.entry[i].valid;
563 /* Scans the ring buffer going backwards to find last valid complete frame. */
564 /* Will mark whether frames are valid or invalid during the traversal. */
575 bool valid = capture->frame.entry[index].valid; local
576 if (valid) {
580 capture->frame.entry[index].valid = true;
582 capture->frame.entry[index].valid = false;
645 capture->frame.entry[i].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.
H A Dnet_util_unittest.cc469 std::string valid[] = { "", "1", "1,2", "1,2,3", "10,11,12,13" }; local
476 for (size_t i = 0; i < ARRAYSIZE_UNSAFE(valid); ++i) {
477 SetExplicitlyAllowedPorts(valid[i]);
617 // Test parsing a valid CIDR notation literal.
/external/chromium_org/net/cert/
H A Dcert_verify_proc_unittest.cc1514 // For the list of valid hostnames, see
1518 bool valid; // Whether or not |hostname| matches a subjectAltName. member in struct:net::CertVerifyProcNameData
1540 *os << "Hostname: " << data.hostname << "; valid=" << data.valid;
1565 if (data.valid) {
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/chromium_org/net/http/
H A Dhttp_byte_range_unittest.cc13 bool valid; member in struct:__anon9283
31 EXPECT_EQ(tests[i].valid, range.IsValid());
47 // Zero instance size is valid, this is the case that user has to handle.
H A Dhttp_util.h57 // true, |ranges| will contain a list of valid ranges. If return
78 // Returns true if |name| is a valid HTTP header name.
114 // Whether the string is a valid |token| as defined in RFC 2616 Sec 2.2.
322 bool valid() const { return valid_; } function in class:net::HttpUtil::NameValuePairsIterator
/external/chromium_org/net/proxy/
H A Dproxy_config_service_linux.cc1397 // probably have a gconf/gsettings problem, and so we don't have a valid
1451 // This counts how many of the above ProxyServers were defined and valid.
1600 cached_config_.set_id(1); // Mark it as valid.
1606 // that to be a valid config and will not check environment
1614 reference_config_.set_id(1); // Mark it as valid.
1644 cached_config_.set_id(1); // Mark it as valid.
1699 bool valid = GetConfigFromSettings(&new_config); local
1700 if (valid)
1701 new_config.set_id(1); // mark it as valid
/external/chromium_org/net/third_party/nss/ssl/
H A Dsslsnce.c98 /* 1 */ PRUint8 valid; member in struct:sidCacheEntryStr
224 /* Only the private copies of these pointers are valid */
455 to->valid = 1;
472 to->valid = 0;
688 ** Returns PR_TRUE if found a valid match. PR_FALSE otherwise.
707 if (!sce->valid)
718 sce->valid = 0;
785 psce->valid = 0;
812 psce->valid = 0;
952 SSL_TRC(8, ("%d: SSL: UncacheMT: valid
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DV8Binding.cpp76 void setArityTypeError(ExceptionState& exceptionState, const char* valid, unsigned provided) argument
78 exceptionState.throwTypeError(ExceptionMessages::invalidArity(valid, provided));
555 exceptionState.throwTypeError("Value is not a valid ByteString.");
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DBisonCSSParser-in.cpp948 // The color will only be changed when string contains a valid CSS color, so callers
1982 void BisonCSSParser::endRule(bool valid) argument
1988 m_observer->endRuleBody(m_tokenizer.safeUserStringTokenOffset(), !valid);
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/html/
H A DFormAssociatedElement.cpp247 bool FormAssociatedElement::valid() const function in class:blink::FormAssociatedElement
H A DValidityState.cpp79 bool ValidityState::valid() const function in class:blink::ValidityState
81 return m_control->valid();
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLFramebuffer.cpp58 virtual bool valid() const OVERRIDE;
113 bool WebGLRenderbufferAttachment::valid() const function in class:blink::__anon11091::WebGLRenderbufferAttachment
166 virtual bool valid() const OVERRIDE;
219 bool WebGLTextureAttachment::valid() const function in class:blink::__anon11091::WebGLTextureAttachment
341 ASSERT(attachedObject && attachedObject->valid());
502 if (!attachment->valid()) {
503 *reason = "attachment is not valid";
560 return attachment && attachment->valid();
H A DWebGLTexture.h88 : valid(false)
98 valid = true;
105 bool valid; member in class:blink::FINAL::LevelInfo
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderRegion.h56 void setIsValid(bool valid) { m_isValid = valid; } argument
/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) {
H A DSVGNumberList.cpp87 bool valid = false; local
91 valid = parse(ptr, end);
95 valid = parse(ptr, end);
98 if (!valid) {
100 // No call to |clear()| here. SVG policy is to use valid items before error.
H A DSVGPoint.cpp68 bool valid = parseNumber(ptr, end, x) && parseNumber(ptr, end, y, DisallowWhitespace); local
70 if (!valid) {
H A DSVGPointList.cpp78 bool valid = parseNumber(ptr, end, x) && parseNumber(ptr, end, y, DisallowWhitespace); local
79 if (!valid) {
106 bool valid = false; local
110 valid = parse(ptr, end);
114 valid = parse(ptr, end);
117 if (!valid)
H A DSVGRect.cpp67 bool valid = parseNumber(ptr, end, x) && parseNumber(ptr, end, y) && parseNumber(ptr, end, width) && parseNumber(ptr, end, height, DisallowWhitespace); local
69 if (!valid) {

Completed in 506 milliseconds

1234567891011>>