Searched defs:application (Results 1 - 25 of 50) sorted by relevance

12

/external/chromium_org/native_client_sdk/src/gonacl_appengine/
H A Dgonacl.py6 application = webapp2.WSGIApplication([ variable
/external/chromium_org/chrome/android/shell/java/src/org/chromium/chrome/shell/sync/
H A DChromeShellSyncAdapter.java14 public ChromeShellSyncAdapter(Context appContext, Application application) { argument
15 super(appContext, application);
H A DChromeShellSyncAdapterService.java16 Context context, Application application) {
15 createChromiumSyncAdapter( Context context, Application application) argument
/external/chromium_org/chrome/test/ispy/server/
H A Dapp.py17 application = webapp2.WSGIApplication( variable
/external/chromium_org/mojo/services/test_service/
H A Dtest_time_service_impl.cc6 #include "mojo/public/cpp/application/application_connection.h"
14 TestTimeServiceImpl::TestTimeServiceImpl(ApplicationConnection* application) argument
15 : application_(application) {
H A Dtest_service_impl.cc10 #include "mojo/public/cpp/application/application_connection.h"
19 TestServiceApplication* application)
20 : application_(application), connection_(connection) {
18 TestServiceImpl(ApplicationConnection* connection, TestServiceApplication* application) argument
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/sync/
H A DChromiumSyncAdapterService.java35 Application application);
34 createChromiumSyncAdapter(Context applicationContext, Application application) argument
H A DChromiumSyncAdapter.java46 public ChromiumSyncAdapter(Context context, Application application) { argument
48 mApplication = application;
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/
H A Dmain.py150 application = webapp.WSGIApplication([ variable in class:MainHandler
153 util.run_wsgi_app(application)
/external/chromium_org/tools/deep_memory_profiler/visualizer/
H A Dapp.py95 application = webapp2.WSGIApplication([ variable
/external/chromium_org/tools/oopif/
H A Diframe_server.py214 def application(environ, start_response): function
222 server = pywsgi.WSGIServer(('', 8090), application)
/external/chromium_org/third_party/webrtc/base/
H A Dpathutils.h111 inline void SetApplicationName(const std::string& application) { argument
112 Filesystem::SetApplicationName(application);
117 inline void GetApplicationName(std::string* application) { argument
118 Filesystem::GetApplicationName(application);
H A Dfileutils.h222 // Returns the path to the running application.
227 // Get a folder that is unique to the current application, which is suitable
232 // Get a temporary folder that is unique to the current user and application.
255 void SetApplicationName(const std::string& application) { argument
256 application_name_ = application;
258 void GetApplicationName(std::string* application) { argument
259 ASSERT(NULL != application);
260 *application = application_name_;
402 static void SetApplicationName(const std::string& application) { argument
403 EnsureDefaultFilesystem()->SetApplicationName(application);
406 GetApplicationName(std::string* application) argument
[all...]
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/sync/
H A DChromiumSyncAdapterTest.java37 public TestChromiumSyncAdapter(Context context, Application application) { argument
38 super(context, application);
/external/chromium_org/base/android/java/src/org/chromium/base/
H A DApplicationStatus.java60 /** A lazily initialized listener that forwards application state changes to native. */
87 * Called when the application's state changes.
88 * @param newState The application state.
108 * Initializes the activity status for a specified application.
110 * @param application The application whose status you wish to monitor.
112 public static void initialize(BaseChromiumApplication application) { argument
113 sApplication = application;
115 application.registerWindowFocusChangedListener(
131 application
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.app_1.3.1.R36x_v20100803.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/chrome/browser/background/
H A Dbackground_application_list_model.cc73 // Background application representation, private to the
212 Application* application = FindApplication(extension); local
213 if (!application) {
217 LOG(ERROR) << "Background application limit of " << IDC_MinimumLabelValue
221 application = new Application(this, extension);
222 applications_[extension->id()] = application;
224 application->RequestIcon(extension_misc::EXTENSION_ICON_BITTY);
261 const Application* application = FindApplication(extension); local
262 if (application)
263 return application
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/opus/
H A Dopus_interface.c40 /* Default to VoIP application for mono, and AUDIO for stereo. */
41 int application = (channels == 1) ? OPUS_APPLICATION_VOIP : local
44 state->encoder = opus_encoder_create(48000, channels, application,
/external/robolectric/src/main/java/com/xtremelabs/robolectric/
H A DRobolectric.java79 public static Application application; field in class:Robolectric
113 * either by a third party library or application code which need new shadow methods to be written. Generates
367 Robolectric.application = new Application();
1249 return shadowOf(Robolectric.application);
/external/chromium_org/mojo/examples/window_manager/
H A Dwindow_manager.cc7 #include "mojo/application/application_runner_chromium.h"
12 #include "mojo/public/cpp/application/application_connection.h"
13 #include "mojo/public/cpp/application/application_delegate.h"
14 #include "mojo/public/cpp/application/application_impl.h"
15 #include "mojo/public/cpp/application/interface_factory_impl.h"
16 #include "mojo/public/cpp/application/service_provider_impl.h"
96 void Init(ApplicationImpl* application, argument
105 application->ConnectToService("mojo:mojo_keyboard", &keyboard_service_);
/external/chromium_org/third_party/opus/src/src/
H A Dopus_demo.c47 fprintf(stderr, "Usage: %s [-e] <application> <sampling rate (Hz)> <channels (1/2)> "
200 static OpusEncoder *ms_opus_encoder_create(opus_int32 Fs, int channels, int application, int *error)
204 return (OpusEncoder *)opus_multistream_surround_encoder_create(Fs, channels, 1, &streams, &coupled_streams, mapping, application, error);
244 int application=OPUS_APPLICATION_AUDIO; local
299 application = OPUS_APPLICATION_VOIP;
301 application = OPUS_APPLICATION_RESTRICTED_LOWDELAY;
303 fprintf(stderr, "unknown application: %s\n", argv[args]);
526 enc = opus_encoder_create(sampling_rate, channels, application, &err);
H A Dopus_multistream_encoder.c75 int application; member in struct:OpusMSEncoder
401 int application,
421 st->application = application;
433 ret = opus_encoder_init((OpusEncoder*)ptr, Fs, 2, application);
441 ret = opus_encoder_init((OpusEncoder*)ptr, Fs, 1, application);
463 int application
466 return opus_multistream_encoder_init_impl(st, Fs, channels, streams, coupled_streams, mapping, application, 0);
477 int application
517 mapping, application, channel
394 opus_multistream_encoder_init_impl( OpusMSEncoder *st, opus_int32 Fs, int channels, int streams, int coupled_streams, const unsigned char *mapping, int application, int surround ) argument
520 opus_multistream_encoder_create( opus_int32 Fs, int channels, int streams, int coupled_streams, const unsigned char *mapping, int application, int *error ) argument
557 opus_multistream_surround_encoder_create( opus_int32 Fs, int channels, int mapping_family, int *streams, int *coupled_streams, unsigned char *mapping, int application, int *error ) argument
[all...]
/external/kernel-headers/original/uapi/linux/
H A Dhiddev.h98 __u32 application; /* application usage for this field */ member in struct:hiddev_field_info
/external/libopus/src/
H A Dopus_demo.c47 fprintf(stderr, "Usage: %s [-e] <application> <sampling rate (Hz)> <channels (1/2)> "
200 static OpusEncoder *ms_opus_encoder_create(opus_int32 Fs, int channels, int application, int *error)
204 return (OpusEncoder *)opus_multistream_surround_encoder_create(Fs, channels, 1, &streams, &coupled_streams, mapping, application, error);
244 int application=OPUS_APPLICATION_AUDIO; local
299 application = OPUS_APPLICATION_VOIP;
301 application = OPUS_APPLICATION_RESTRICTED_LOWDELAY;
303 fprintf(stderr, "unknown application: %s\n", argv[args]);
526 enc = opus_encoder_create(sampling_rate, channels, application, &err);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowApplication.java102 * @param application application
104 * @return the application
107 public static Application bind(Application application, ResourceLoader resourceLoader) { argument
108 ShadowApplication shadowApplication = shadowOf(application);
112 return application;

Completed in 1374 milliseconds

12