Searched refs:boundary (Results 51 - 75 of 146) sorted by relevance

123456

/external/chromium/webkit/glue/
H A Dmultipart_response_delegate.cc61 const std::string& boundary)
71 // Some servers report a boundary prefixed with "--". See bug 5786.
72 if (StartsWithASCII(boundary, "--", true)) {
73 boundary_.assign(boundary);
75 boundary_.append(boundary);
82 // stop_sending_ means that we've already received the final boundary token.
91 // Some servers don't send a boundary token before the first chunk of
101 // We don't have enough data yet to make a boundary token. Just wait
134 // boundary on the same lines as Firefox.
153 // This was the last boundary s
57 MultipartResponseDelegate( WebURLLoaderClient* client, WebURLLoader* loader, const WebURLResponse& response, const std::string& boundary) argument
[all...]
H A Dmultipart_response_delegate_unittest.cc40 std::string& boundary() { return delegate_->boundary_; } function in class:webkit_glue::MultipartResponseDelegateTester
185 const char* boundary; member in struct:__anon3397::__anon3400
197 delegate_tester.boundary().assign(boundary_tests[i].boundary);
213 // No start boundary
232 // No end boundary
254 // Neither boundary
278 // Some servers send a boundary that is prefixed by "--". See bug 5786.
361 // Break in the first boundary
491 // Test multipart/byteranges based boundary parsin
[all...]
H A Dweburlloader_impl.cc578 std::string boundary = net::GetHeaderParamValue( local
579 content_type, "boundary", net::QuoteRule::REMOVE_OUTER_QUOTES);
580 TrimString(boundary, " \"", &boundary);
582 // If there's no boundary, just handle the request normally. In the gecko
584 if (!boundary.empty()) {
586 new MultipartResponseDelegate(client_, loader_, response, boundary));
/external/chromium_org/webkit/child/
H A Dmultipart_response_delegate.cc61 const std::string& boundary)
71 // Some servers report a boundary prefixed with "--". See bug 5786.
72 if (StartsWithASCII(boundary, "--", true)) {
73 boundary_.assign(boundary);
75 boundary_.append(boundary);
82 // stop_sending_ means that we've already received the final boundary token.
91 // Some servers don't send a boundary token before the first chunk of
101 // We don't have enough data yet to make a boundary token. Just wait
134 // boundary on the same lines as Firefox.
153 // This was the last boundary s
57 MultipartResponseDelegate( WebURLLoaderClient* client, WebURLLoader* loader, const WebURLResponse& response, const std::string& boundary) argument
[all...]
H A Dmultipart_response_delegate_unittest.cc40 std::string& boundary() { return delegate_->boundary_; } function in class:webkit_glue::MultipartResponseDelegateTester
185 const char* boundary; member in struct:__anon15729::__anon15732
197 delegate_tester.boundary().assign(boundary_tests[i].boundary);
213 // No start boundary
232 // No end boundary
254 // Neither boundary
278 // Some servers send a boundary that is prefixed by "--". See bug 5786.
361 // Break in the first boundary
491 // Test multipart/byteranges based boundary parsin
[all...]
H A Dweburlloader_impl.cc547 std::string boundary; local
549 &had_charset, &boundary);
550 base::TrimString(boundary, " \"", &boundary);
552 // If there's no boundary, just handle the request normally. In the gecko
554 if (!boundary.empty()) {
556 new MultipartResponseDelegate(client_, loader_, response, boundary));
/external/harfbuzz/src/
H A Dharfbuzz-khmer.c653 hb_uint32 boundary = khmer_nextSyllableBoundary( text, from+i, end, &invalid ) - from; local
657 if ( boundary > len-1 ) boundary = len;
659 while ( i < boundary ) {
664 assert( i == boundary );
H A Dharfbuzz-myanmar.c521 hb_uint32 boundary = myanmar_nextSyllableBoundary(text, from+i, end, &invalid) - from; local
527 if (boundary > len-1)
528 boundary = len;
530 while (i < boundary) {
535 assert(i == boundary);
/external/qemu/hw/
H A Dne2000.c128 uint8_t boundary; member in struct:NE2000State
203 int avail, index, boundary; local
206 boundary = s->boundary << 8;
207 if (index < boundary)
208 avail = boundary - index;
210 avail = (s->stop - s->start) - (index - boundary);
371 s->boundary = val;
437 ret = s->boundary;
664 qemu_put_8s(f, &s->boundary);
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DPosition.cpp404 // A position is considered at editing boundary if one of the following is true:
434 Node* boundary = m_anchorNode.get();
435 while (boundary != documentElement && boundary->nonShadowBoundaryParentNode() && m_anchorNode->rendererIsEditable() == boundary->parentNode()->rendererIsEditable())
436 boundary = boundary->nonShadowBoundaryParentNode();
438 return boundary;
581 // Also, upstream() will return [boundary, 0] for any of the positions from [boundary,
[all...]
/external/chromium_org/chrome/browser/extensions/api/web_request/
H A Dform_data_parser.cc127 // boundary := 0*69<bchars> bcharsnospace
131 // dash-boundary := "--" boundary
133 // dash-boundary transport-padding CRLF
139 // delimiter := CRLF dash-boundary
168 // 1. The optional preamble and the initial dash-boundary with transport padding
310 std::string boundary; local
323 static const char kBoundaryString[] = "boundary=";
330 boundary = content_type_header->substr(
332 if (!boundary
[all...]
/external/bison/src/
H A Dlocation.c58 location_compute (location *loc, boundary *cur, char const *token, size_t size)
217 boundary_set_from_string (boundary *bound, char *loc_str)
H A Dscan-gram.c994 static boundary scanner_cursor;
1013 static boundary bracketed_id_start;
1025 static void unexpected_eof (boundary, char const *);
1026 static void unexpected_newline (boundary, char const *);
1322 boundary code_start = scanner_cursor;
1326 boundary token_start PACIFY_CC (= scanner_cursor);
3680 unexpected_end (boundary start, char const *msgid, char const *token_end)
3699 unexpected_eof (boundary start, char const *token_end)
3710 unexpected_newline (boundary start, char const *token_end)
/external/chromium_org/chrome/browser/ui/find_bar/
H A Dfind_bar_controller.cc184 int boundary = dialog_bounds.width() - view_location.width(); local
185 view_location.set_x(std::min(view_location.x(), boundary));
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dmultipart.cc38 const std::string& boundary)
40 boundary_(boundary),
55 content_type->append("; boundary=");
37 MultipartStream(const std::string& type, const std::string& boundary) argument
/external/llvm/lib/Target/X86/
H A DX86CompilationCallback_Win64.asm30 ; Align stack on 16-byte boundary.
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DVisibleUnits.cpp329 bool boundary = hardLineBreak ? true : iter->isBoundary(position); local
330 if (!boundary)
340 bool boundary = iter->isBoundary(position); local
341 return (hardLineBreak || boundary) && isWordTextBreak(iter);
451 Node* boundary = pos.parentEditingBoundary(); local
452 if (!boundary)
455 Document& d = boundary->document();
456 Position start = createLegacyEditingPosition(boundary, 0).parentAnchoredEquivalent();
466 forwardsScanRange->setEndAfter(boundary, exceptionState);
532 Node* boundary local
[all...]
H A DVisibleSelection.cpp215 Node* boundary = n->enclosingBlockFlowElement();
216 if (!boundary)
223 searchRange->selectNodeContents(boundary, exceptionState);
586 // The selection crosses an Editing boundary. This is a
615 // The selection crosses an Editing boundary. This is a
/external/chromium_org/third_party/openssl/openssl/crypto/sha/asm/
H A Dsha1-ppc.pl201 ; upon unaligned access which crosses page boundary. "Better safe
204 ; block which crosses the boundary. Once found that block is aligned
209 andi. $t1,$t1,4095 ; distance to closest page boundary
213 ble- Laligned ; didn't cross the page boundary
/external/icu4c/i18n/
H A Dchoicfmt.cpp448 double boundary = pattern.getNumericValue(part); local
452 if (boundaryChar == LESS_THAN ? !(number > boundary) : !(number >= boundary)) {
453 // The number is in the interval between the previous boundary and the current one.
/external/openssl/crypto/sha/asm/
H A Dsha1-ppc.pl201 ; upon unaligned access which crosses page boundary. "Better safe
204 ; block which crosses the boundary. Once found that block is aligned
209 andi. $t1,$t1,4095 ; distance to closest page boundary
213 ble- Laligned ; didn't cross the page boundary
/external/chromium_org/third_party/WebKit/Source/platform/mhtml/
H A DMHTMLParser.cpp138 mimeHeader->m_endOfPartBoundary = parsedContentType.parameterValueForName("boundary");
140 WTF_LOG_ERROR("No boundary found in multipart MIME header.");
182 static bool skipLinesUntilBoundaryFound(SharedBufferChunkReader& lineReader, const String& boundary) argument
186 if (line == boundary)
/external/chromium_org/net/http/
H A Dhttp_util_unittest.cc690 { "text/html; boundary=\"WebKit-ada-df-dsf-adsfadsfs\"",
696 { "text/html; boundary =\"WebKit-ada-df-dsf-adsfadsfs\"",
702 { "text/html; boundary= \"WebKit-ada-df-dsf-adsfadsfs\"",
708 { "text/html; boundary= \"WebKit-ada-df-dsf-adsfadsfs\" ",
714 { "text/html; boundary=\"WebKit-ada-df-dsf-adsfadsfs \"",
720 { "text/html; boundary=WebKit-ada-df-dsf-adsfadsfs",
732 std::string boundary; local
734 &charset, &had_charset, &boundary);
738 EXPECT_EQ(tests[i].expected_boundary, boundary) << "i=" << i;
/external/tremolo/Tremolo/
H A Dvorbisfile.c117 /* from the head of the stream, get the next page. boundary specifies
121 boundary: -1) unbounded search
131 ogg_int64_t boundary){
132 if(boundary>0)boundary+=vf->offset;
136 if(boundary>0 && vf->offset>=boundary)return OV_FALSE;
145 if(!boundary)return OV_FALSE;
543 bitstream boundary and dumps the decoding machine. If the decoding
646 /* has our decoding just traversed a bitstream boundary
130 _get_next_page(OggVorbis_File *vf,ogg_page *og, ogg_int64_t boundary) argument
[all...]
/external/libffi/src/x86/
H A Dwin32.S60 # FIXME: Align the stack to a 128-bit boundary to avoid
173 # FIXME: Align the stack to a 128-bit boundary to avoid

Completed in 954 milliseconds

123456