Searched refs:provider (Results 276 - 300 of 414) sorted by relevance

<<11121314151617

/external/webkit/Source/JavaScriptCore/runtime/
H A DError.cpp121 intptr_t sourceID = source.provider()->asID();
122 const UString& sourceURL = source.provider()->url();
/external/webkit/Tools/DumpRenderTree/cg/
H A DImageDiffCG.cpp154 RetainPtr<CGDataProviderRef> provider(AdoptCF, CGDataProviderCreateWithData(0, diffBuffer, width * height, releaseMallocBuffer));
155 diffImage.adoptCF(CGImageCreate(width, height, 8, 8, width, diffColorspace, 0, provider.get(), 0, false, kCGRenderingIntentDefault));
/external/chromium/chrome/browser/automation/
H A Dautomation_provider_observers.cc1400 AutomationProvider* provider,
1403 : automation_provider_(provider->AsWeakPtr()),
1433 AutomationProvider* provider,
1436 : provider_(provider->AsWeakPtr()),
1487 AutomationProvider* provider,
1490 : provider_(provider->AsWeakPtr()),
1531 AutomationProvider* provider,
1534 : provider_(provider->AsWeakPtr()),
1551 AutomationProvider* provider,
1553 : provider_(provider
1399 AutomationProviderBookmarkModelObserver( AutomationProvider* provider, IPC::Message* reply_message, BookmarkModel* model) argument
1432 AutomationProviderDownloadItemObserver( AutomationProvider* provider, IPC::Message* reply_message, int downloads) argument
1486 AutomationProviderDownloadUpdatedObserver( AutomationProvider* provider, IPC::Message* reply_message, bool wait_for_open) argument
1530 AutomationProviderDownloadModelChangedObserver( AutomationProvider* provider, IPC::Message* reply_message, DownloadManager* download_manager) argument
1550 AutomationProviderSearchEngineObserver( AutomationProvider* provider, IPC::Message* reply_message) argument
1569 AutomationProviderHistoryObserver( AutomationProvider* provider, IPC::Message* reply_message) argument
1611 AutomationProviderImportSettingsObserver( AutomationProvider* provider, IPC::Message* reply_message) argument
1638 AutomationProviderGetPasswordsObserver( AutomationProvider* provider, IPC::Message* reply_message) argument
1686 AutomationProviderBrowsingDataObserver( AutomationProvider* provider, IPC::Message* reply_message) argument
2159 OnNotificationBalloonCountObserver( AutomationProvider* provider, IPC::Message* reply_message, BalloonCollection* collection, int count) argument
[all...]
H A Dautomation_provider_observers.h284 // Send |response| back to the provider's client.
402 // Sends a test result back to the provider's client, if there is a pending
403 // provider message and there is a result in the queue.
718 // whether authentication succeeded to the automation provider.
738 // whether authentication succeeded to the automation provider.
780 // network and returns the status to the automation provider.
803 // network and returns the status to the automation provider.
820 // network and returns the status to the automation provider.
840 AutomationProviderBookmarkModelObserver(AutomationProvider* provider,
879 // Allows the automation provider t
[all...]
/external/nist-sip/java/gov/nist/javax/sip/
H A DSipStackImpl.java158 * Default is <it>true</it>. This is also settable on a per-provider basis. This
1139 SipProviderImpl provider = new SipProviderImpl(this);
1141 provider.setListeningPoint(listeningPointImpl);
1142 listeningPointImpl.sipProvider = provider;
1143 this.sipProviders.add(provider);
1144 return provider;
1173 throw new NullPointerException("null provider arg");
1304 * get an event from a provider, the listener has to be registered with the
1305 * provider. The SipListener is application code.
/external/chromium/chrome/browser/autocomplete/
H A Dsearch_provider.cc51 // just to know whether the provider changed.
159 keyword_provider = NULL; // No use in querying the same provider twice.
187 match.provider = this;
299 // Request history for both the keyword and default provider.
422 const TemplateURL& provider,
424 const TemplateURLRef* const suggestions_url = provider.suggestions_url();
428 provider, text,
696 // provider with a type other than URL that don't autocomplete to a url) the
760 const TemplateURL& provider = is_keyword ? providers_.keyword_provider() :
822 const TemplateURLRef* const search_url = provider
421 CreateSuggestFetcher(int id, const TemplateURL& provider, const string16& text) argument
[all...]
H A Dautocomplete_unittest.cc33 // Autocomplete provider that provides known results. Note that this is
190 // Create both a keyword and search provider, and add them in that order.
216 // Send the controller input which exactly matches the keyword provider we
224 // ResetControllerWithKeywordAndSearchProviders() adds the keyword provider
225 // first, then the search provider. So if the default match is a keyword
226 // match, it will come from provider 0, otherwise from provider 1.
228 controller_->result().default_match()->provider);
246 // highest relevance matches should come from the second provider.
249 EXPECT_EQ(providers_[1], result_.default_match()->provider);
[all...]
H A Dsearch_provider.h5 // This file contains the Search autocomplete provider. This provider is
34 // Autocomplete provider for searches and suggestions from a search engine.
40 // Initially the provider creates a match that searches for the current input
42 // comes back, the provider creates and returns matches for the best
60 // This method also marks the search provider as no longer needing to wait for
78 // ID used in creating URLFetcher for default provider's suggest results.
81 // ID used in creating URLFetcher for keyword provider's suggest results.
89 // . The default provider. This corresponds to the user's default search
92 // . The keyword provider
[all...]
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
H A DCipherTest.java137 Provider provider = providers[i];
138 Cipher cipher = Cipher.getInstance("AES", provider.getName());
140 assertTrue("Cipher provider is not the same as that "
142 .equals(provider));
396 // FIXME Failed on BC provider
442 * @tests javax.crypto.Cipher#Cipher(CipherSpi cipherSpi, Provider provider,
456 fail("NullPointerException expected for 'null' provider");
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/provider/cert/
H A DX509CRLImplTest.java21 package org.apache.harmony.security.tests.provider.cert;
44 import org.apache.harmony.security.provider.cert.X509CRLImpl;
45 import org.apache.harmony.security.provider.cert.X509CertImpl;
/external/skia/src/ports/
H A DSkFontHost_mac_coretext.cpp1492 // Call must still manage its ownership of provider
1493 static SkTypeface* create_from_dataProvider(CGDataProviderRef provider) { argument
1494 CGFontRef cg = CGFontCreateWithDataProvider(provider);
1505 AutoCGDataProviderRelease(CGDataProviderRef provider) : fProvider(provider) {} argument
1513 CGDataProviderRef provider = SkCreateDataProviderFromStream(stream); local
1514 if (NULL == provider) {
1517 AutoCGDataProviderRelease ar(provider);
1518 return create_from_dataProvider(provider);
1522 CGDataProviderRef provider local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.metadata.generator_1.0.200.v20100503a.jar ... .provisional.p2.metadata.generator.EclipseInstallGeneratorInfoProvider provider java.io.File location private void initialize (org ...
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
H A DCertificateFactory1Test.java153 * Test for <code>getInstance(String type, String provider)</code> method
154 * Assertion: throws IllegalArgumentException when provider is null or empty
162 String provider = null;
165 CertificateFactory.getInstance(validValues[i], provider);
166 fail("IllegalArgumentException must be thrown when provider is null");
171 fail("IllegalArgumentException must be thrown when provider is empty");
178 * Test for <code>getInstance(String type, String provider)</code> method
200 invalidValues[i]).concat(" provider: ").concat(
208 * Test for <code>getInstance(String type, String provider)</code> method
209 * Assertion: returns CertificateFactory when type and provider hav
[all...]
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
H A DClientKeyExchangeTest.java18 package org.apache.harmony.xnet.provider.jsse;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dh/
H A DKeyAgreementSpi.java1 package org.bouncycastle.jcajce.provider.asymmetric.dh;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/dsa/
H A DDSASigner.java1 package org.bouncycastle.jcajce.provider.asymmetric.dsa;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/ec/
H A DEC5Util.java1 package org.bouncycastle.jcajce.provider.asymmetric.ec;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/util/
H A DBaseMac.java1 package org.bouncycastle.jcajce.provider.symmetric.util;
H A DBaseSecretKeyFactory.java1 package org.bouncycastle.jcajce.provider.symmetric.util;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/util/
H A DDigestFactory.java1 package org.bouncycastle.jcajce.provider.util;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DCertBlacklist.java17 package org.bouncycastle.jce.provider;
H A DJDKAlgorithmParameters.java1 package org.bouncycastle.jce.provider;
H A DJDKDSAPublicKey.java1 package org.bouncycastle.jce.provider;
/external/chromium/chrome/browser/debugger/
H A Ddevtools_http_protocol_handler.cc96 TabContentsProvider* provider) {
98 new DevToolsHttpProtocolHandler(ip, port, frontend_url, provider);
457 TabContentsProvider* provider)
461 tab_contents_provider_(provider) {
92 Start( const std::string& ip, int port, const std::string& frontend_url, TabContentsProvider* provider) argument
453 DevToolsHttpProtocolHandler( const std::string& ip, int port, const std::string& frontend_host, TabContentsProvider* provider) argument
/external/chromium/chrome/browser/ui/toolbar/
H A Dwrench_menu_model.h79 WrenchMenuModel(ui::AcceleratorProvider* provider, Browser* browser);

Completed in 486 milliseconds

<<11121314151617