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

123

/external/dagger2/examples/android-activity-graphs/src/main/java/com/example/dagger/activitygraphs/
H A DDemoApplicationModule.java32 private final Application application; field in class:DemoApplicationModule
34 public DemoApplicationModule(Application application) { argument
35 this.application = application;
39 * Expose the application to the graph.
41 @Provides @Singleton Application application() { method in class:DemoApplicationModule
42 return application;
46 return (LocationManager) application.getSystemService(LOCATION_SERVICE);
H A DApplicationComponent.java24 * A component whose lifetime is the life of the application.
26 @Singleton // Constraints this component to one-per-application or unscoped bindings.
30 void inject(DemoApplication application); argument
33 Application application(); method in interface:ApplicationComponent
/external/dagger2/examples/android-simple/src/main/java/com/example/dagger/simple/
H A DAndroidModule.java32 private final DemoApplication application; field in class:AndroidModule
34 public AndroidModule(DemoApplication application) { argument
35 this.application = application;
39 * Allow the application context to be injected but require that it be annotated with
43 return application;
47 return (LocationManager) application.getSystemService(LOCATION_SERVICE);
H A DDemoApplication.java32 void inject(DemoApplication application); argument
/external/libbrillo/brillo/
H A Dmime_utils.h21 BRILLO_EXPORT extern const char kApplication[]; // application
51 namespace application { namespace in namespace:brillo::mime
52 // Common application MIME types
53 // application/octet-stream
55 // application/json
57 // application/x-www-form-urlencoded
59 // application/x-protobuf
61 } // namespace application
/external/webrtc/webrtc/modules/audio_coding/codecs/
H A Daudio_encoder.cc48 bool AudioEncoder::SetApplication(Application application) { argument
/external/webrtc/webrtc/base/
H A Dpathutils.h113 inline void SetApplicationName(const std::string& application) { argument
114 Filesystem::SetApplicationName(application);
119 inline void GetApplicationName(std::string* application) { argument
120 Filesystem::GetApplicationName(application);
H A Dfileutils.h218 // Returns the path to the running application.
223 // Get a folder that is unique to the current application, which is suitable
228 // Get a temporary folder that is unique to the current user and application.
251 void SetApplicationName(const std::string& application) { argument
252 application_name_ = application;
254 void GetApplicationName(std::string* application) { argument
255 ASSERT(NULL != application);
256 *application = application_name_;
398 static void SetApplicationName(const std::string& application) { argument
399 EnsureDefaultFilesystem()->SetApplicationName(application);
402 GetApplicationName(std::string* application) argument
[all...]
/external/webrtc/webrtc/modules/audio_coding/codecs/opus/
H A Daudio_encoder_opus.h36 ApplicationMode application = kVoip; member in struct:webrtc::final::Config
77 bool SetApplication(Application application) override;
84 ApplicationMode application() const { return config_.application; } function in class:webrtc::final
H A Daudio_encoder_opus.cc32 config.application = config.num_channels == 1 ? AudioEncoderOpus::kVoip
179 bool AudioEncoderOpus::SetApplication(Application application) { argument
181 switch (application) {
183 conf.application = AudioEncoderOpus::kVoip;
186 conf.application = AudioEncoderOpus::kAudio;
234 config.application));
H A Dopus_interface.c46 int32_t application) {
51 switch (application) {
44 WebRtcOpus_EncoderCreate(OpusEncInst** inst, size_t channels, int32_t application) argument
/external/libxml2/example/
H A Dgjobread.c98 xmlChar *application; member in struct:job
136 ret->application =
161 if (cur->application != NULL) printf("application: %s\n", cur->application);
/external/webrtc/webrtc/modules/audio_coding/codecs/red/
H A Daudio_encoder_copy_red.cc107 bool AudioEncoderCopyRed::SetApplication(Application application) { argument
108 return speech_encoder_->SetApplication(application);
/external/libmojo/base/android/java/src/org/chromium/base/
H A DApplicationStatus.java62 /** A lazily initialized listener that forwards application state changes to native. */
89 * Called when the application's state changes.
90 * @param newState The application state.
110 * Initializes the activity status for a specified application.
112 * @param application The application whose status you wish to monitor.
114 public static void initialize(BaseChromiumApplication application) { argument
115 application.registerWindowFocusChangedListener(
131 application.registerActivityLifecycleCallbacks(new ActivityLifecycleCallbacks() {
190 // Invalidate the cached application stat
[all...]
/external/robolectric/v3/
H A Drobolectric-annotations-3.1-SNAPSHOT.jar ... .Class constants () public abstract java.lang.Class application () public abstract java.lang.String packageName () public abstract ...
/external/skia/tools/viewer/sk_app/android/
H A Dsurface_glue_android.cpp212 Java_org_skia_viewer_ViewerApplication_createNativeApp(JNIEnv* env, jobject application) { argument
213 SkiaAndroidApp* skiaAndroidApp = new SkiaAndroidApp(env, application);
218 JNIEnv* env, jobject application, jlong handle) {
217 Java_org_skia_viewer_ViewerApplication_destroyNativeApp( JNIEnv* env, jobject application, jlong handle) argument
/external/webrtc/webrtc/modules/audio_coding/codecs/cng/
H A Daudio_encoder_cng.cc187 bool AudioEncoderCng::SetApplication(Application application) { argument
188 return speech_encoder_->SetApplication(application);
/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/robolectric/v1/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/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)> "
51 fprintf(stderr, "application: voip | audio | restricted-lowdelay\n" );
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]);
523 enc = opus_encoder_create(sampling_rate, channels, application, &err);
H A Dopus_multistream_encoder.c86 int application; member in struct:OpusMSEncoder
434 int application,
455 st->application = application;
467 ret = opus_encoder_init((OpusEncoder*)ptr, Fs, 2, application);
475 ret = opus_encoder_init((OpusEncoder*)ptr, Fs, 1, application);
497 int application
502 application, MAPPING_TYPE_NONE);
513 int application
577 application, mapping_typ
427 opus_multistream_encoder_init_impl( OpusMSEncoder *st, opus_int32 Fs, int channels, int streams, int coupled_streams, const unsigned char *mapping, int application, MappingType mapping_type ) argument
580 opus_multistream_encoder_create( opus_int32 Fs, int channels, int streams, int coupled_streams, const unsigned char *mapping, int application, int *error ) argument
617 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/robolectric/v1/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;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/67/1/.cp/ant_tasks/
H A Ddirector-ant.jar ... .internal.p2.director.app.DirectorApplication application Exception e public void addConfiguredIu (org.eclipse.equinox ...
/external/webrtc/webrtc/modules/audio_coding/acm2/
H A Daudio_coding_module_impl.cc742 int AudioCodingModuleImpl::SetOpusApplication(OpusApplicationMode application) { argument
748 switch (application) {

Completed in 2598 milliseconds

123