Searched defs:context (Results 151 - 175 of 3832) sorted by relevance

1234567891011>>

/external/apache-http/src/org/apache/http/protocol/
H A DRequestUserAgent.java61 public void process(final HttpRequest request, final HttpContext context) argument
H A DResponseConnControl.java67 public void process(final HttpResponse response, final HttpContext context) argument
72 if (context == null) {
73 throw new IllegalArgumentException("HTTP context may not be null");
100 context.getAttribute(ExecutionContext.HTTP_REQUEST);
H A DResponseContent.java66 public void process(final HttpResponse response, final HttpContext context) argument
H A DResponseDate.java64 public void process(final HttpResponse response, final HttpContext context) argument
H A DResponseServer.java62 public void process(final HttpResponse response, final HttpContext context) argument
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTMAxisTraverser.java48 * By the nature of the stateless traversal, the context node can not be
55 * @param context The context node of this traversal. This is the point
59 public int first(int context) argument
61 return next(context, context);
65 * By the nature of the stateless traversal, the context node can not be
72 * @param context The context node of this traversal. This is the point
78 public int first(int context, in argument
97 next(int context, int current) argument
115 next(int context, int current, int extendedTypeID) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DPrefixResolver.java35 * the PrefixResolver holds its own namespace context, or is a namespace
36 * context itself.
41 * is undeclared in this context.
46 * Given a namespace, get the corresponding prefix, based on the context node.
49 * @param context The node context from which to look up the URI.
52 * is undeclared in this context.
54 String getNamespaceForPrefix(String prefix, org.w3c.dom.Node context); argument
67 * may not accurately reflect that context information.
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DAwAssets.java26 public static long[] openAsset(Context context, String fileName) { argument
29 AssetManager manager = context.getAssets();
H A DAwBrowserProcess.java44 * @param context The Android application context
46 public static void start(final Context context) { argument
54 BrowserStartupController.get(context).startBrowserProcessesSync(true);
/external/chromium_org/android_webview/native/
H A Daw_form_database.cc21 AwBrowserContext* context = AwContentBrowserClient::GetAwBrowserContext(); local
22 AwFormDatabaseService* service = context->GetFormDatabaseService();
/external/chromium_org/android_webview/test/shell/src/org/chromium/android_webview/shell/
H A DAwShellResourceProvider.java17 public static void registerResources(Context context) { argument
22 AwResource.setResources(context.getResources());
/external/chromium_org/ash/frame/
H A Dframe_util.cc17 gfx::Image GetAvatarImageForContext(content::BrowserContext* context) { argument
26 ->GetUserInfo(context)
/external/chromium_org/athena/extensions/
H A Dextensions_delegate.cc27 ExtensionsDelegate* ExtensionsDelegate::Get(content::BrowserContext* context) { argument
29 DCHECK_EQ(context, instance->GetBrowserContext());
/external/chromium_org/athena/extensions/shell/
H A Dextensions_delegate_impl.cc17 explicit ShellExtensionsDelegate(content::BrowserContext* context) argument
18 : context_(context),
20 extensions::ExtensionSystem::Get(context))) {
57 content::BrowserContext* context) {
58 new ShellExtensionsDelegate(context);
56 CreateExtensionsDelegateForShell( content::BrowserContext* context) argument
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DFileProviderHelper.java23 public Uri getContentUriFromFile(Context context, File file) { argument
24 return FileProvider.getUriForFile(context,
25 context.getPackageName() + API_AUTHORITY_SUFFIX, file);
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/printing/
H A DPrintingControllerFactory.java21 public static PrintingController create(Context context) { argument
23 String defaultJobTitle = context.getResources().getString(R.string.menu_print);
26 String errorText = context.getResources().getString(R.string.error_printing_failed);
/external/chromium_org/chrome/android/shell/java/src/org/chromium/chrome/shell/sync/
H A DChromeShellSyncAdapterService.java16 Context context, Application application) {
17 return new ChromeShellSyncAdapter(context, getApplication());
15 createChromiumSyncAdapter( Context context, Application application) argument
/external/chromium_org/chrome/browser/chromeos/extensions/
H A Dinput_method_event_router.cc19 content::BrowserContext* context)
20 : context_(context) {
18 ExtensionInputMethodEventRouter( content::BrowserContext* context) argument
H A Dmedia_player_api.cc13 MediaPlayerAPI::MediaPlayerAPI(content::BrowserContext* context) argument
14 : browser_context_(context) {}
20 MediaPlayerAPI* MediaPlayerAPI::Get(content::BrowserContext* context) { argument
21 return BrowserContextKeyedAPIFactory<MediaPlayerAPI>::Get(context);
H A Dmedia_player_event_router.cc14 static void BroadcastEvent(content::BrowserContext* context, argument
16 if (context && EventRouter::Get(context)) {
20 EventRouter::Get(context)->BroadcastEvent(event.Pass());
24 MediaPlayerEventRouter::MediaPlayerEventRouter(content::BrowserContext* context) argument
25 : browser_context_(context) {}
/external/chromium_org/chrome/browser/download/
H A Ddownload_service_factory.cc14 content::BrowserContext* context) {
16 GetInstance()->GetServiceForBrowserContext(context, true));
46 content::BrowserContext* context) const {
47 return chrome::GetBrowserContextOwnInstanceInIncognito(context);
13 GetForBrowserContext( content::BrowserContext* context) argument
/external/chromium_org/chrome/browser/extensions/api/socket/
H A Dsocket_api_unittest.cc19 KeyedService* ApiResourceManagerTestFactory(content::BrowserContext* context) { argument
22 return ApiResourceManager<Socket>::CreateApiResourceManagerForTest(context,
/external/chromium_org/chrome/browser/extensions/api/sockets_tcp_server/
H A Dsockets_tcp_server_api_unittest.cc22 content::BrowserContext* context) {
26 ResumableTCPSocket>::CreateApiResourceManagerForTest(context, id);
30 content::BrowserContext* context) {
34 ResumableTCPServerSocket>::CreateApiResourceManagerForTest(context, id);
21 ApiResourceManagerTestFactory( content::BrowserContext* context) argument
29 ApiResourceManagerTestServerFactory( content::BrowserContext* context) argument
/external/chromium_org/chrome/browser/extensions/api/sockets_udp/
H A Dsockets_udp_api_unittest.cc25 content::BrowserContext* context) {
29 ResumableUDPSocket>::CreateApiResourceManagerForTest(context, id);
24 ApiResourceManagerTestFactory( content::BrowserContext* context) argument
/external/chromium_org/chrome/browser/extensions/
H A Dinstall_tracker_factory.cc19 content::BrowserContext* context) {
21 GetInstance()->GetServiceForBrowserContext(context, true));
40 content::BrowserContext* context) const {
41 return new InstallTracker(context, ExtensionPrefs::Get(context));
45 content::BrowserContext* context) const {
48 return ExtensionsBrowserClient::Get()->GetOriginalContext(context);
18 GetForBrowserContext( content::BrowserContext* context) argument

Completed in 5794 milliseconds

1234567891011>>