Searched defs:block (Results 51 - 75 of 805) sorted by path

1234567891011>>

/external/chromium_org/net/spdy/
H A Dspdy_websocket_test_util.cc47 SpdyHeaderBlock block; local
48 SetHeader("status", "101", &block);
49 return spdy_util_.ConstructSpdyReply(stream_id, block);
/external/chromium_org/net/third_party/nss/ssl/
H A Dsslcon.c916 ** block size of 1. Package up the data with the length header
977 SSL_TRC(50, ("%d: SSL[%d]: send stream would block, "
1016 ** Send some data, when using a block cipher. Package up the data with
1037 SSL_TRC(10, ("%d: SSL[%d]: sending %d bytes using block cipher",
1109 SSL_TRC(10, ("%d: SSL[%d]: send block error %d",
1650 /* Cheaply verify that PKCS#1 was used to format the encryption block */
1652 SSL_DBG(("%d: SSL[%d]: strange encryption block",
1943 * Format one block of data for public/private key encryption using
1954 unsigned char *block; local
1964 block
[all...]
/external/chromium_org/net/tools/balsa/
H A Dbalsa_headers.cc125 // the first block isn't big enough, resize it.
159 BufferBlock* block = NULL; local
163 block = &blocks_[block_idx];
167 if (block == NULL) {
173 block = &blocks_.back();
176 char* storage = block->start_of_unused_bytes();
177 block->bytes_free -= size;
233 BufferBlock block = b; local
235 return block;
238 block
[all...]
/external/chromium_org/net/tools/flip_server/
H A Dspdy_interface.cc451 SpdyHeaderBlock block; local
452 CopyHeaders(block, headers);
454 block["method"] = headers.request_method().as_string();
456 block["version"] = headers.request_version().as_string();
460 block["url"] = UrlUtilities::GetUrlPath(original_url);
462 block["url"] = headers.request_uri().as_string();
465 block[":method"] = headers.request_method().as_string();
466 block[":version"] = headers.request_version().as_string();
470 block[":path"] = UrlUtilities::GetUrlPath(original_url);
471 block["
493 SpdyHeaderBlock block; local
[all...]
H A Dspdy_interface_test.cc228 SpdyHeaderBlock block; local
229 block["method"] = "GET";
230 block["url"] = "/path";
231 block["scheme"] = "http";
232 block["version"] = "HTTP/1.0";
233 block["hoge"] = "fuga";
246 visitor->OnSynStream(stream_id, associated_id, 0, false, false, block);
262 SpdyHeaderBlock block; local
263 block[":method"] = "GET";
264 block["
294 SpdyHeaderBlock block; local
327 SpdyHeaderBlock block; local
[all...]
/external/chromium_org/net/tools/quic/
H A Dspdy_utils.cc34 SpdyHeaderBlock* block,
50 SpdyHeaderBlock::iterator it = block->find(name);
51 if (it != block->end()) {
56 block->insert(make_pair(name, hi->second.as_string()));
65 SpdyHeaderBlock* block) {
66 PopulateSpdyHeaderBlock(headers, block, true);
70 block->insert(make_pair(kV3Host, host_header.as_string()));
72 block->insert(make_pair(kV3Host, host_and_port));
74 block->insert(make_pair(kV3Path, path));
75 block
33 PopulateSpdyHeaderBlock(const BalsaHeaders& headers, SpdyHeaderBlock* block, bool allow_empty_values) argument
61 PopulateSpdy3RequestHeaderBlock(const BalsaHeaders& headers, const string& scheme, const string& host_and_port, const string& path, SpdyHeaderBlock* block) argument
86 PopulateSpdyResponseHeaderBlock(const BalsaHeaders& headers, SpdyHeaderBlock* block) argument
127 SpdyHeaderBlock block; local
138 SpdyHeaderBlock block = RequestHeadersToSpdyHeaders(request_headers); local
145 SpdyHeaderBlock block; local
153 SpdyHeaderBlock block = ResponseHeadersToSpdyHeaders(response_headers); local
[all...]
/external/chromium_org/net/url_request/
H A Durl_request_throttler_simulation_unittest.cc263 char block = ' '; local
266 block = '-';
270 block = '#';
272 output.append(1, block);
/external/chromium_org/sandbox/linux/seccomp-bpf/
H A Dcodegen.cc279 // insert them into a new basic block.
287 SANDBOX_DIE("Found a jump inside of a basic block");
299 // Add a new basic block to "basic_blocks". Also set "firstBlock", if it
305 "Only the very first basic block should have no "
320 // Textbook implementation of a basic block generator. All basic blocks
323 // new block). Both conditional and "always" jumps are supported.
337 // We reached a branch target. Start a new basic block (this means,
338 // flushing the previous basic block first).
344 // block. Flush it and continue by traversing both the true and the
366 // Starting a new basic block
518 ComputeIncomingBranches(BasicBlock* block, const TargetsToBlocks& targets_to_blocks, IncomingBranches* incoming_branches) argument
[all...]
/external/chromium_org/testing/gtest/samples/
H A Dsample10_unittest.cc61 void operator delete(void* block, size_t /* allocation_size */) { argument
63 free(block);
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DPrivateScriptRunner.cpp45 v8::TryCatch block; local
49 if (block.HasCaught()) {
51 dumpV8Message(block.Message());
56 if (block.HasCaught()) {
58 dumpV8Message(block.Message());
148 v8::TryCatch block; local
151 v8::TryCatch block; local
153 if (block.HasCaught()) {
155 dumpV8Message(block.Message());
191 void rethrowExceptionInPrivateScript(v8::Isolate* isolate, v8::TryCatch& block, ScriptStat argument
250 v8::TryCatch block; local
275 v8::TryCatch block; local
294 v8::TryCatch block; local
[all...]
H A DV8Binding.cpp207 v8::TryCatch block; local
209 if (block.HasCaught()) {
210 exceptionState.rethrowV8Exception(block.Exception());
255 v8::TryCatch block; local
257 if (block.HasCaught()) {
258 exceptionState.rethrowV8Exception(block.Exception());
333 v8::TryCatch block; local
335 if (block.HasCaught()) {
336 exceptionState.rethrowV8Exception(block.Exception());
386 v8::TryCatch block; local
478 v8::TryCatch block; local
[all...]
H A DV8Binding.h584 v8::TryCatch block; local
587 if (block.HasCaught()) {
588 exceptionState.rethrowV8Exception(block.Exception());
648 v8::TryCatch block; local
651 if (block.HasCaught()) {
652 exceptionState.rethrowV8Exception(block.Exception());
682 v8::TryCatch block; local
685 if (block.HasCaught()) {
686 exceptionState.rethrowV8Exception(block.Exception());
716 v8::TryCatch block; local
753 v8::TryCatch block; local
804 v8::TryCatch block; local
1003 V8RethrowTryCatchScope(v8::TryCatch& block) argument
[all...]
H A DWorkerScriptController.cpp210 v8::TryCatch block; local
216 if (!block.CanContinue()) {
221 if (block.HasCaught()) {
222 v8::Local<v8::Message> message = block.Message();
229 m_globalScopeExecutionState->exception = ScriptValue(m_scriptState.get(), block.Exception());
230 block.Reset();
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8InjectedScriptHostCustom.cpp266 v8::TryCatch block; local
268 if (block.HasCaught())
H A DV8WebGLRenderingContextCustom.cpp252 v8::TryCatch block; local
253 V8RethrowTryCatchScope rethrow(block);
318 v8::TryCatch block; local
319 V8RethrowTryCatchScope rethrow(block);
340 v8::TryCatch block; local
341 V8RethrowTryCatchScope rethrow(block);
361 v8::TryCatch block; local
362 V8RethrowTryCatchScope rethrow(block);
394 v8::TryCatch block; local
395 V8RethrowTryCatchScope rethrow(block);
427 v8::TryCatch block; local
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/templates/
H A Ddictionary_v8.cpp26 v8::TryCatch block; local
43 } else if (block.HasCaught()) {
44 exceptionState.rethrowV8Exception(block.Exception());
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/
H A DV8TestDictionary.cpp30 v8::TryCatch block; local
34 } else if (block.HasCaught()) {
35 exceptionState.rethrowV8Exception(block.Exception());
41 } else if (block.HasCaught()) {
42 exceptionState.rethrowV8Exception(block.Exception());
48 } else if (block.HasCaught()) {
49 exceptionState.rethrowV8Exception(block.Exception());
60 } else if (block.HasCaught()) {
61 exceptionState.rethrowV8Exception(block.Exception());
67 } else if (block
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DApplyStyleCommand.cpp214 // Apply the block-centric properties of the style.
226 // Force all properties to be applied as block styles.
274 RefPtrWillBeRawPtr<Element> block = enclosingBlock(paragraphStart.deepEquivalent().deprecatedNode()); local
279 block = newBlock;
281 if (block && block->isHTMLElement()) {
282 removeCSSStyle(style, toHTMLElement(block));
284 addBlockStyle(styleChange, toHTMLElement(block));
463 Element* block = enclosingBlock(node); local
464 if (!block)
512 Element* block = enclosingBlock(node); local
1388 addBlockStyle(const StyleChange& styleChange, HTMLElement* block) argument
[all...]
H A DEditingStyle.cpp1355 Node* block = enclosingBlock(node); local
1358 for (; node != block; node = node->parentNode()) {
H A Dmarkup.cpp236 // Make sure spans are inline style in paste side e.g. span { display: block }.
384 // Don't write out empty block containers that aren't fully selected.
536 // Retain the Mail quote level by including all ancestor mail block quotes.
641 // FIXME: The interchange newline should be placed in the block that it's in, not after all of the content, unconditionally.
870 Element* block = enclosingBlock(context->firstNode()); local
871 bool useClonesOfEnclosingBlock = block
872 && !isHTMLBodyElement(*block)
873 && !isHTMLHtmlElement(*block)
874 && block != editableRootForPosition(context->startPosition());
893 element = block
[all...]
/external/chromium_org/third_party/WebKit/Source/core/paint/
H A DBlockPainter.cpp122 // inline block/table/replaced elements in the CSS2.1 specification.)
195 // Don't paint focus ring for anonymous block continuation because the
206 // If the caret's node's render object's containing block is this block, and the paint action is PaintPhaseForeground,
218 static inline bool hasCursorCaret(const FrameSelection& selection, const RenderBlock* block, bool caretBrowsing) argument
220 return selection.caretRenderer() == block && (selection.hasEditableStyle() || caretBrowsing);
223 static inline bool hasDragCaret(const DragCaretController& dragCaretController, const RenderBlock* block, bool caretBrowsing) argument
225 return dragCaretController.caretRenderer() == block && (dragCaretController.isContentEditable() || caretBrowsing);
465 // Do not add continuations for outline painting by our containing block if we are a relative positioned
466 // anonymous block (
488 RenderBlock* block = flow->containingBlock(); local
[all...]
H A DBlockPainter.h21 BlockPainter(RenderBlock& block) : m_renderBlock(block) { } argument
28 // inline-block elements paint all phases atomically. This function ensures that. Certain other elements
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBlock.cpp111 OverflowEventDispatcher(const RenderBlock* block) argument
112 : m_block(block)
169 static void removeBlockFromDescendantAndContainerMaps(RenderBlock* block, TrackedDescendantsMap*& descendantMap, TrackedContainerMap*& containerMap) argument
171 if (OwnPtr<TrackedRendererListHashSet> descendantSet = descendantMap->take(block)) {
179 ASSERT(containerSet->contains(block));
180 containerSet->remove(block);
272 // If we are an anonymous block, then our line boxes might have children
273 // that will outlast this block. In the non-anonymous block case those
308 // inserted into our containing block'
680 RenderBlock* block = containingColumnsBlock(); local
733 RenderBlock* block = this; // Eventually block will not just be |this|, but will also be a block nested inside |this|. Assign to a variable local
1014 RenderBlock* block = createAnonymousBlock(); local
1331 RenderBlock* block = *it; local
2466 ColumnRectIterator(const RenderBlock& block) argument
3787 getHeightForLineCount(RenderBlock* block, int l, bool includeBottom, int& count) argument
4307 RenderBlock* block = toRenderBlock(box); local
[all...]
H A DRenderBlockFlow.cpp75 // This flag tracks whether we are still looking at child margins that can all collapse together at the beginning of a block.
76 // They may or may not collapse with the top margin of the block (|m_canCollapseTopWithChildren| tells us that), but they will
81 // This flag is set when we know we're examining bottom margins and we know we're at the bottom of the block.
411 // are collapsed with adjacent blocks, so for example, if you have block A and B
415 // our block knows its current maximal positive/negative values.
484 RenderBlockFlow* block = toRenderBlockFlow(child); local
485 if (block->lowestFloatLogicalBottom() + block->logicalTop() <= newHeight)
487 addOverhangingFloats(block, false);
605 // Cache if we are at the top of the block righ
[all...]
H A DRenderBlockFlow.h355 RenderBlockFlowRareData(const RenderBlockFlow* block) argument
356 : m_margins(positiveMarginBeforeDefault(block), negativeMarginBeforeDefault(block), positiveMarginAfterDefault(block), negativeMarginAfterDefault(block))
367 static LayoutUnit positiveMarginBeforeDefault(const RenderBlockFlow* block) argument
369 return std::max<LayoutUnit>(block->marginBefore(), 0);
371 static LayoutUnit negativeMarginBeforeDefault(const RenderBlockFlow* block) argument
373 return std::max<LayoutUnit>(-block->marginBefore(), 0);
375 static LayoutUnit positiveMarginAfterDefault(const RenderBlockFlow* block) argument
379 negativeMarginAfterDefault(const RenderBlockFlow* block) argument
[all...]

Completed in 566 milliseconds

1234567891011>>