Searched defs:frame (Results 1 - 25 of 1151) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DExceptionExtensions.cs60 public static string getMethodName(StackFrame frame) { argument
61 return frame.GetMethod().Name;
65 public static string getClassName(StackFrame frame) { argument
66 return frame.GetMethod().DeclaringType.Name;
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
H A DVmMirror.java2098 Frame frame = new Frame();
2099 frame.setThreadID(threadID);
2100 frame.setID(reply.getNextValueAsFrameID());
2101 frame.setLocation(reply.getNextValueAsLocation());
2102 frames.add(frame);
2114 * The index of the first frame to retrieve.
2125 command.setNextValueAsInt(startIndex); // start frame's index
2177 * Returns values of local variables in a given frame
2179 * @param frame
2183 public final Value[] getFrameValues(Frame frame) { argument
2635 getLocalVars(Frame frame) argument
2669 setLocalVars(Frame frame, Variable[] vars, Value[] values) argument
2797 popFrame(Frame frame) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/
H A DVariableStack.java83 * The stack frame where all variables and params will be kept.
89 * The top of the stack frame (<code>_stackFrames</code>).
95 * The bottom index of the current frame (relative to <code>_stackFrames</code>).
101 * The stack of frame positions. I call 'em links because of distant
164 // Adding one here to the stack of frame positions will allow us always
174 * Set the current stack frame.
176 * @param sf The new stack frame position.
188 * @return The current stack frame position.
203 * @param size The size of the stack frame allocation. This ammount should
205 * at one time in the new stack frame
336 getLocalVariable(int index, int frame) argument
[all...]
/external/bluetooth/bluedroid/embdrv/sbc/decoder/srce/
H A Dbitalloc-sbc.c111 OI_UINT32 OI_CODEC_SBC_CalculateBitrate(OI_CODEC_SBC_FRAME_INFO *frame) argument
113 return internal_CalculateBitrate(frame);
128 * Calculates the bitpool size for a given frame length
130 OI_UINT16 OI_CODEC_SBC_CalculateBitpool(OI_CODEC_SBC_FRAME_INFO *frame, argument
133 OI_UINT16 nrof_subbands = frame->nrof_subbands;
134 OI_UINT16 nrof_blocks = frame->nrof_blocks;
138 if (frame->mode == SBC_JOINT_STEREO) {
141 if (frame->mode == SBC_MONO) {
146 if (frame->mode == SBC_DUAL_CHANNEL) {
160 OI_UINT16 OI_CODEC_SBC_CalculateFramelen(OI_CODEC_SBC_FRAME_INFO *frame) argument
[all...]
H A Dbitalloc.c28 subbands within the SBC/eSBC frame, along with support functions for computing
29 frame length and bitrate.
42 OI_UINT32 OI_SBC_MaxBitpool(OI_CODEC_SBC_FRAME_INFO *frame) argument
44 switch (frame->mode) {
47 return 16 * frame->nrof_subbands;
50 return 32 * frame->nrof_subbands;
53 ERROR(("Invalid frame mode %d", frame->mode));
59 PRIVATE OI_UINT16 internal_CalculateFramelen(OI_CODEC_SBC_FRAME_INFO *frame) argument
61 OI_UINT16 nbits = frame
75 internal_CalculateBitrate(OI_CODEC_SBC_FRAME_INFO *frame) argument
84 OI_SBC_CalculateFrameAndHeaderlen(OI_CODEC_SBC_FRAME_INFO *frame, OI_UINT *headerLen_) argument
[all...]
H A Ddecoder-private.c90 OI_CODEC_SBC_FRAME_INFO *frame = &common->frameInfo; local
102 if (d1 != frame->cachedInfo) {
104 frame->freqIndex = (d1 & (BIT7 | BIT6)) >> 6;
105 frame->frequency = freq_values[frame->freqIndex];
107 frame->blocks = (d1 & (BIT5 | BIT4)) >> 4;
108 frame->nrof_blocks = block_values[frame->blocks];
110 frame->mode = (d1 & (BIT3 | BIT2)) >> 2;
111 frame
[all...]
H A Dframing.c168 PRIVATE OI_UINT8 OI_SBC_CalculateChecksum(OI_CODEC_SBC_FRAME_INFO *frame, OI_BYTE const *data) argument
177 OI_UINT count = (frame->nrof_subbands * frame->nrof_channels / 2u) + 4;
179 if (frame->mode == SBC_JOINT_STEREO && frame->nrof_subbands == 8) {
189 if (frame->mode == SBC_JOINT_STEREO && frame->nrof_subbands == 4) {
196 void OI_SBC_ExpandFrameFields(OI_CODEC_SBC_FRAME_INFO *frame) argument
198 frame->nrof_blocks = block_values[frame
[all...]
/external/chromium_org/android_webview/browser/
H A Dbrowser_view_renderer.cc293 scoped_ptr<cc::CompositorFrame> frame = CompositeHw(); local
294 if (!frame.get())
297 shared_renderer_state_->SetCompositorFrame(frame.Pass(), false);
325 scoped_ptr<cc::CompositorFrame> frame = local
332 if (frame.get())
334 return frame.Pass();
351 scoped_ptr<cc::CompositorFrame> frame) {
352 if (!frame.get())
357 frame->delegated_frame_data->resource_list, &frame_ack.resources);
797 scoped_ptr<cc::CompositorFrame> frame local
350 ReturnUnusedResource( scoped_ptr<cc::CompositorFrame> frame) argument
[all...]
H A Dparent_output_surface.cc21 void ParentOutputSurface::SwapBuffers(cc::CompositorFrame* frame) { argument
H A Dshared_renderer_state.cc161 scoped_ptr<cc::CompositorFrame> frame, bool force_commit) {
164 compositor_frame_ = frame.Pass();
160 SetCompositorFrame( scoped_ptr<cc::CompositorFrame> frame, bool force_commit) argument
/external/chromium_org/android_webview/renderer/
H A Daw_content_renderer_client.cc70 blink::WebFrame* frame,
100 if (frame->parent() &&
126 // TODO(jam): when the frame tree moves into content and parent() works at
157 blink::WebFrame* /* frame */,
66 HandleNavigation( content::RenderFrame* render_frame, content::DocumentState* document_state, int opener_id, blink::WebFrame* frame, const blink::WebURLRequest& request, blink::WebNavigationType type, blink::WebNavigationPolicy default_policy, bool is_redirect) argument
H A Daw_render_frame_ext.cc22 blink::WebLocalFrame* frame = render_frame()->GetWebFrame(); local
24 content::DocumentState::FromDataSource(frame->dataSource());
26 blink::WebSecurityOrigin origin = frame->document().securityOrigin();
H A Dprint_web_view_helper.cc75 void ExecuteScript(blink::WebFrame* frame,
81 frame->executeScript(blink::WebString(base::UTF8ToUTF16(script)));
103 blink::WebFrame* frame,
128 if (frame) {
129 frame->pageSizeAndMarginsInPixels(page_index,
144 CHECK(frame);
158 // Printing frame doesn't have any page size css. Pixels to dpi conversion
286 blink::WebPlugin* GetPlugin(const blink::WebFrame* frame) { argument
287 return frame->document().isPluginDocument() ?
288 frame
102 GetCssPrintParams( blink::WebFrame* frame, int page_index, const PrintMsg_Print_Params& page_params) argument
291 PrintingNodeOrPdfFrame(const blink::WebFrame* frame, const blink::WebNode& node) argument
299 PrintingFrameHasPageSizeStyle(blink::WebFrame* frame, int total_page_count) argument
313 GetMarginsForPdf(blink::WebFrame* frame, const blink::WebNode& node) argument
329 CalculatePrintParamsForCss( blink::WebFrame* frame, int page_index, const PrintMsg_Print_Params& page_params, bool ignore_css_margins, bool fit_to_page, double* scale_factor) argument
382 FrameReference(blink::WebLocalFrame* frame) argument
393 Reset(blink::WebLocalFrame* frame) argument
477 RenderPageContent(blink::WebFrame* frame, int page_number, const gfx::Rect& canvas_area, const gfx::Rect& content_area, double scale_factor, blink::WebCanvas* canvas) argument
519 blink::WebLocalFrame* frame() { function in class:printing::__anon1835::PrepareFrameAndViewForPrint
577 PrepareFrameAndViewForPrint( const PrintMsg_Print_Params& params, blink::WebLocalFrame* frame, const blink::WebNode& node, bool ignore_css_margins) argument
695 blink::WebFrame* frame = blink::WebLocalFrame::create(this); local
700 frameDetached(blink::WebFrame* frame) argument
726 blink::WebLocalFrame* frame = frame_.GetFrame(); local
769 IsScriptInitiatedPrintAllowed( blink::WebFrame* frame, bool user_initiated) argument
797 PrintPage(blink::WebLocalFrame* frame, bool user_initiated) argument
892 GetPrintFrame(blink::WebLocalFrame** frame) argument
910 blink::WebLocalFrame* frame; local
916 blink::WebLocalFrame* frame = print_preview_context_.source_frame(); local
1179 blink::WebLocalFrame* frame = NULL; local
1223 Print(blink::WebLocalFrame* frame, const blink::WebNode& node) argument
1347 PrintPagesNative(blink::WebFrame* frame, int page_count, const gfx::Size& canvas_size) argument
1374 ComputePageLayoutInPointsForCss( blink::WebFrame* frame, int page_index, const PrintMsg_Print_Params& page_params, bool ignore_css_margins, double* scale_factor, PageSizeMargins* page_layout_in_points) argument
1422 CalculateNumberOfPages(blink::WebLocalFrame* frame, const blink::WebNode& node, int* number_of_pages) argument
1448 UpdatePrintSettings( blink::WebLocalFrame* frame, const blink::WebNode& node, const base::DictionaryValue& passed_job_settings) argument
1554 GetPrintSettingsFromUser(blink::WebFrame* frame, const blink::WebNode& node, int expected_pages_count) argument
1586 RenderPagesForPrint(blink::WebLocalFrame* frame, const blink::WebNode& node) argument
1625 IsScriptInitiatedPrintTooFrequent( blink::WebFrame* frame) argument
[all...]
H A Dprint_web_view_helper_linux.cc61 bool PrintWebViewHelper::PrintPagesNative(blink::WebFrame* frame, argument
91 PrintPageInternal(page_params, canvas_size, frame, &metafile);
155 WebFrame* frame,
159 ComputePageLayoutInPointsForCss(frame, params.page_number, params.params,
191 RenderPageContent(frame, params.page_number, canvas_area, content_area,
152 PrintPageInternal( const PrintMsg_PrintPage_Params& params, const gfx::Size& canvas_size, WebFrame* frame, PdfMetafileSkia* metafile) argument
/external/chromium_org/ash/frame/caption_buttons/
H A Dframe_caption_button_container_view.cc5 #include "ash/frame/caption_buttons/frame_caption_button_container_view.h"
11 #include "ash/frame/caption_buttons/frame_caption_button.h"
12 #include "ash/frame/caption_buttons/frame_size_button.h"
112 views::Widget* frame,
114 : frame_(frame),
133 size_button_ = new FrameSizeButton(this, frame, this);
111 FrameCaptionButtonContainerView( views::Widget* frame, MinimizeAllowed minimize_allowed) argument
H A Dframe_size_button.cc5 #include "ash/frame/caption_buttons/frame_size_button.h"
49 views::Widget* frame,
52 frame_(frame),
47 FrameSizeButton( views::ButtonListener* listener, views::Widget* frame, FrameSizeButtonDelegate* delegate) argument
/external/chromium_org/ash/frame/
H A Dcustom_frame_view_ash.cc5 #include "ash/frame/custom_frame_view_ash.h"
11 #include "ash/frame/caption_buttons/frame_caption_button_container_view.h"
12 #include "ash/frame/default_header_painter.h"
13 #include "ash/frame/frame_border_hit_test_controller.h"
14 #include "ash/frame/frame_util.h"
15 #include "ash/frame/header_painter.h"
133 // |frame| is the widget that the caption buttons act on.
134 explicit HeaderView(views::Widget* frame);
199 CustomFrameViewAsh::HeaderView::HeaderView(views::Widget* frame) argument
200 : frame_(frame),
434 CustomFrameViewAsh(views::Widget* frame) argument
[all...]
H A Ddefault_header_painter.cc5 #include "ash/frame/default_header_painter.h"
7 #include "ash/frame/caption_buttons/frame_caption_button_container_view.h"
8 #include "ash/frame/header_painter_util.h"
38 // The color of the frame.
40 // The alpha of the inactive frame.
42 // Duration of crossfade animation for activating and deactivating frame.
93 views::Widget* frame,
96 DCHECK(frame);
99 frame_ = frame;
92 Init( views::Widget* frame, views::View* header_view, FrameCaptionButtonContainerView* caption_button_container) argument
H A Dframe_border_hit_test_controller.cc5 #include "ash/frame/frame_border_hit_test_controller.h"
8 #include "ash/frame/caption_buttons/frame_caption_button_container_view.h"
22 FrameBorderHitTestController::FrameBorderHitTestController(views::Widget* frame) argument
23 : frame_window_(frame->GetNativeWindow()) {
46 // Check the frame first, as we allow a small area overlapping the contents
48 views::Widget* frame = view->GetWidget();
49 bool can_ever_resize = frame->widget_delegate()->CanResize();
53 frame->IsMaximized() || frame->IsFullscreen() ? 0 :
64 int client_component = frame
[all...]
/external/chromium_org/ash/ime/
H A Dmode_indicator_view.cc86 views::BubbleFrameView* frame = new ModeIndicatorFrameView(margins()); local
89 frame->SetBubbleBorder(scoped_ptr<views::BubbleBorder>(
91 return frame;
/external/chromium_org/ash/wm/panels/
H A Dpanel_frame_view.cc7 #include "ash/frame/caption_buttons/frame_caption_button_container_view.h"
8 #include "ash/frame/default_header_painter.h"
9 #include "ash/frame/frame_border_hit_test_controller.h"
21 PanelFrameView::PanelFrameView(views::Widget* frame, FrameType frame_type) argument
22 : frame_(frame),
/external/chromium_org/athena/activity/
H A Dactivity_frame_view.cc47 ActivityFrameView::ActivityFrameView(views::Widget* frame, argument
49 : frame_(frame),
101 // The activity has a frame in overview mode regardless of the value of
/external/chromium_org/athena/main/
H A Dathena_frame_view.cc23 // The default background color for athena's frame. This is placeholder.
31 AthenaFrameView::AthenaFrameView(views::Widget* frame) : frame_(frame) { argument

Completed in 987 milliseconds

1234567891011>>