HomeSort by relevance Sort by last modified time
    Searched refs:frame (Results 251 - 275 of 2876) sorted by null

<<11121314151617181920>>

  /external/webrtc/webrtc/modules/desktop_capture/
screen_capturer_x11.cc 35 // A class to perform video frame capturing for Linux.
252 // If the current frame is from an older generation then allocate a new one.
256 rtc::scoped_ptr<DesktopFrame> frame(
258 queue_.ReplaceCurrentFrame(frame.release());
262 DesktopFrame* frame = queue_.current_frame(); local
265 (differ_->width() != frame->size().width()) ||
266 (differ_->height() != frame->size().height()) ||
267 (differ_->bytes_per_row() != frame->stride()))) {
268 differ_.reset(new Differ(frame->size().width(), frame->size().height()
310 DesktopFrame* frame = queue_.current_frame()->Share(); local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
Debugger.py 16 def user_line(self, frame):
17 if self.in_rpc_code(frame):
20 message = self.__frame2message(frame)
21 self.gui.interaction(message, frame)
23 def user_exception(self, frame, info):
24 if self.in_rpc_code(frame):
27 message = self.__frame2message(frame)
28 self.gui.interaction(message, frame, info)
30 def in_rpc_code(self, frame):
31 if frame.f_code.co_filename.count('rpc.py')
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
Debugger.py 16 def user_line(self, frame):
17 if self.in_rpc_code(frame):
20 message = self.__frame2message(frame)
21 self.gui.interaction(message, frame)
23 def user_exception(self, frame, info):
24 if self.in_rpc_code(frame):
27 message = self.__frame2message(frame)
28 self.gui.interaction(message, frame, info)
30 def in_rpc_code(self, frame):
31 if frame.f_code.co_filename.count('rpc.py')
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
Debugger.py 16 def user_line(self, frame):
17 if self.in_rpc_code(frame):
20 message = self.__frame2message(frame)
21 self.gui.interaction(message, frame)
23 def user_exception(self, frame, info):
24 if self.in_rpc_code(frame):
27 message = self.__frame2message(frame)
28 self.gui.interaction(message, frame, info)
30 def in_rpc_code(self, frame):
31 if frame.f_code.co_filename.count('rpc.py')
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
Debugger.py 16 def user_line(self, frame):
17 if self.in_rpc_code(frame):
20 message = self.__frame2message(frame)
21 self.gui.interaction(message, frame)
23 def user_exception(self, frame, info):
24 if self.in_rpc_code(frame):
27 message = self.__frame2message(frame)
28 self.gui.interaction(message, frame, info)
30 def in_rpc_code(self, frame):
31 if frame.f_code.co_filename.count('rpc.py')
    [all...]
  /external/webrtc/webrtc/test/gl/
gl_renderer.cc 72 void GlRenderer::RenderFrame(const webrtc::VideoFrame& frame,
76 if (static_cast<size_t>(frame.width()) != width_ ||
77 static_cast<size_t>(frame.height()) != height_) {
78 ResizeVideo(frame.width(), frame.height());
81 webrtc::ConvertFromI420(frame, kBGRA, 0, buffer_);
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
BitmapOverlayFilter.java 21 import android.filterfw.core.Frame;
41 private Frame mFrame;
96 // Get input frame
97 Frame input = pullInput("image");
100 // Create output frame
101 Frame output = context.getFrameManager().newFrame(inputFormat);
109 Frame frame = createBitmapFrame(context); local
111 Frame[] inputs = {input, frame};
132 Frame frame = context.getFrameManager().newFrame(format); local
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/tic6x/
unwind-bad-2.s 18 # stack frame layout does not match personality routine
31 # stack frame layout does not match personality routine
75 # unable to generate unwinding opcode for frame pointer reg 14
82 # unable to generate unwinding opcode for frame pointer offset
97 # stack frame layout too complex for unwinder
109 # unwound frame has negative size
  /prebuilts/go/darwin-x86/src/runtime/
traceback.go 16 // incoming value of LR at the bottom of the newly allocated stack frame.
18 // the call instruction, so the return PC ends up above the stack frame.
91 var frame stkframe
96 frame.pc = 0
97 frame.fn = nil
98 frame.argp = 0
99 frame.arglen = 0
100 frame.argmap = nil
102 frame.pc = fn.fn
103 f := findfunc(frame.pc
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
traceback.go 16 // incoming value of LR at the bottom of the newly allocated stack frame.
18 // the call instruction, so the return PC ends up above the stack frame.
91 var frame stkframe
96 frame.pc = 0
97 frame.fn = nil
98 frame.argp = 0
99 frame.arglen = 0
100 frame.argmap = nil
102 frame.pc = fn.fn
103 f := findfunc(frame.pc
    [all...]
  /cts/tests/openglperf2/jni/reference/scene/
Scene.h 32 virtual bool update(int frame);
40 virtual bool updateSceneGraphs(int frame) = 0;
  /developers/build/prebuilts/gradle/ClippingBasic/Application/tests/src/com/example/android/clippingbasic/tests/
SampleTests.java 55 assertNotNull("Clipped frame is null", mTestActivity.findViewById(R.id.frame));
63 View clippedView = mTestActivity.findViewById(R.id.frame);
  /developers/samples/android/ui/views/Clipping/ClippingBasic/Application/tests/src/com/example/android/clippingbasic/tests/
SampleTests.java 55 assertNotNull("Clipped frame is null", mTestActivity.findViewById(R.id.frame));
63 View clippedView = mTestActivity.findViewById(R.id.frame);
  /external/google-breakpad/src/google_breakpad/processor/
stack_frame_symbolizer.h 33 // with source line resolver to fill stack frame information.
61 // frame's instruction, no symbol file, or resolver failed to load symbol.
76 // Encapsulate the step of resolving source line info for a stack frame.
77 // "frame" must not be NULL.
82 virtual WindowsFrameInfo* FindWindowsFrameInfo(const StackFrame* frame);
84 virtual CFIFrameInfo* FindCFIFrameInfo(const StackFrame* frame);
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/instr/
DuplicateFrameEliminatorTest.java 62 frame(eliminator);
63 frame(eliminator);
65 frame(expected.getVisitor());
142 frame(eliminator);
144 frame(eliminator);
146 frame(expected.getVisitor());
148 frame(expected.getVisitor());
151 private void frame(MethodVisitor mv) { method in class:DuplicateFrameEliminatorTest
  /external/libchrome/base/trace_event/
heap_profiler_stack_frame_deduplicator.h 33 FrameNode(StackFrame frame, int parent_frame_index);
37 StackFrame frame; member in struct:base::trace_event::StackFrameDeduplicator::FrameNode
39 // The index of the parent stack frame in |frames_|, or -1 if there is no
40 // parent frame (when it is at the bottom of the call stack).
43 // Indices into |frames_| of frames called from the current frame.
52 // Inserts a backtrace where |beginFrame| is a pointer to the bottom frame
53 // (e.g. main) and |endFrame| is a pointer past the top frame (most recently
58 // Iterators over the frame nodes in the call tree.
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAnimationDrawable.java 18 public void addFrame(Drawable frame, int duration) {
19 frames.add(frame);
  /external/webrtc/webrtc/modules/video_coding/utility/
quality_scaler.h 36 void OnEncodeFrame(const VideoFrame& frame);
38 const VideoFrame& GetScaledFrame(const VideoFrame& frame);
  /frameworks/base/core/java/android/speech/tts/
ITextToSpeechCallback.aidl 99 * @param frame The start position in frames in the audio of the request where this range is
102 void onRangeStart(String utteranceId, int start, int end, int frame);
  /frameworks/base/libs/hwui/
DamageAccumulator.h 66 void applyMatrix4Transform(DirtyStack* frame);
67 void applyRenderNodeTransform(DirtyStack* frame);
  /system/core/healthd/
AnimationParser.cpp 87 static constexpr const char* frame_prefix = "frame: ";
89 std::vector<animation::frame> frames;
92 animation::frame frame; local
119 } else if (sscanf(line.c_str(), " frame: %d %d %d",
120 &frame.disp_time, &frame.min_level, &frame.max_level) == 3) {
121 frames.push_back(std::move(frame));
129 LOGE("Bad animation description. Provide the 'animation: ' line and at least one 'frame: '
    [all...]
  /system/extras/tests/pftest/
Android.mk 16 LOCAL_CFLAGS += -fomit-frame-pointer
  /cts/tests/openglperf2/jni/reference/scene/flocking/
FlockingScene.h 36 bool updateSceneGraphs(int frame);
  /external/libdrm/include/drm/
drm_sarea.h 58 /** SAREA frame */
74 struct drm_sarea_frame frame; /**< frame */ member in struct:drm_sarea
  /external/mesa3d/include/GL/internal/
sarea.h 67 * SAREA frame information.
88 XF86DRISAREAFrameRec frame; member in struct:_XF86DRISAREA

Completed in 784 milliseconds

<<11121314151617181920>>