HomeSort by relevance Sort by last modified time
    Searched full:frames (Results 26 - 50 of 3653) sorted by null

12 3 4 5 6 7 8 91011>>

  /system/core/libcorkscrew/
test.cpp 8 backtrace_frame_t* frames = (backtrace_frame_t*) malloc(sizeof(backtrace_frame_t) * MAX_DEPTH); local
9 ssize_t frame_count = unwind_backtrace(frames, 0, MAX_DEPTH);
16 get_backtrace_symbols(frames, frame_count, backtrace_symbols);
20 format_backtrace_line(i, &frames[i], &backtrace_symbols[i],
34 symbol = find_symbol(symbols, frames[i].absolute_pc);
37 int offset = frames[i].absolute_pc - symbol->start;
48 free(frames);
  /external/chromium_org/content/browser/
session_history_browsertest.cc 58 // Simulate clicking a link. Only works on the frames.html testserver page.
64 // Simulate filling in form data. Only works on the frames.html page with
74 // Simulate submitting a form. Only works on the frames.html page with
184 ASSERT_NO_FATAL_FAILURE(NavigateAndCheckTitle("frames.html", "bot1"));
188 GURL frames(GetURL("frames.html"));
189 EXPECT_EQ(frames, GetTabURL());
193 EXPECT_EQ(frames, GetTabURL());
199 EXPECT_EQ(frames, GetTabURL());
203 EXPECT_EQ(frames, GetTabURL())
    [all...]
  /external/chromium_org/v8/test/mjsunit/
debug-backtrace.js 109 var frames = backtrace.frames;
110 assertEquals(4, frames.length);
111 for (var i = 0; i < frames.length; i++) {
112 assertEquals('frame', frames[i].type);
114 assertEquals(0, frames[0].index);
115 assertEquals("f", response.lookup(frames[0].func.ref).name);
116 assertEquals(1, frames[1].index);
117 assertEquals("", response.lookup(frames[1].func.ref).name);
118 assertEquals("m", response.lookup(frames[1].func.ref).inferredName)
    [all...]
  /external/v8/test/mjsunit/
debug-backtrace.js 109 var frames = backtrace.frames;
110 assertEquals(4, frames.length);
111 for (var i = 0; i < frames.length; i++) {
112 assertEquals('frame', frames[i].type);
114 assertEquals(0, frames[0].index);
115 assertEquals("f", response.lookup(frames[0].func.ref).name);
116 assertEquals(1, frames[1].index);
117 assertEquals("", response.lookup(frames[1].func.ref).name);
118 assertEquals("m", response.lookup(frames[1].func.ref).inferredName)
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/wave/
prettyload.js 27 frames,
39 this.frames = frames !== undefined ? frames : ELLIPSIS;
72 const FRAMES = this.frames;
74 const FRAME_COUNT = FRAMES.length;
78 BROWSER_ACTION.setBadgeText({text: FRAMES[i]});
82 BROWSER_ACTION.setBadgeText({text: FRAMES[++i % FRAME_COUNT]});
  /external/chromium/chrome/browser/printing/cloud_print/resources/
cloud_print_setup_login.js 18 frames['gaialogin'].showGaiaLogin(args);
20 login_height = frames['gaialogin'].document.body.scrollHeight;
28 frames['gaialogin'].showGaiaSuccessAndSettingUp()
  /external/libvpx/libvpx/examples/
decode_with_drops.txt 5 This is an example utility which drops a series of frames, as specified
13 which specifies the range or pattern of frames to drop. The parameter is
30 Dropping A Range Of Frames
32 To drop a range of frames, specify the starting frame and the ending
34 frames 5 through 10 (base 1).
39 Dropping A Pattern Of Frames
41 To drop a pattern of frames, specify the number of frames to drop and
42 the number of frames after which to repeat the pattern, separated by
43 a forward-slash. The following command will drop 3 of 7 frames
    [all...]
  /external/qemu/distrib/sdl-1.2.15/docs/man3/
SDL_CDtrack.3 24 Length, in frames, of this track
35 Frames can be converted to standard timings\&. There are \fBCD_FPS\fP frames per second, so \fBSDL_CDtrack\fR\&.\fBlength\fR/\fBCD_FPS\fP=length_in_seconds\&.
  /external/chromium_org/media/video/capture/win/
sink_filter_observer_win.h 6 // frames from the SinkFilter DirectShow filter.
15 // SinkFilter will call this function with all frames delivered to it.
  /external/chromium_org/net/tools/quic/
quic_server_session_test.cc 123 vector<QuicStreamFrame> frames; local
124 frames.push_back(data1);
125 EXPECT_TRUE(visitor_->OnStreamFrames(frames));
138 EXPECT_TRUE(visitor_->OnStreamFrames(frames));
152 vector<QuicStreamFrame> frames; local
153 frames.push_back(data1);
160 EXPECT_FALSE(visitor_->OnStreamFrames(frames));
168 vector<QuicStreamFrame> frames; local
169 frames.push_back(data1);
177 EXPECT_FALSE(visitor_->OnStreamFrames(frames));
181 vector<QuicStreamFrame> frames; local
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
SpriteAnimation.java 45 final FixedSizeArray<AnimationFrame> frames = mFrames; local
46 assert frames.getCount() == frames.getCapacity();
47 final int frameCount = frames.getCount();
48 result = frames.get(frameCount - 1);
58 // When there are very few frames it's actually slower to do a binary search
66 result = frames.get(index);
69 AnimationFrame frame = frames.get(x);
  /external/chromium_org/third_party/libjingle/source/talk/examples/android/src/org/appspot/apprtc/
FramePool.java 46 // Maps each summary code (see summarizeFrameDimensions()) to a list of frames
58 LinkedList<I420Frame> frames = availableFrames.get(desc); local
59 if (frames == null) {
60 frames = new LinkedList<I420Frame>();
61 availableFrames.put(desc, frames);
63 if (!frames.isEmpty()) {
64 dst = frames.pop();
76 LinkedList<I420Frame> frames = availableFrames.get(desc); local
77 if (frames == null) {
80 frames.add(frame)
    [all...]
  /external/libvpx/libvpx/examples/includes/geshi/docs/
phpdoc.ini 80 ;; legal values: HTML:frames:default,HTML:frames:l0l33t,HTML:frames:phpdoc.de,HTML:frames:phphtmllib,
81 ;; HTML:frames:earthli,
82 ;; HTML:frames:DOM/default,HTML:frames:DOM/l0l33t,HTML:frames:DOM/phpdoc.de,
83 ;; HTML:frames:DOM/phphtmllib,HTML:frames:DOM/earthl
    [all...]
  /external/qemu/distrib/sdl-1.2.15/test/
testvidinfo.c 80 Uint32 frames; local
95 frames = 0;
102 ++frames;
110 ++frames;
118 ++frames;
123 printf("%d fills and flips in %2.2f seconds, %2.2f FPS\n", frames, seconds, (float)frames / seconds);
125 printf("%d fills and flips in zero seconds!n", frames);
148 frames = RunBlitTests(screen, bmp, NUM_BLITS);
152 printf("%d blits / %d updates in %2.2f seconds, %2.2f FPS\n", NUM_BLITS*frames, frames, seconds, (float)frames / seconds)
    [all...]
  /external/chromium_org/media/filters/
audio_renderer_algorithm.h 46 // Tries to fill |requested_frames| frames into |dest| with possibly scaled
52 // Returns the number of frames copied into |dest|. May request more reads via
73 // Returns the capacity of |audio_buffer_| in frames.
79 // Returns the number of frames left in |audio_buffer_|, which may be larger
82 int frames_buffered() { return audio_buffer_.frames(); }
94 // |target_block_| can be extracted from the available frames.
97 // Read a maximum of |requested_frames| frames from |wsola_output_|. Returns
98 // number of frames actually read.
102 // Fill |dest| with frames from |audio_buffer_| starting from frame
106 // for negative indices. This might happen for few first frames. This metho
    [all...]
  /frameworks/av/include/media/nbaio/
NBAIO.h 137 // Return the number of frames written successfully since construction.
140 // Number of frames lost due to underrun since construction.
143 // Number of underruns since construction, where a set of contiguous lost frames is one event.
146 // Estimate of number of frames that could be written successfully now without blocking.
151 // UNDERRUN write() has not been called frequently enough, or with enough frames to keep up.
153 // WOULD_BLOCK Determining how many frames can be written without blocking would itself block.
159 // count Maximum number of frames to transfer.
161 // > 0 Number of frames successfully transferred prior to first error.
166 // WOULD_BLOCK No frames can be transferred without blocking.
167 // UNDERRUN write() has not been called frequently enough, or with enough frames to keep up
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/data/pageserialization/
simple_iframe.html 4 correctly the expected resources when dealing with multiple frames.
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Mosaic.cpp 44 if (frames[i])
45 delete frames[i];
47 delete frames;
79 frames = new MosaicFrame *[max_frames];
86 frames[i] = new MosaicFrame(this->width,this->height,false); // Do no allocate memory for YUV data
93 frames[i] = NULL;
102 LOGV("Max num frames %d", max_frames);
144 if(frames[frames_size]==NULL)
145 frames[frames_size] = new MosaicFrame(this->width,this->height,false);
147 MosaicFrame *frame = frames[frames_size]
    [all...]
  /packages/apps/Camera2/jni/feature_mos/src/mosaic/
Mosaic.cpp 44 if (frames[i])
45 delete frames[i];
47 delete frames;
79 frames = new MosaicFrame *[max_frames];
86 frames[i] = new MosaicFrame(this->width,this->height,false); // Do no allocate memory for YUV data
93 frames[i] = NULL;
102 LOGV("Max num frames %d", max_frames);
144 if(frames[frames_size]==NULL)
145 frames[frames_size] = new MosaicFrame(this->width,this->height,false);
147 MosaicFrame *frame = frames[frames_size]
    [all...]
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Mosaic.cpp 44 if (frames[i])
45 delete frames[i];
47 delete frames;
75 frames = new MosaicFrame *[max_frames];
82 frames[i] = new MosaicFrame(this->width,this->height,false); // Do no allocate memory for YUV data
89 frames[i] = NULL;
97 LOGV("Max num frames %d", max_frames);
131 if(frames[frames_size]==NULL)
132 frames[frames_size] = new MosaicFrame(this->width,this->height,false);
134 MosaicFrame *frame = frames[frames_size]
    [all...]
  /external/chromium_org/media/base/
audio_timestamp_helper.h 13 // Generates timestamps for a sequence of audio sample frames. This class should
26 // determines the number of frames that need to be added/removed from the
27 // accumulated frames to reach a target timestamp.
43 // and the number of sample frames that have been added so far.
46 // Gets the duration if |frame_count| frames were added to the current
52 // Returns the number of frames needed to reach the target timestamp.
63 // Number of frames accumulated by AddFrames() calls.
multi_channel_resampler.h 24 // frames are available to satisfy the request. |frame_delay| is the number
25 // of output frames already processed and can be used to estimate delay.
31 // frames of the AudioBus to be filled by |read_cb|.
38 // Resamples |frames| of data from |read_cb_| into AudioBus.
39 void Resample(int frames, AudioBus* audio_bus);
53 void ProvideInput(int channel, int frames, float* destination);
68 // The number of output frames that have successfully been processed during
multi_channel_resampler.cc 45 void MultiChannelResampler::Resample(int frames, AudioBus* audio_bus) {
50 resamplers_[0]->Resample(frames, audio_bus->channel(0));
55 // channel. To ensure this, we chunk the number of requested frames into
59 while (output_frames_ready_ < frames) {
61 int frames_this_time = std::min(frames - output_frames_ready_, chunk_size);
72 // number of frames.
82 int frames,
93 DCHECK_EQ(frames, wrapped_resampler_audio_bus_->frames());
97 sizeof(*wrapped_resampler_audio_bus_->channel(channel)) * frames);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
ScriptCallStack.cpp 37 PassRefPtr<ScriptCallStack> ScriptCallStack::create(Vector<ScriptCallFrame>& frames)
39 return adoptRef(new ScriptCallStack(frames));
42 ScriptCallStack::ScriptCallStack(Vector<ScriptCallFrame>& frames)
44 m_frames.swap(frames);
81 RefPtr<TypeBuilder::Array<TypeBuilder::Console::CallFrame> > frames = TypeBuilder::Array<TypeBuilder::Console::CallFrame>::create(); local
83 frames->addItem(m_frames.at(i).buildInspectorObject());
84 return frames;
  /system/media/audio_utils/include/audio_utils/
sndfile.h 35 sf_count_t frames; member in struct:__anon61058
63 // Read interleaved frames and return actual number of frames read
67 // Write interleaved frames and return actual number of frames written

Completed in 5992 milliseconds

12 3 4 5 6 7 8 91011>>