Searched refs:frame (Results 51 - 75 of 5378) sorted by relevance

1234567891011>>

/external/chromium_org/media/cast/net/rtp/
H A Dframer_unittest.cc37 EncodedFrame frame; local
40 EXPECT_FALSE(framer_.GetEncodedFrame(&frame, &next_frame, &multiple));
44 EncodedFrame frame; local
50 // Insert non key first frame.
54 EXPECT_FALSE(framer_.GetEncodedFrame(&frame, &next_frame, &multiple));
61 EXPECT_TRUE(framer_.GetEncodedFrame(&frame, &next_frame, &multiple));
64 EXPECT_EQ(EncodedFrame::KEY, frame.dependency);
65 EXPECT_EQ(1u, frame.frame_id);
66 EXPECT_EQ(1u, frame.referenced_frame_id);
67 framer_.ReleaseFrame(frame
71 EncodedFrame frame; local
111 EncodedFrame frame; local
207 EncodedFrame frame; local
238 EncodedFrame frame; local
272 EncodedFrame frame; local
288 EncodedFrame frame; local
312 EncodedFrame frame; local
339 EncodedFrame frame; local
405 EncodedFrame frame; local
454 EncodedFrame frame; local
[all...]
/external/chromium_org/content/shell/renderer/test_runner/
H A Dweb_frame_test_proxy.h31 virtual blink::WebPlugin* createPlugin(blink::WebLocalFrame* frame, argument
33 blink::WebPlugin* plugin = base_proxy_->CreatePlugin(frame, params);
36 return Base::createPlugin(frame, params);
61 virtual void loadURLExternally(blink::WebLocalFrame* frame, argument
65 base_proxy_->LoadURLExternally(frame, request, policy, suggested_name);
66 Base::loadURLExternally(frame, request, policy, suggested_name);
69 virtual void didStartProvisionalLoad(blink::WebLocalFrame* frame, argument
71 base_proxy_->DidStartProvisionalLoad(frame);
72 Base::didStartProvisionalLoad(frame, isTransitionNavigation);
76 blink::WebLocalFrame* frame) {
75 didReceiveServerRedirectForProvisionalLoad( blink::WebLocalFrame* frame) argument
81 didFailProvisionalLoad(blink::WebLocalFrame* frame, const blink::WebURLError& error) argument
90 didCommitProvisionalLoad( blink::WebLocalFrame* frame, const blink::WebHistoryItem& item, blink::WebHistoryCommitType commit_type) argument
98 didReceiveTitle(blink::WebLocalFrame* frame, const blink::WebString& title, blink::WebTextDirection direction) argument
105 didChangeIcon(blink::WebLocalFrame* frame, blink::WebIconURL::Type icon_type) argument
111 didFinishDocumentLoad(blink::WebLocalFrame* frame) argument
116 didHandleOnloadEvents(blink::WebLocalFrame* frame) argument
121 didFailLoad(blink::WebLocalFrame* frame, const blink::WebURLError& error) argument
127 didFinishLoad(blink::WebLocalFrame* frame) argument
183 didDetectXSS(blink::WebLocalFrame* frame, const blink::WebURL& insecure_url, bool did_block_entire_page) argument
192 didDispatchPingLoader(blink::WebLocalFrame* frame, const blink::WebURL& url) argument
200 willRequestResource(blink::WebLocalFrame* frame, const blink::WebCachedURLRequest& request) argument
208 didCreateDataSource(blink::WebLocalFrame* frame, blink::WebDataSource* ds) argument
213 willSendRequest(blink::WebLocalFrame* frame, unsigned identifier, blink::WebURLRequest& request, const blink::WebURLResponse& redirect_response) argument
221 didReceiveResponse(blink::WebLocalFrame* frame, unsigned identifier, const blink::WebURLResponse& response) argument
228 didChangeResourcePriority( blink::WebLocalFrame* frame, unsigned identifier, const blink::WebURLRequest::Priority& priority, int intra_priority_value) argument
241 didFinishResourceLoad(blink::WebLocalFrame* frame, unsigned identifier) argument
257 willStartUsingPeerConnectionHandler( blink::WebLocalFrame* frame, blink::WebRTCPeerConnectionHandler* handler) argument
[all...]
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/
H A DHttp20Draft09Test.java37 OkBuffer frame = new OkBuffer();
39 frame.writeShort(4); // has a 4-byte field
40 frame.writeByte(99); // type 99
41 frame.writeByte(0); // no flags
42 frame.writeInt(expectedStreamId);
43 frame.writeInt(111111111); // custom data
45 FrameReader fr = new Http20Draft09.Reader(frame, 4096, false);
47 // Consume the unknown frame.
54 OkBuffer frame = new OkBuffer();
56 // Write the headers frame, specifyin
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DEditorCommand.cpp52 #include "core/frame/FrameHost.h"
53 #include "core/frame/FrameView.h"
54 #include "core/frame/LocalFrame.h"
55 #include "core/frame/Settings.h"
95 static LocalFrame* targetFrame(LocalFrame& frame, Event* event) argument
98 return &frame;
101 return &frame;
102 return node->document().frame();
105 static bool applyCommandToFrame(LocalFrame& frame, EditorCommandSource source, EditAction action, StylePropertySet* style) argument
110 frame
121 executeApplyStyle(LocalFrame& frame, EditorCommandSource source, EditAction action, CSSPropertyID propertyID, const String& propertyValue) argument
128 executeApplyStyle(LocalFrame& frame, EditorCommandSource source, EditAction action, CSSPropertyID propertyID, CSSValueID propertyValue) argument
138 executeToggleStyleInList(LocalFrame& frame, EditorCommandSource source, EditAction action, CSSPropertyID propertyID, CSSValue* value) argument
162 executeToggleStyle(LocalFrame& frame, EditorCommandSource source, EditAction action, CSSPropertyID propertyID, const char* offValue, const char* onValue) argument
178 executeApplyParagraphStyle(LocalFrame& frame, EditorCommandSource source, EditAction action, CSSPropertyID propertyID, const String& propertyValue) argument
196 executeInsertFragment(LocalFrame& frame, PassRefPtrWillBeRawPtr<DocumentFragment> fragment) argument
203 executeInsertElement(LocalFrame& frame, PassRefPtrWillBeRawPtr<HTMLElement> content) argument
214 expandSelectionToGranularity(LocalFrame& frame, TextGranularity granularity) argument
243 stateStyle(LocalFrame& frame, CSSPropertyID propertyID, const char* desiredValue) argument
250 valueStyle(LocalFrame& frame, CSSPropertyID propertyID) argument
257 stateTextWritingDirection(LocalFrame& frame, WritingDirection direction) argument
266 verticalScrollDistance(LocalFrame& frame) argument
294 executeBackColor(LocalFrame& frame, Event*, EditorCommandSource source, const String& value) argument
299 executeCopy(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
305 executeCreateLink(LocalFrame& frame, Event*, EditorCommandSource, const String& value) argument
315 executeCut(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
321 executeDefaultParagraphSeparator(LocalFrame& frame, Event*, EditorCommandSource, const String& value) argument
331 executeDelete(LocalFrame& frame, Event*, EditorCommandSource source, const String&) argument
351 executeDeleteBackward(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
357 executeDeleteBackwardByDecomposingPreviousCharacter(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
364 executeDeleteForward(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
370 executeDeleteToBeginningOfLine(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
376 executeDeleteToBeginningOfParagraph(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
382 executeDeleteToEndOfLine(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
390 executeDeleteToEndOfParagraph(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
398 executeDeleteToMark(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
412 executeDeleteWordBackward(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
418 executeDeleteWordForward(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
424 executeFindString(LocalFrame& frame, Event*, EditorCommandSource, const String& value) argument
429 executeFontName(LocalFrame& frame, Event*, EditorCommandSource source, const String& value) argument
434 executeFontSize(LocalFrame& frame, Event*, EditorCommandSource source, const String& value) argument
442 executeFontSizeDelta(LocalFrame& frame, Event*, EditorCommandSource source, const String& value) argument
447 executeForeColor(LocalFrame& frame, Event*, EditorCommandSource source, const String& value) argument
452 executeFormatBlock(LocalFrame& frame, Event*, EditorCommandSource, const String& value) argument
469 executeForwardDelete(LocalFrame& frame, Event*, EditorCommandSource source, const String&) argument
488 executeIgnoreSpelling(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
494 executeIndent(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
501 executeInsertBacktab(LocalFrame& frame, Event* event, EditorCommandSource, const String&) argument
506 executeInsertHorizontalRule(LocalFrame& frame, Event*, EditorCommandSource, const String& value) argument
515 executeInsertHTML(LocalFrame& frame, Event*, EditorCommandSource, const String& value) argument
521 executeInsertImage(LocalFrame& frame, Event*, EditorCommandSource, const String& value) argument
530 executeInsertLineBreak(LocalFrame& frame, Event* event, EditorCommandSource source, const String&) argument
548 executeInsertNewline(LocalFrame& frame, Event* event, EditorCommandSource, const String&) argument
554 executeInsertNewlineInQuotedContent(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
561 executeInsertOrderedList(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
568 executeInsertParagraph(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
575 executeInsertTab(LocalFrame& frame, Event* event, EditorCommandSource, const String&) argument
580 executeInsertText(LocalFrame& frame, Event*, EditorCommandSource, const String& value) argument
587 executeInsertUnorderedList(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
594 executeJustifyCenter(LocalFrame& frame, Event*, EditorCommandSource source, const String&) argument
599 executeJustifyFull(LocalFrame& frame, Event*, EditorCommandSource source, const String&) argument
604 executeJustifyLeft(LocalFrame& frame, Event*, EditorCommandSource source, const String&) argument
609 executeJustifyRight(LocalFrame& frame, Event*, EditorCommandSource source, const String&) argument
614 executeMakeTextWritingDirectionLeftToRight(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
623 executeMakeTextWritingDirectionNatural(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
631 executeMakeTextWritingDirectionRightToLeft(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
640 executeMoveBackward(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
646 executeMoveBackwardAndModifySelection(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
652 executeMoveDown(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
657 executeMoveDownAndModifySelection(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
663 executeMoveForward(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
669 executeMoveForwardAndModifySelection(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
675 executeMoveLeft(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
680 executeMoveLeftAndModifySelection(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
686 executeMovePageDown(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
695 executeMovePageDownAndModifySelection(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
704 executeMovePageUp(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
713 executeMovePageUpAndModifySelection(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
722 executeMoveRight(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
727 executeMoveRightAndModifySelection(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
733 executeMoveToBeginningOfDocument(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
739 executeMoveToBeginningOfDocumentAndModifySelection(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
745 executeMoveToBeginningOfLine(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
751 executeMoveToBeginningOfLineAndModifySelection(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
757 executeMoveToBeginningOfParagraph(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
763 executeMoveToBeginningOfParagraphAndModifySelection(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
769 executeMoveToBeginningOfSentence(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
775 executeMoveToBeginningOfSentenceAndModifySelection(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
781 executeMoveToEndOfDocument(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
787 executeMoveToEndOfDocumentAndModifySelection(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
793 executeMoveToEndOfSentence(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
799 executeMoveToEndOfSentenceAndModifySelection(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
805 executeMoveToEndOfLine(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
811 executeMoveToEndOfLineAndModifySelection(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
817 executeMoveToEndOfParagraph(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
823 executeMoveToEndOfParagraphAndModifySelection(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
829 executeMoveParagraphBackward(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
835 executeMoveParagraphBackwardAndModifySelection(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
841 executeMoveParagraphForward(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
847 executeMoveParagraphForwardAndModifySelection(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
853 executeMoveUp(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
858 executeMoveUpAndModifySelection(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
864 executeMoveWordBackward(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
870 executeMoveWordBackwardAndModifySelection(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
876 executeMoveWordForward(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
882 executeMoveWordForwardAndModifySelection(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
888 executeMoveWordLeft(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
894 executeMoveWordLeftAndModifySelection(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
900 executeMoveWordRight(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
906 executeMoveWordRightAndModifySelection(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
912 executeMoveToLeftEndOfLine(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
918 executeMoveToLeftEndOfLineAndModifySelection(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
924 executeMoveToRightEndOfLine(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
930 executeMoveToRightEndOfLineAndModifySelection(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
936 executeOutdent(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
943 executeToggleOverwrite(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
949 executePaste(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
955 executePasteGlobalSelection(LocalFrame& frame, Event*, EditorCommandSource source, const String&) argument
968 executePasteAndMatchStyle(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
974 executePrint(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
983 executeRedo(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
989 executeRemoveFormat(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
995 executeScrollPageBackward(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
1000 executeScrollPageForward(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
1005 executeScrollLineUp(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
1010 executeScrollLineDown(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
1015 executeScrollToBeginningOfDocument(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
1020 executeScrollToEndOfDocument(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
1025 executeSelectAll(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
1031 executeSelectLine(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
1036 executeSelectParagraph(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
1041 executeSelectSentence(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
1046 executeSelectToMark(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
1056 executeSelectWord(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
1061 executeSetMark(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
1067 executeStrikethrough(LocalFrame& frame, Event*, EditorCommandSource source, const String&) argument
1073 executeStyleWithCSS(LocalFrame& frame, Event*, EditorCommandSource, const String& value) argument
1079 executeUseCSS(LocalFrame& frame, Event*, EditorCommandSource, const String& value) argument
1085 executeSubscript(LocalFrame& frame, Event*, EditorCommandSource source, const String&) argument
1090 executeSuperscript(LocalFrame& frame, Event*, EditorCommandSource source, const String&) argument
1095 executeSwapWithMark(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
1106 executeToggleBold(LocalFrame& frame, Event*, EditorCommandSource source, const String&) argument
1111 executeToggleItalic(LocalFrame& frame, Event*, EditorCommandSource source, const String&) argument
1116 executeTranspose(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
1122 executeUnderline(LocalFrame& frame, Event*, EditorCommandSource source, const String&) argument
1128 executeUndo(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
1134 executeUnlink(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
1141 executeUnscript(LocalFrame& frame, Event*, EditorCommandSource source, const String&) argument
1146 executeUnselect(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
1152 executeYank(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
1159 executeYankAndSelect(LocalFrame& frame, Event*, EditorCommandSource, const String&) argument
1178 supportedCopyCut(LocalFrame* frame) argument
1188 supportedPaste(LocalFrame* frame) argument
1205 enabledVisibleSelection(LocalFrame& frame, Event* event, EditorCommandSource) argument
1212 caretBrowsingEnabled(LocalFrame& frame) argument
1219 enabledVisibleSelectionOrCaretBrowsing(LocalFrame& frame, Event* event, EditorCommandSource) argument
1225 enabledVisibleSelectionAndMark(LocalFrame& frame, Event* event, EditorCommandSource) argument
1232 enableCaretInEditableText(LocalFrame& frame, Event* event, EditorCommandSource) argument
1238 enabledCopy(LocalFrame& frame, Event*, EditorCommandSource) argument
1243 enabledCut(LocalFrame& frame, Event*, EditorCommandSource) argument
1248 enabledInEditableText(LocalFrame& frame, Event* event, EditorCommandSource) argument
1253 enabledDelete(LocalFrame& frame, Event* event, EditorCommandSource source) argument
1268 enabledInEditableTextOrCaretBrowsing(LocalFrame& frame, Event* event, EditorCommandSource) argument
1274 enabledInRichlyEditableText(LocalFrame& frame, Event*, EditorCommandSource) argument
1279 enabledPaste(LocalFrame& frame, Event*, EditorCommandSource) argument
1284 enabledRangeInEditableText(LocalFrame& frame, Event*, EditorCommandSource) argument
1289 enabledRangeInRichlyEditableText(LocalFrame& frame, Event*, EditorCommandSource) argument
1294 enabledRedo(LocalFrame& frame, Event*, EditorCommandSource) argument
1299 enabledUndo(LocalFrame& frame, Event*, EditorCommandSource) argument
1311 stateBold(LocalFrame& frame, Event*) argument
1316 stateItalic(LocalFrame& frame, Event*) argument
1321 stateOrderedList(LocalFrame& frame, Event*) argument
1326 stateStrikethrough(LocalFrame& frame, Event*) argument
1331 stateStyleWithCSS(LocalFrame& frame, Event*) argument
1336 stateSubscript(LocalFrame& frame, Event*) argument
1341 stateSuperscript(LocalFrame& frame, Event*) argument
1346 stateTextWritingDirectionLeftToRight(LocalFrame& frame, Event*) argument
1351 stateTextWritingDirectionNatural(LocalFrame& frame, Event*) argument
1356 stateTextWritingDirectionRightToLeft(LocalFrame& frame, Event*) argument
1361 stateUnderline(LocalFrame& frame, Event*) argument
1366 stateUnorderedList(LocalFrame& frame, Event*) argument
1371 stateJustifyCenter(LocalFrame& frame, Event*) argument
1376 stateJustifyFull(LocalFrame& frame, Event*) argument
1381 stateJustifyLeft(LocalFrame& frame, Event*) argument
1386 stateJustifyRight(LocalFrame& frame, Event*) argument
1398 valueBackColor(LocalFrame& frame, Event*) argument
1403 valueDefaultParagraphSeparator(LocalFrame& frame, Event*) argument
1416 valueFontName(LocalFrame& frame, Event*) argument
1421 valueFontSize(LocalFrame& frame, Event*) argument
1426 valueFontSizeDelta(LocalFrame& frame, Event*) argument
1431 valueForeColor(LocalFrame& frame, Event*) argument
1436 valueFormatBlock(LocalFrame& frame, Event*) argument
1726 Command(const EditorInternalCommand* command, EditorCommandSource source, PassRefPtrWillBeRawPtr<LocalFrame> frame) argument
[all...]
/external/chromium_org/media/cast/test/utility/
H A Dgenerate_barcode_video.cc12 void DumpPlane(scoped_refptr<media::VideoFrame> frame, argument
14 for (int row = 0; row < frame->rows(plane); row++) {
15 CHECK_EQ(static_cast<size_t>(frame->row_bytes(plane)),
16 fwrite(frame->data(plane) + frame->stride(plane) * row,
18 frame->row_bytes(plane),
33 scoped_refptr<media::VideoFrame> frame = local
37 CHECK(media::cast::test::EncodeBarcode(frame_id, frame));
39 DumpPlane(frame, media::VideoFrame::kYPlane);
40 DumpPlane(frame, medi
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace.cc45 uhwptr *frame = (uhwptr *)bp; local
46 uhwptr *prev_frame = frame - 1;
48 // Avoid infinite loop when frame == frame[0] by using frame > prev_frame.
49 while (frame > prev_frame &&
50 frame < (uhwptr *)stack_top - 2 &&
51 frame > (uhwptr *)stack_bottom &&
52 IsAligned((uptr)frame, sizeof(*frame))
[all...]
/external/chromium_org/content/browser/compositor/
H A Dgpu_browser_compositor_output_surface.cc30 cc::CompositorFrame* frame) {
31 DCHECK(frame->gl_frame_data);
38 command_buffer_proxy->SetLatencyInfo(frame->metadata.latency_info);
41 if (frame->gl_frame_data->sub_buffer_rect ==
42 gfx::Rect(frame->gl_frame_data->size))
45 reflector_->OnPostSubBuffer(frame->gl_frame_data->sub_buffer_rect);
48 OutputSurface::SwapBuffers(frame);
29 SwapBuffers( cc::CompositorFrame* frame) argument
/external/chromium_org/net/quic/
H A Dquic_connection_logger_unittest.cc29 QuicAckFrame frame; local
30 logger_.OnFrameAddedToPacket(QuicFrame(&frame));
34 frame.missing_packets.insert(i);
36 logger_.OnFrameAddedToPacket(QuicFrame(&frame));
41 QuicAckFrame frame; local
43 frame.missing_packets.insert(i);
45 logger_.OnFrameAddedToPacket(QuicFrame(&frame));
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DPage.cpp31 #include "core/frame/DOMTimer.h"
32 #include "core/frame/FrameConsole.h"
33 #include "core/frame/FrameHost.h"
34 #include "core/frame/FrameView.h"
35 #include "core/frame/LocalDOMWindow.h"
36 #include "core/frame/LocalFrame.h"
37 #include "core/frame/RemoteFrame.h"
38 #include "core/frame/RemoteFrameView.h"
39 #include "core/frame/Settings.h"
91 for (Frame* frame
104 deviceScaleFactor(LocalFrame* frame) argument
187 nonFastScrollableRects(const LocalFrame* frame) argument
569 didCommitLoad(LocalFrame* frame) argument
[all...]
/external/chromium_org/ui/file_manager/file_manager/foreground/js/metadata/
H A Did3_parser.js95 * Reads text frame from reader.
99 * @param {Object} frame Frame so store data at.
105 frame,
107 frame.encoding = reader.readScalar(1, false, end);
108 frame.value = this.readString_(reader, frame.encoding, end - reader.tell());
112 * Reads user defined text frame from reader.
116 * @param {Object} frame Frame so store data at.
122 frame,
124 frame
[all...]
/external/valgrind/main/coregrind/m_sigframe/
H A Dsigframe-x86-darwin.c52 Produce a frame with layout entirely of our own choosing. */
58 in the frame and snarf it again later.
95 /* For tracking memory events, indicate the entire frame has been
97 overlaps the previous frame's redzone. */
107 /* Create a signal frame for thread 'tid'. Make a 3-arg frame
123 struct hacky_sigframe* frame; local
139 frame = (struct hacky_sigframe *) esp;
142 VG_(memset)(&frame->lower_guardzone, 0, 512);
143 VG_(memset)(&frame
200 struct hacky_sigframe* frame; local
[all...]
H A Dsigframe-amd64-darwin.c52 Produce a frame with layout entirely of our own choosing. */
58 in the frame and snarf it again later.
98 /* Create a signal frame for thread 'tid'. Make a 3-arg frame
114 struct hacky_sigframe* frame; local
130 frame = (struct hacky_sigframe *) rsp;
133 VG_(memset)(&frame->lower_guardzone, 0, 512);
134 VG_(memset)(&frame->gst, 0, sizeof(VexGuestAMD64State));
135 VG_(memset)(&frame->gshadow1, 0, sizeof(VexGuestAMD64State));
136 VG_(memset)(&frame
194 struct hacky_sigframe* frame; local
[all...]
/external/chromium_org/media/base/
H A Dvideo_frame_pool_unittest.cc20 scoped_refptr<VideoFrame> frame = local
24 EXPECT_EQ(format, frame->format());
26 frame->timestamp());
27 EXPECT_EQ(coded_size, frame->coded_size());
28 EXPECT_EQ(visible_rect, frame->visible_rect());
29 EXPECT_EQ(natural_size, frame->natural_size());
31 return frame;
43 scoped_refptr<VideoFrame> frame = CreateFrame(VideoFrame::YV12, 10); local
44 const uint8* old_y_data = frame->data(VideoFrame::kYPlane);
46 // Clear frame referenc
72 scoped_refptr<VideoFrame> frame = CreateFrame(VideoFrame::YV12, 10); local
[all...]
H A Dvideo_util.h27 VideoFrame* frame);
29 VideoFrame* frame);
31 VideoFrame* frame);
33 VideoFrame* frame);
36 MEDIA_EXPORT void MakeOpaqueAPlane(int stride, int rows, VideoFrame* frame);
41 int rows, VideoFrame* frame);
44 // Fills |frame| containing YUV data to the given color values.
45 MEDIA_EXPORT void FillYUV(VideoFrame* frame, uint8 y, uint8 u, uint8 v);
47 // Fills |frame| containing YUVA data with the given color values.
48 MEDIA_EXPORT void FillYUVA(VideoFrame* frame,
[all...]
/external/srec/srec/ca/
H A Dutt_data.c48 if ((gap = getBlockGap(hUtt->data.gen_utt.frame)) > 0)
49 (void) setRECframePtr(hUtt->data.gen_utt.frame, gap, 1);
50 if (hUtt->data.gen_utt.frame->holdOffPeriod > 0)
51 setRECframePtr(hUtt->data.gen_utt.frame, -MIN(hUtt->data.gen_utt.frame->holdOffPeriod, getFrameGap(hUtt->data.gen_utt.frame)), 1);
52 while (!(rec_frame_voicing_status(hUtt->data.gen_utt.frame) & VOICE_BIT))
54 incRECframePtr(hUtt->data.gen_utt.frame);
55 if (getFrameGap(hUtt->data.gen_utt.frame) == 0)
58 setRECframePtr(hUtt->data.gen_utt.frame, MI
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/websockets/
H A DWebSocketPerMessageDeflate.cpp172 bool WebSocketPerMessageDeflate::deflate(WebSocketFrame& frame) argument
176 if (frame.compress) {
180 if (!WebSocketFrame::isNonControlOpCode(frame.opCode))
183 if ((frame.opCode == WebSocketFrame::OpCodeText || frame.opCode == WebSocketFrame::OpCodeBinary)
184 && frame.final
185 && frame.payloadLength <= 2) {
186 // A trivial optimization: If a message consists of one frame and its
191 if (frame.payloadLength > 0 && !m_deflater->addBytes(frame
217 inflate(WebSocketFrame& frame) argument
[all...]
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
H A Ddecoding_state_unittest.cc32 VCMFrameBuffer frame; local
44 EXPECT_LE(0, frame.InsertPacket(packet, 0, kNoErrors, frame_data));
45 // Always start with a key frame.
47 EXPECT_FALSE(dec_state.ContinuousFrame(&frame));
51 dec_state.SetState(&frame);
52 frame.Reset();
57 EXPECT_LE(0, frame.InsertPacket(packet, 0, kNoErrors, frame_data));
58 EXPECT_FALSE(dec_state.ContinuousFrame(&frame));
59 frame.Reset();
62 EXPECT_LE(0, frame
165 VCMFrameBuffer frame; local
211 VCMFrameBuffer frame; local
364 VCMFrameBuffer frame; local
399 VCMFrameBuffer frame; local
418 VCMFrameBuffer frame; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/storage/
H A DStorageArea.cpp33 #include "core/frame/LocalDOMWindow.h"
34 #include "core/frame/LocalFrame.h"
70 unsigned StorageArea::length(ExceptionState& exceptionState, LocalFrame* frame) argument
72 if (!canAccessStorage(frame)) {
79 String StorageArea::key(unsigned index, ExceptionState& exceptionState, LocalFrame* frame) argument
81 if (!canAccessStorage(frame)) {
88 String StorageArea::getItem(const String& key, ExceptionState& exceptionState, LocalFrame* frame) argument
90 if (!canAccessStorage(frame)) {
97 void StorageArea::setItem(const String& key, const String& value, ExceptionState& exceptionState, LocalFrame* frame) argument
99 if (!canAccessStorage(frame)) {
109 removeItem(const String& key, ExceptionState& exceptionState, LocalFrame* frame) argument
118 clear(ExceptionState& exceptionState, LocalFrame* frame) argument
127 contains(const String& key, ExceptionState& exceptionState, LocalFrame* frame) argument
136 canAccessStorage(LocalFrame* frame) argument
[all...]
/external/chromium_org/remoting/codec/
H A Dvideo_encoder_vpx_unittest.cc22 // Creates a frame stippled between blue and red pixels, which is useful for
26 scoped_ptr<webrtc::DesktopFrame> frame(
30 uint8* pixel_u8 = frame->data() + (y * frame->stride()) +
36 return frame.Pass();
55 scoped_ptr<webrtc::DesktopFrame> frame(CreateTestFrame(frame_size));
56 frame->mutable_updated_region()->SetRect(
59 // Lossy encode the first frame.
61 scoped_ptr<VideoPacket> lossy_packet = encoder->Encode(*frame);
63 // Lossless encode the second frame
[all...]
/external/chromium_org/cc/layers/
H A Ddelegated_frame_provider_unittest.cc26 scoped_ptr<DelegatedFrameData> frame(new DelegatedFrameData);
33 frame->render_pass_list.push_back(root_pass.Pass());
34 return frame.Pass();
37 void AddTransferableResource(DelegatedFrameData* frame, argument
42 frame->resource_list.push_back(resource);
45 void AddTextureQuad(DelegatedFrameData* frame, argument
48 frame->render_pass_list[0]->CreateAndAppendSharedQuadState();
50 frame->render_pass_list[0]->CreateAndAppendDrawQuad<TextureDrawQuad>();
95 scoped_ptr<DelegatedFrameData> frame = local
97 AddTextureQuad(frame
117 scoped_ptr<DelegatedFrameData> frame = local
143 scoped_ptr<DelegatedFrameData> frame = local
201 scoped_ptr<DelegatedFrameData> frame = local
243 scoped_ptr<DelegatedFrameData> frame = local
287 scoped_ptr<DelegatedFrameData> frame = local
336 scoped_ptr<DelegatedFrameData> frame = local
351 scoped_ptr<DelegatedFrameData> frame = local
376 scoped_ptr<DelegatedFrameData> frame = local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DMediaValuesCached.cpp10 #include "core/frame/LocalFrame.h"
30 PassRefPtr<MediaValues> MediaValuesCached::create(LocalFrame* frame) argument
32 // FIXME - Added an assert here so we can better understand when a frame is present without its view().
33 ASSERT(!frame || frame->view());
35 if (!frame || !frame->view() || !frame->document() || !frame->document()->renderView())
37 return adoptRef(new MediaValuesCached(frame));
44 MediaValuesCached(LocalFrame* frame) argument
[all...]
/external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test/
H A Dstats.cc66 printf("No frame statistics have been logged yet.\n");
93 FrameStatisticsIterator frame; local
97 frame = std::min_element(stats_.begin(),
99 printf(" Min : %7d us (frame %d)\n",
100 frame->encode_time_in_us, frame->frame_number);
102 frame = std::max_element(stats_.begin(),
104 printf(" Max : %7d us (frame %d)\n",
105 frame->encode_time_in_us, frame
[all...]
/external/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DViewfinderView.java83 Rect frame = cameraManager.getFramingRect();
84 if (frame == null) {
92 canvas.drawRect(0, 0, width, frame.top, paint);
93 canvas.drawRect(0, frame.top, frame.left, frame.bottom + 1, paint);
94 canvas.drawRect(frame.right + 1, frame.top, width, frame.bottom + 1, paint);
95 canvas.drawRect(0, frame
[all...]
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentInit.cpp33 #include "core/frame/LocalFrame.h"
41 static Document* parentDocument(LocalFrame* frame) argument
43 if (!frame)
45 Element* ownerElement = frame->deprecatedLocalOwner();
52 static Document* ownerDocument(LocalFrame* frame) argument
54 if (!frame)
57 Frame* ownerFrame = frame->tree().parent();
59 ownerFrame = frame->loader().opener();
65 DocumentInit::DocumentInit(const KURL& url, LocalFrame* frame, WeakPtrWillBeRawPtr<Document> contextDocument, HTMLImportsController* importsController) argument
67 , m_frame(frame)
96 LocalFrame* frame = frameForSecurityContext(); local
[all...]
/external/chromium_org/cc/output/
H A Ddirect_renderer.cc81 void DirectRenderer::InitializeViewport(DrawingFrame* frame, argument
92 frame->projection_matrix = OrthoProjectionMatrix(draw_rect.x(),
97 frame->projection_matrix = OrthoProjectionMatrix(draw_rect.x(),
106 frame->window_matrix = window_matrix(window_rect.x(),
180 // Delete RenderPass textures from the previous frame that will not be used
207 DrawingFrame frame; local
208 frame.render_passes_in_draw_order = render_passes_in_draw_order;
209 frame.root_render_pass = root_render_pass;
210 frame.root_damage_rect = Capabilities().using_partial_swap
213 frame
251 ComputeScissorRectForRenderPass( const DrawingFrame* frame) argument
288 SetScissorStateForQuad(const DrawingFrame* frame, const DrawQuad& quad) argument
302 SetScissorStateForQuadWithRenderPassScissor( const DrawingFrame* frame, const DrawQuad& quad, const gfx::Rect& render_pass_scissor, bool* should_skip_quad) argument
321 SetScissorTestRectInDrawSpace( const DrawingFrame* frame, const gfx::Rect& draw_space_rect) argument
332 DrawRenderPass(DrawingFrame* frame, const RenderPass* render_pass) argument
390 UseRenderPass(DrawingFrame* frame, const RenderPass* render_pass) argument
[all...]

Completed in 818 milliseconds

1234567891011>>