Searched refs:frames (Results 1 - 25 of 146) sorted by relevance

123456

/external/chromium/net/websockets/
H A Dwebsocket_frame_handler_unittest.cc47 std::vector<WebSocketFrameHandler::FrameInfo> frames; local
54 kInputData, kInputDataLen, &frames));
55 EXPECT_EQ(2UL, frames.size());
57 EXPECT_EQ(kInputData, frames[0].frame_start);
58 EXPECT_EQ(kHelloWorldFrameLen, frames[0].frame_length);
59 EXPECT_EQ(kInputData + 1, frames[0].message_start);
60 EXPECT_EQ(kHelloWorldFrameLen - 2, frames[0].message_length);
62 EXPECT_EQ(kInputData + kHelloWorldFrameLen, frames[1].frame_start);
63 EXPECT_EQ(2, frames[1].frame_length);
64 EXPECT_EQ(0, frames[
68 std::vector<WebSocketFrameHandler::FrameInfo> frames; local
106 std::vector<WebSocketFrameHandler::FrameInfo> frames; local
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DSpriteAnimation.java45 final FixedSizeArray<AnimationFrame> frames = mFrames;
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/webkit/Source/WebCore/inspector/
H A DScriptCallStack.cpp38 PassRefPtr<ScriptCallStack> ScriptCallStack::create(Vector<ScriptCallFrame>& frames) argument
40 return adoptRef(new ScriptCallStack(frames));
43 ScriptCallStack::ScriptCallStack(Vector<ScriptCallFrame>& frames) argument
45 m_frames.swap(frames);
83 RefPtr<InspectorArray> frames = InspectorArray::create(); local
85 frames->pushObject(m_frames.at(i).buildInspectorObject());
86 return frames;
/external/webkit/Source/WebCore/storage/
H A DStorageEventDispatcher.cpp51 // We need to copy all relevant frames from every page to a vector since sending the event to one frame might mutate the frame tree
53 Vector<RefPtr<Frame> > frames;
58 frames.append(frame);
61 for (unsigned i = 0; i < frames.size(); ++i) {
63 Storage* storage = frames[i]->domWindow()->sessionStorage(ec);
65 frames[i]->document()->enqueueWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, sourceFrame->document()->url(), storage));
74 frames.append(frame);
78 for (unsigned i = 0; i < frames.size(); ++i) {
80 Storage* storage = frames[i]->domWindow()->localStorage(ec);
82 frames[
[all...]
/external/srec/srec/ca/
H A Dutt_proc.c40 int ii, frames = 0; local
42 frames = get_background_statistics(hUtt->data.gen_utt.frame,
47 /* log_report ("UTT (%d): ", frames); */
54 return (frames);
/external/v8/test/mjsunit/
H A Ddebug-backtrace.js109 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[
[all...]
H A Ddebug-return-value.js117 frames = response.body().frames;
118 assertTrue(frames[0].atReturn);
120 response.lookup(frames[0].returnValue.ref).value);
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtestvidinfo.c80 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, frame
[all...]
/external/chromium/chrome/browser/printing/cloud_print/resources/
H A Dcloud_print_setup_login.js18 frames['gaialogin'].showGaiaLogin(args);
20 login_height = frames['gaialogin'].document.body.scrollHeight;
28 frames['gaialogin'].showGaiaSuccessAndSettingUp()
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DPoseTrack.java50 private PoseFrame[] frames; field in class:PoseTrack
97 public PoseTrack(int targetMeshIndex, float[] times, PoseFrame[] frames){ argument
100 this.frames = frames;
104 PoseFrame frame = frames[frameIndex];
159 if (this.frames != null) {
160 result.frames = new PoseFrame[this.frames.length];
161 for (int i = 0; i < this.frames.length; ++i) {
162 result.frames[
[all...]
/external/chromium/chrome/common/extensions/docs/examples/extensions/wave/
H A Dprettyload.js27 frames,
39 this.frames = frames !== undefined ? frames : ELLIPSIS;
72 const FRAMES = this.frames;
/external/webkit/Source/WebCore/bindings/js/
H A DScriptCallStackFactory.cpp58 Vector<ScriptCallFrame> frames; local
72 // Caller is unknown, but if frames is empty we should still add the frame, because
74 if (!frames.isEmpty())
78 frames.append(ScriptCallFrame(ustringToString(functionName), ustringToString(urlString), lineNumber));
79 if (!function || frames.size() == maxStackSize)
83 return ScriptCallStack::create(frames);
/external/webkit/Source/WebKit/chromium/src/
H A DStorageEventDispatcherImpl.cpp61 // We need to copy all relevant frames from every page to a vector since sending the event to one frame might mutate the frame tree
63 Vector<RefPtr<Frame> > frames;
70 frames.append(frame);
74 for (unsigned i = 0; i < frames.size(); ++i) {
76 Storage* storage = frames[i]->domWindow()->localStorage(ec);
78 frames[i]->document()->dispatchWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, url, storage));
H A DStorageAreaProxy.cpp118 // We need to copy all relevant frames from every page to a vector since sending the event to one frame might mutate the frame tree
120 Vector<RefPtr<Frame> > frames;
125 frames.append(frame);
128 for (unsigned i = 0; i < frames.size(); ++i) {
130 Storage* storage = frames[i]->domWindow()->sessionStorage(ec);
132 frames[i]->document()->enqueueWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, sourceFrame->document()->url(), storage));
141 frames.append(frame);
145 for (unsigned i = 0; i < frames.size(); ++i) {
147 Storage* storage = frames[i]->domWindow()->localStorage(ec);
149 frames[
[all...]
/external/webkit/Source/WebKit/chromium/tests/
H A DWebPageSerializerTest.cpp124 WebVector<WebURL> frames; local
127 m_webView, m_supportedSchemes, &resources, &frames));
130 EXPECT_EQ(1, frames.size()); // There should be no duplicates.
131 EXPECT_TRUE(webVectorContains(frames, "http://www.test.com"));
152 // Register the mocked frames.
170 WebVector<WebURL> frames; local
173 m_webView, m_supportedSchemes, &resources, &frames));
176 EXPECT_EQ(4, frames.size()); // There should be no duplicates.
177 EXPECT_TRUE(webVectorContains(frames, "http://www.test.com"));
178 EXPECT_TRUE(webVectorContains(frames, "htt
[all...]
/external/chromium/chrome/browser/
H A Dsession_history_uitest.cc34 // Simulate clicking a link. Only works on the frames.html testserver page.
40 // Simulate filling in form data. Only works on the frames.html page with
50 // Simulate submitting a form. Only works on the frames.html page with
164 GURL frames(test_server_.GetURL("files/session_history/frames.html"));
165 ASSERT_TRUE(tab_->NavigateToURL(frames));
167 EXPECT_EQ(frames, GetTabURL());
171 EXPECT_EQ(frames, GetTabURL());
175 EXPECT_EQ(frames, GetTabURL());
181 EXPECT_EQ(frames, GetTabUR
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DExceptionExtensions.cs49 StackFrame[] frames = trace.GetFrames();
50 if (frames == null) {
53 Array.Copy(stackTrace, 1, frames, 0, stackTrace.Length);
55 return frames;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DExceptionExtensions.cs54 StackFrame[] frames = trace.GetFrames();
55 if ( frames == null )
58 frames = new StackTrace( true ).GetFrames().Skip( 1 ).ToArray();
60 return frames;
/external/webrtc/test/testsupport/metrics/
H A Dvideo_metrics.cc50 result->frames.push_back(frame_result);
55 if (result == NULL || result->frames.size() == 0) {
61 for (iter = result->frames.begin(); iter != result->frames.end(); ++iter) {
64 result->average = metrics_values_sum / result->frames.size();
67 iter = min_element(result->frames.begin(), result->frames.end(),
71 iter = max_element(result->frames.begin(), result->frames.end(),
H A Dvideo_metrics.h27 // The frames in this data structure are 0-indexed.
41 std::vector<FrameResult> frames; member in struct:webrtc::test::QualityMetricsResult
52 // This function only compares video frames up to the point when the shortest
72 // This function only compares video frames up to the point when the shortest
93 // This function only compares video frames up to the point when the shortest
/external/chromium/chrome/browser/ui/gtk/
H A Dchrome_gtk_frame.h44 MetaFrames frames; member in struct:_ChromeGtkFrame
/external/v8/test/mjsunit/regress/
H A Dregress-1081309.js80 assertEquals(2, backtrace.frames.length);
82 assertEquals("g", response.lookup(backtrace.frames[0].func.ref).name);
83 assertEquals("", response.lookup(backtrace.frames[1].func.ref).name);
/external/chromium/webkit/glue/
H A Ddom_operations.cc47 // Collection of all frames we go through when getting all savable resource
49 std::vector<WebFrame*>* frames; member in struct:__anon3223::SavableResourcesUniqueCheck
54 frames(NULL) {}
57 std::set<GURL>* frames_set, std::vector<WebFrame*>* frames)
60 frames(frames) {}
77 unique_check->frames->push_back(sub_frame);
205 std::vector<WebFrame*> frames; local
208 &frames);
219 frames
56 SavableResourcesUniqueCheck(std::set<GURL>* resources_set, std::set<GURL>* frames_set, std::vector<WebFrame*>* frames) argument
[all...]
/external/tinyalsa/
H A Dpcm.c216 unsigned int pcm_frames_to_bytes(struct pcm *pcm, unsigned int frames) argument
218 return frames * pcm->config.channels *
294 unsigned int frames)
296 int size_bytes = pcm_frames_to_bytes(pcm, frames);
311 unsigned int pcm_offset, frames, count = 0; local
314 frames = size;
315 pcm_mmap_begin(pcm, &pcm_areas, &pcm_offset, &frames);
316 pcm_areas_copy(pcm, pcm_offset, src, offset, frames);
317 commit = pcm_mmap_commit(pcm, pcm_offset, frames);
319 oops(pcm, commit, "failed to commit %d frames\
292 pcm_areas_copy(struct pcm *pcm, unsigned int pcm_offset, const char *src, unsigned int src_offset, unsigned int frames) argument
333 int frames; local
670 pcm_mmap_appl_forward(struct pcm *pcm, int frames) argument
681 pcm_mmap_begin(struct pcm *pcm, void **areas, unsigned int *offset, unsigned int *frames) argument
708 pcm_mmap_commit(struct pcm *pcm, unsigned int offset, unsigned int frames) argument
785 int err = 0, frames, avail; local
[all...]
/external/quake/quake/src/WinQuake/
H A Dcl_demo.cpp335 int frames; local
341 frames = (host_framecount - cls.td_startframe) - 1;
345 LOGANDPRINT(("%i frames %5.3f seconds %5.3f fps\n", frames, time, frames/time));
346 if (frames > 0)
349 LOGANDPRINT(("Average: %5.1f ms\n", (time / frames) * 1000.0));

Completed in 586 milliseconds

123456