/external/bluetooth/bluez/sbc/ |
sbc.c | 53 /* This structure contains an unpacked SBC frame. 82 /* raw integer subband samples in the frame */ 159 * Takes a pointer to the frame in question, a pointer to the bits array and 162 static void sbc_calculate_bits(const struct sbc_frame *frame, int (*bits)[8]) 164 uint8_t sf = frame->frequency; 166 if (frame->mode == MONO || frame->mode == DUAL_CHANNEL) { 170 for (ch = 0; ch < frame->channels; ch++) { 172 if (frame->allocation == SNR) { 173 for (sb = 0; sb < frame->subbands; sb++) 944 struct SBC_ALIGNED sbc_frame frame; member in struct:sbc_priv [all...] |
/external/webkit/WebKit/gtk/webkit/ |
webkitwebframe.h | 100 webkit_web_frame_get_web_view (WebKitWebFrame *frame); 103 webkit_web_frame_get_name (WebKitWebFrame *frame); 106 webkit_web_frame_get_title (WebKitWebFrame *frame); 109 webkit_web_frame_get_uri (WebKitWebFrame *frame); 112 webkit_web_frame_get_parent (WebKitWebFrame *frame); 115 webkit_web_frame_load_uri (WebKitWebFrame *frame, 119 webkit_web_frame_load_string (WebKitWebFrame *frame, 126 webkit_web_frame_load_alternate_string (WebKitWebFrame *frame, 132 webkit_web_frame_load_request (WebKitWebFrame *frame, 136 webkit_web_frame_stop_loading (WebKitWebFrame *frame); [all...] |
/external/webkit/WebCore/page/mac/ |
PageMac.cpp | 31 #include "Frame.h" 47 for (Frame* frame = m_mainFrame.get(); frame; frame = frame->tree()->traverseNext()) { 48 if (DocumentLoader* documentLoader = frame->loader()->documentLoader()) 50 if (DocumentLoader* documentLoader = frame->loader()->provisionalDocumentLoader()) 68 for (Frame* frame = m_mainFrame.get(); frame; frame = frame->tree()->traverseNext()) [all...] |
/external/webkit/WebCore/storage/ |
StorageEventDispatcher.cpp | 33 #include "Frame.h" 41 void StorageEventDispatcher::dispatch(const String& key, const String& oldValue, const String& newValue, StorageType storageType, SecurityOrigin* securityOrigin, Frame* sourceFrame) 47 // 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 49 Vector<RefPtr<Frame> > frames; 52 for (Frame* frame = page->mainFrame(); frame; frame = frame->tree()->traverseNext()) [all...] |
/external/webkit/WebKitTools/DumpRenderTree/mac/ |
FrameLoadDelegate.mm | 82 return [NSString stringWithFormat:@"main frame \"%@\"", name]; 84 return @"main frame"; 87 return [NSString stringWithFormat:@"frame \"%@\"", name]; 89 return @"frame (anonymous)"; 143 - (void)webView:(WebView *)sender didStartProvisionalLoadForFrame:(WebFrame *)frame 146 NSString *string = [NSString stringWithFormat:@"%@ - didStartProvisionalLoadForFrame", [frame _drt_descriptionSuitableForTestResult]]; 150 ASSERT([frame provisionalDataSource]); 154 topLoadingFrame = frame; 157 NSString *string = [NSString stringWithFormat:@"%@ - stopping load in didStartProvisionalLoadForFrame callback", [frame _drt_descriptionSuitableForTestResult]]; 159 [frame stopLoading] [all...] |
/external/webkit/WebCore/history/ |
CachedFrame.cpp | 34 #include "Frame.h" 61 CachedFrameBase::CachedFrameBase(Frame* frame) 62 : m_document(frame->document()) 63 , m_documentLoader(frame->loader()->documentLoader()) 64 , m_view(frame->view()) 65 , m_mousePressNode(frame->eventHandler()->mousePressNode()) 66 , m_url(frame->loader()->url()) 67 , m_isMainFrame(!frame->tree()->parent()) 84 Frame* frame = m_view->frame() local [all...] |
/external/jsr305/javadoc/ |
index.html | 25 <FRAME src="overview-frame.html" name="packageListFrame" title="All Packages"> 26 <FRAME src="allclasses-frame.html" name="packageFrame" title="All classes and interfaces (except non-static nested types)"> 28 <FRAME src="overview-summary.html" name="classFrame" title="Package, class and interface descriptions" scrolling="yes"> 31 Frame Alert</H2> 34 This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. 36 Link to<A HREF="overview-summary.html">Non-frame version.</A>
|
/external/webkit/LayoutTests/http/tests/appcache/ |
top-frame-1-expected.txt | 1 Test that a subframe without manifest doesn't pick an application cache from parent frame (as long as no relevant cache contains its resource). 3 Techically, the check is that iframe subresources that are not in top frame cache are loaded anyway, so it can also pass if the UA fails to reject loads for cache misses.
|
remove-cache-expected.txt | 3 Frame 1: Manifest is still available, so a new master resource is added to the cache. 4 Frame 2: Manifest loading results in 404 response, so the cache group becomes obsolete, and an obsolete event is dispatched (because the document in frame was associated with a cache in the group). 5 Frame 3: Manifest is still 404 - the document is never associated with a cache. 6 Frame 4: Manifest is now available, so the document gets associated with a cache in a newly created group; the obsolete cache group is not affected.
|
/external/webkit/WebCore/page/ |
Page.cpp | 39 #include "Frame.h" 98 Vector<RefPtr<Frame> > frames; 103 for (Frame* frame = (*it)->mainFrame(); frame; frame = frame->tree()->traverseNext()) 104 frames.append(frame); 117 for (Frame* frame = (*it)->mainFrame(); frame; frame = frame->tree()->traverseNext() 471 Frame* frame = mainFrame(); local [all...] |
PageGroupLoadDeferrer.cpp | 24 #include "Frame.h" 46 for (Frame* frame = otherPage->mainFrame(); frame; frame = frame->tree()->traverseNext()) 47 frame->document()->suspendActiveDOMObjects(); 63 for (Frame* frame = page->mainFrame(); frame; frame = frame->tree()->traverseNext() [all...] |
/external/webkit/WebCore/manual-tests/ |
test-iframes-loading-the-same-resource.html | 4 setTimeout('document.getElementById("frame2").src = "resources/test-frame.html";', 100); 8 setTimeout('document.getElementById("frame2").src = "resources/test-frame.html?'+loadCount+'";', 100); 15 To perform this test attempt to drag one of the apple images in the left frame while the right frame is doing loads. This test is not entirely deterministic so it should be attempted a number of times. <br /> 16 <iframe id="frame1" src="resources/test-frame.html"></iframe>
|
/external/webkit/WebKit/mac/WebView/ |
WebFrameLoadDelegate.h | 40 When a data source of a frame starts to load, the data source is considered "provisional". 42 so the contents of the frame will not be lost if the new data source fails to successfully load. 48 @abstract Notifies the delegate that the provisional load of a frame has started 50 @param frame The frame for which the provisional load has started 51 @discussion This method is called after the provisional data source of a frame 54 - (void)webView:(WebView *)sender didStartProvisionalLoadForFrame:(WebFrame *)frame; 60 @param frame The frame for which the redirect occurred 62 - (void)webView:(WebView *)sender didReceiveServerRedirectForProvisionalLoadForFrame:(WebFrame *)frame; [all...] |
/external/webkit/WebCore/bindings/v8/custom/ |
V8LocationCustom.cpp | 36 #include "Frame.h" 58 // Since JSC and V8 have different mechanisms for getting at the calling frame, 69 Frame* frame = imp->frame(); local 70 if (!frame) 73 KURL url = frame->loader()->url(); 82 navigateIfAllowed(frame, url, false, false); 92 Frame* frame = imp->frame() local 112 Frame* frame = imp->frame(); local 128 Frame* frame = imp->frame(); local 149 Frame* frame = imp->frame(); local 166 Frame* frame = imp->frame(); local 183 Frame* frame = imp->frame(); local 200 Frame* frame = imp->frame(); local 273 Frame* frame = imp->frame(); local 288 Frame* frame = imp->frame(); local 309 Frame* frame = imp->frame(); local [all...] |
/external/webkit/WebKitTools/DumpRenderTree/win/ |
FrameLoadDelegate.h | 57 /* [in] */ IWebFrame *frame); 61 /* [in] */ IWebFrame *frame); 66 /* [in] */ IWebFrame *frame); 70 /* [in] */ IWebFrame *frame); 75 /* [in] */ IWebFrame *frame); 80 /* [in] */ IWebFrame *frame) { return E_NOTIMPL; } 84 /* [in] */ IWebFrame *frame); 93 /* [in] */ IWebFrame *frame) { return E_NOTIMPL; } 100 /* [in] */ IWebFrame *frame); 104 /* [in] */ IWebFrame *frame); [all...] |
/external/v8/src/ia32/ |
virtual-frame-ia32.h | 41 // The virtual frame is an abstraction of the physical stack frame. It 42 // encapsulates the parameters, frame-allocated locals, and the expression 49 // A utility class to introduce a scope where the virtual frame is 51 // generator's current frame, but no attempt is made to require it 58 cgen()->frame()->SpillAll(); 72 // An illegal index into the virtual frame. 75 // Construct an initial virtual frame on entry to a JS function. 78 // Construct a virtual frame as a clone of an existing one. 85 // Create a duplicate of an existing valid frame element [all...] |
/external/v8/src/x64/ |
virtual-frame-x64.h | 41 // The virtual frame is an abstraction of the physical stack frame. It 42 // encapsulates the parameters, frame-allocated locals, and the expression 49 // A utility class to introduce a scope where the virtual frame is 51 // generator's current frame, but no attempt is made to require it 58 cgen()->frame()->SpillAll(); 72 // An illegal index into the virtual frame. 75 // Construct an initial virtual frame on entry to a JS function. 78 // Construct a virtual frame as a clone of an existing one. 84 // Create a duplicate of an existing valid frame element [all...] |
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/ |
ElemContext.java | 24 * This class is a stack frame that consists of 36 * A stack frame will be pushed for "A" at depth 1, 38 * Then "B1" stackframe is popped. When the stack frame for "B2" is 94 /** The next element "stack frame". This value will only be 99 * because very few stack frame objects are ever created, they are 103 * as they are re-used. Only the reference to the current stack frame, which 108 /** The previous element "stack frame". */ 130 * Constructor to create the "stack frame" for a given element depth. 136 * @param previous The "stack frame" corresponding to the new 146 * Pop the current "stack frame" 167 ElemContext frame = this.m_next; local 201 ElemContext frame = this.m_next; local [all...] |
/external/webkit/WebKit/gtk/WebCoreSupport/ |
PasteboardHelperGtk.cpp | 25 #include "Frame.h" 49 GtkClipboard* PasteboardHelperGtk::getCurrentTarget(Frame* frame) const 51 WebKitWebView* webView = webkit_web_frame_get_web_view(kit(frame)); 54 return getPrimary(frame); 56 return getClipboard(frame); 59 GtkClipboard* PasteboardHelperGtk::getClipboard(Frame* frame) const 61 WebKitWebView* webView = webkit_web_frame_get_web_view(kit(frame)); 66 GtkClipboard* PasteboardHelperGtk::getPrimary(Frame* frame) cons 139 Frame* frame = corePage->focusController()->focusedOrMainFrame(); local [all...] |
/external/v8/src/ |
frames.h | 137 // Get the id of this stack frame. 140 // Checks if this frame includes any stack handlers. 143 // Get the type of this frame. 146 // Get the code associated with this frame. 171 // Compute the stack pointer for the calling frame. 182 // Compute the stack frame type for the given state. 189 // Fill in the state of the calling frame. 192 // Get the type and the state of the calling frame. 217 static EntryFrame* cast(StackFrame* frame) { 218 ASSERT(frame->is_entry()) 502 StackFrame* frame() const { function in class:v8::internal::BASE_EMBEDDED 603 StackFrame* frame() const { function in class:v8::internal::BASE_EMBEDDED [all...] |
/external/webkit/WebKit/android/wds/ |
DebugServer.h | 37 class Frame; 51 void addFrame(Frame* frame) { 52 m_frames.append(frame); 54 void removeFrame(Frame* frame) { 55 size_t i = m_frames.find(frame); 59 Frame* getFrame(unsigned idx) { 66 WTF::Vector<Frame*> m_frames;
|
/external/v8/src/arm/ |
virtual-frame-arm.h | 40 // The virtual frame is an abstraction of the physical stack frame. It 41 // encapsulates the parameters, frame-allocated locals, and the expression 48 // A utility class to introduce a scope where the virtual frame is 50 // generator's current frame, but no attempt is made to require it 58 // An illegal index into the virtual frame. 61 // Construct an initial virtual frame on entry to a JS function. 64 // Construct a virtual frame as a clone of an existing one. 70 // Create a duplicate of an existing valid frame element. 74 // The number of elements on the virtual frame [all...] |
/external/tcpdump/ |
fddi.h | 35 u_char fddi_fc; /* frame control */ 48 /* Useful values for fddi_fc (frame control) field */ 51 * FDDI Frame Control bits 55 #define FDDIFC_F 0x30 /* Frame format bits */ 59 * FDDI Frame Control values. (48-bit addressing only). 61 #define FDDIFC_VOID 0x40 /* Void frame */ 66 #define FDDIFC_MAC_BEACON 0xc2 /* MAC Beacon frame */ 67 #define FDDIFC_MAC_CLAIM 0xc3 /* MAC Claim frame */ 68 #define FDDIFC_LLC_ASYNC 0x50 /* Async. LLC frame */ 69 #define FDDIFC_LLC_SYNC 0xd0 /* Sync. LLC frame */ [all...] |
/external/v8/src/mips/ |
virtual-frame-mips.h | 42 // The virtual frame is an abstraction of the physical stack frame. It 43 // encapsulates the parameters, frame-allocated locals, and the expression 50 // A utility class to introduce a scope where the virtual frame is 52 // generator's current frame, but no attempt is made to require it 60 // An illegal index into the virtual frame. 63 // Construct an initial virtual frame on entry to a JS function. 66 // Construct a virtual frame as a clone of an existing one. 72 // Create a duplicate of an existing valid frame element. 75 // The number of elements on the virtual frame [all...] |
/external/webkit/WebCore/bindings/v8/ |
V8Utilities.cpp | 37 #include "Frame.h" 46 #include "Frame.h" 99 Frame* frame = V8Proxy::retrieveFrameForEnteredContext(); local 100 return frame && frame->script()->processingUserGesture(); 103 bool shouldAllowNavigation(Frame* frame) 105 Frame* callingFrame = V8Proxy::retrieveFrameForCallingContext(); 106 return callingFrame && callingFrame->loader()->shouldAllowNavigation(frame); 112 Frame* frame = V8Proxy::retrieveFrameForEnteredContext(); local [all...] |