Searched defs:source (Results 176 - 200 of 1325) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/platform/chromium/
H A DDataTransferItemChromium.cpp4 * Redistribution and use in source and binary forms, with or without
8 * * Redistributions of source code must retain the above copyright
60 DataTransferItemChromium::DataTransferItemChromium(PassRefPtr<Clipboard> owner, ScriptExecutionContext* context, DataSource source, const String& kind, const String& type, const String& data) argument
63 , m_source(source)
/external/webkit/Source/WebCore/platform/text/
H A DBidiContext.h47 BidiEmbeddingSource source() const { return static_cast<BidiEmbeddingSource>(m_source); } function in class:WebCore::BidiContext
51 BidiContext(unsigned char level, WTF::Unicode::Direction direction, bool override, BidiEmbeddingSource source, BidiContext* parent) argument
55 , m_source(source)
/external/webkit/Source/WebCore/storage/
H A DIDBCursor.cpp4 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
42 PassRefPtr<IDBCursor> IDBCursor::create(PassRefPtr<IDBCursorBackendInterface> backend, IDBRequest* request, IDBAny* source, IDBTransaction* transaction) argument
44 return adoptRef(new IDBCursor(backend, request, source, transaction));
47 IDBCursor::IDBCursor(PassRefPtr<IDBCursorBackendInterface> backend, IDBRequest* request, IDBAny* source, IDBTransaction* transaction) argument
50 , m_source(source)
83 IDBAny* IDBCursor::source() const function in class:WebCore::IDBCursor
/external/webkit/Source/WebCore/svg/
H A DSVGPathParser.h43 void setCurrentSource(SVGPathSource* source) { m_source = source; } argument
/external/webkit/Source/WebCore/webaudio/
H A DBiquadProcessor.cpp4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
91 void BiquadProcessor::process(AudioBus* source, AudioBus* destination, size_t framesToProcess) argument
120 m_kernels[i]->process(source->channel(i)->data(), destination->channel(i)->data(), framesToProcess);
/external/webkit/Source/WebKit/chromium/src/
H A DWebImageCG.cpp4 * Redistribution and use in source and binary forms, with or without
8 * * Redistributions of source code must retain the above copyright
52 ImageSource source; local
53 source.setData(PassRefPtr<SharedBuffer>(data).get(), true);
54 if (!source.isSizeAvailable())
60 const size_t frameCount = source.frameCount();
64 const IntSize frameSize = source.frameSizeAtIndex(i);
79 RetainPtr<CGImageRef> frame(AdoptCF, source.createFrameAtIndex(index));
H A DWebImageSkia.cpp4 * Redistribution and use in source and binary forms, with or without
8 * * Redistributions of source code must retain the above copyright
51 ImageSource source; local
52 source.setData(PassRefPtr<SharedBuffer>(data).get(), true);
53 if (!source.isSizeAvailable())
59 const size_t frameCount = source.frameCount();
63 const IntSize frameSize = source.frameSizeAtIndex(i);
79 OwnPtr<NativeImageSkia> frame(source.createFrameAtIndex(index));
/external/zlib/src/examples/
H A Dzpipe.c30 /* Compress from file source to file dest until EOF on source.
36 int def(FILE *source, FILE *dest, int level) argument
54 strm.avail_in = fread(in, 1, CHUNK, source);
55 if (ferror(source)) {
59 flush = feof(source) ? Z_FINISH : Z_NO_FLUSH;
63 compression if all of source has been read in */
86 /* Decompress from file source to file dest until stream ends or EOF.
92 int inf(FILE *source, FILE *dest) argument
112 strm.avail_in = fread(in, 1, CHUNK, source);
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DProcessorInclude.java198 Source source = null;
212 source = handler.peekSourceFromURIResolver();
214 if (null != source && source instanceof DOMSource)
216 Node node = ((DOMSource)source).getNode();
221 // from either the source.getSystemId(), if non-null
247 if(null == source)
252 source = new StreamSource(absURL);
256 source = processSource(handler, source);
338 processSource(StylesheetHandler handler, Source source) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DDOM2Helper.java119 * source (a character stream, a byte stream, or a URI).</p>
125 * different input source.</p>
127 * @param source The input source for the top-level of the
133 public void parse(InputSource source) throws TransformerException argument
173 setDocument(parser.parse(source));
/external/apache-xml/src/main/java/org/apache/xpath/
H A DSourceTreeManager.java40 * This class bottlenecks all management of source trees. The methods
41 * in this class should allow easy garbage collection of source
42 * trees (not yet!), and should centralize parsing for those source trees.
59 /** The TrAX URI resolver used to obtain source trees. */
123 Source source = null;
127 source = m_uriResolver.resolve(urlString, base);
130 if (null == source)
134 source = new StreamSource(uri);
137 return source;
163 * Put the source tre
169 putDocumentInCache(int n, Source source) argument
196 getNode(Source source) argument
272 getSourceTree(Source source, SourceLocator locator, XPathContext xctxt) argument
300 parseToNode(Source source, SourceLocator locator, XPathContext xctxt) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/jaxp/
H A DXPathExpressionImpl.java255 *<p>If <code>source</code> or <code>returnType</code> is <code>null</code>,
258 * @param source The <code>InputSource</code> of the document to evaluate
269 * @throws NullPointerException If <code>source</code> or
272 public Object evaluate(InputSource source, QName returnType) argument
274 if ( ( source == null ) || ( returnType == null ) ) {
295 Document document = db.parse( source );
306 * <p>This method calls {@link #evaluate(InputSource source, QName returnType)} with a <code>returnType</code> of
313 * <p>If <code>source</code> is <code>null</code>, then a <code>NullPointerException</code> is thrown.</p>
315 * @param source The <code>InputSource</code> of the document to evaluate over.
321 * @throws NullPointerException If <code>source</cod
323 evaluate(InputSource source) argument
[all...]
/external/chromium/chrome/browser/
H A Dalternate_nav_url_fetcher.cc2 // Use of this source code is governed by a BSD-style license that can be
36 const NotificationSource& source,
45 controller_ == Source<NavigationController>(source).ptr()) {
48 controller_ = Source<NavigationController>(source).ptr();
90 const URLFetcher* source,
96 DCHECK_EQ(fetcher_.get(), source);
35 Observe(NotificationType type, const NotificationSource& source, const NotificationDetails& details) argument
89 OnURLFetchComplete( const URLFetcher* source, const GURL& url, const net::URLRequestStatus& status, int response_code, const ResponseCookies& cookies, const std::string& data) argument
H A Dbackground_page_tracker_unittest.cc2 // Use of this source code is governed by a BSD-style license that can be
92 const NotificationSource& source,
91 Observe(NotificationType type, const NotificationSource& source, const NotificationDetails& details) argument
/external/chromium/chrome/browser/automation/
H A Dautomation_resource_tracker.h2 // Use of this source code is governed by a BSD-style license that can be
124 const NotificationSource& source,
127 Source<typename AutomationResourceTraits<T>::ValueType>(source).ptr();
123 Observe(NotificationType type, const NotificationSource& source, const NotificationDetails& details) argument
H A Dautomation_tab_helper_browsertest.cc2 // Use of this source code is governed by a BSD-style license that can be
38 const NotificationSource& source,
41 void Register(NotificationType type, const NotificationSource& source) { argument
42 registrar_.Add(this, type, source);
/external/chromium/chrome/browser/chromeos/
H A Dchoose_mobile_network_dialog.cc2 // Use of this source code is governed by a BSD-style license that can be
90 void ChooseMobileNetworkDialog::OnCloseContents(TabContents* source, argument
/external/chromium/chrome/browser/chromeos/login/
H A Dhtml_page_screen.cc2 // Use of this source code is governed by a BSD-style license that can be
70 void HTMLPageScreen::LoadingStateChanged(TabContents* source) { argument
71 std::string url = source->GetURL().spec();
73 source->Stop();
81 void HTMLPageScreen::NavigationStateChanged(const TabContents* source, argument
H A Dmessage_bubble.cc2 // Use of this source code is governed by a BSD-style license that can be
97 void MessageBubble::LinkActivated(views::Link* source, int event_flags) { argument
98 if (source == help_link_) {
H A Duser_image_screen.cc2 // Use of this source code is governed by a BSD-style license that can be
117 const NotificationSource& source,
116 Observe(NotificationType type, const NotificationSource& source, const NotificationDetails& details) argument
H A Dweb_page_screen.h2 // Use of this source code is governed by a BSD-style license that can be
28 virtual void OpenURLFromTab(TabContents* source, argument
32 virtual void NavigationStateChanged(const TabContents* source,
34 virtual void AddNewContents(TabContents* source, argument
41 virtual void LoadingStateChanged(TabContents* source) = 0;
42 virtual void CloseContents(TabContents* source) {} argument
43 virtual bool IsPopup(TabContents* source) { return false; } argument
44 virtual void UpdateTargetURL(TabContents* source, const GURL& url) {} argument
50 virtual void MoveContents(TabContents* source, const gfx::Rect& pos) {} argument
/external/chromium/chrome/browser/chromeos/status/
H A Dpower_menu_button.cc2 // Use of this source code is governed by a BSD-style license that can be
103 void PowerMenuButton::RunMenu(views::View* source, const gfx::Point& pt) { argument
/external/chromium/chrome/browser/debugger/
H A Ddevtools_window.h2 // Use of this source code is governed by a BSD-style license that can be
63 const NotificationSource& source,
74 virtual void OpenURLFromTab(TabContents* source,
79 virtual void NavigationStateChanged(const TabContents* source, argument
81 virtual void AddNewContents(TabContents* source,
88 virtual void LoadingStateChanged(TabContents* source) {} argument
89 virtual void CloseContents(TabContents* source) {} argument
90 virtual void MoveContents(TabContents* source, const gfx::Rect& pos) {} argument
91 virtual bool CanReloadContents(TabContents* source) const;
92 virtual void UpdateTargetURL(TabContents* source, cons argument
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextension_icon_manager.cc2 // Use of this source code is governed by a BSD-style license that can be
25 static SkBitmap ApplyPadding(const SkBitmap& source, argument
28 new gfx::CanvasSkia(source.width() + padding.width(),
29 source.height() + padding.height(), false));
31 source,
32 0, 0, source.width(), source.height(),
33 padding.left(), padding.top(), source.width(), source.height(),
106 SkBitmap ExtensionIconManager::ApplyTransforms(const SkBitmap& source) { argument
[all...]
H A Dextension_tab_id_map.cc2 // Use of this source code is governed by a BSD-style license that can be
33 const NotificationSource& source,
54 NotificationType type, const NotificationSource& source,
58 TabContents* contents = Source<TabContents>(source).ptr();
74 Source<NavigationController>(source).ptr();
87 RenderViewHost* host = Source<RenderViewHost>(source).ptr();
53 Observe( NotificationType type, const NotificationSource& source, const NotificationDetails& details) argument

Completed in 929 milliseconds

1234567891011>>