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

1234

/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/python/cpython2/Lib/plat-mac/lib-scriptpackages/Explorer/
H A DStandard_Suite.py42 class application(aetools.ComponentItem): class in inherits:aetools.ComponentItem
43 """application - An application program """
50 application._superclassnames = []
51 application._privpropdict = {
54 application._privelemdict = {
61 'capp' : application,
/external/r8/src/main/java/com/android/tools/r8/graph/
H A DClassAndMemberPublicizer.java25 public static DexApplication run(DexApplication application) { argument
26 for (DexClass clazz : application.classes()) {
33 return application;
H A DProgramClassVisitor.java29 final DexApplication application; field in class:ProgramClassVisitor
32 protected ProgramClassVisitor(DexApplication application) { argument
33 this.application = application;
40 DexClass clazz = application.programDefinitionFor(type);
72 for (DexProgramClass clazz : application.classes()) {
79 * not present in the application.
84 * Called for each class defined in the application.
/external/r8/src/main/java/com/android/tools/r8/optimize/
H A DVisibilityBridgeRemover.java22 private final DexApplication application; field in class:VisibilityBridgeRemover
25 public VisibilityBridgeRemover(AppInfoWithSubtyping appInfo, DexApplication application) { argument
27 this.application = application;
85 return application;
/external/r8/src/main/java/com/android/tools/r8/shaking/
H A DDiscardedChecker.java17 private final DexApplication application; field in class:DiscardedChecker
20 public DiscardedChecker(RootSet rootSet, DexApplication application) { argument
22 this.application = application;
26 for (DexProgramClass clazz : application.classes()) {
H A DTreePruner.java22 private DexApplication application; field in class:TreePruner
27 DexApplication application, AppInfoWithLiveness appInfo, InternalOptions options) {
28 this.application = application;
34 application.timing.begin("Pruning application...");
43 result = removeUnused(application).build();
45 application.timing.end();
50 private DexApplication.Builder removeUnused(DexApplication application) { argument
51 return new DexApplication.Builder(application)
26 TreePruner( DexApplication application, AppInfoWithLiveness appInfo, InternalOptions options) argument
[all...]
/external/r8/src/test/java/com/android/tools/r8/bisect/
H A DBisectTest.java44 // Build "good" application with no method in "F".
54 // Build "bad" application with a method "foo" in "F".
80 private Result command(DexApplication application) { argument
81 DexInspector inspector = new DexInspector(application);
/external/r8/src/test/java/com/android/tools/r8/smali/
H A DSmaliBuildTest.java22 private void checkJavaLangString(DexApplication application, boolean present) { argument
23 DexInspector inspector = new DexInspector(application);
30 // Build simple "Hello, world!" application.
51 // Build simple "Hello, world!" application.
/external/r8/src/main/java/com/android/tools/r8/
H A DD8.java127 System.err.println("Failed to read or write application files: " + e.getMessage());
167 // If a method filter is present don't produce output since the application is likely partial.
193 DexApplication application, AppInfo appInfo, InternalOptions options,
198 IRConverter converter = new IRConverter(timing, application, appInfo, options, printer);
199 application = converter.convertToDex(executor);
210 return application;
192 optimize( DexApplication application, AppInfo appInfo, InternalOptions options, Timing timing, ExecutorService executor) argument
/external/r8/src/main/java/com/android/tools/r8/naming/
H A DMinifiedNameMapPrinter.java30 private final DexApplication application; field in class:MinifiedNameMapPrinter
34 public MinifiedNameMapPrinter(DexApplication application, NamingLens namingLens) { argument
35 this.application = application;
103 List<DexProgramClass> classes = new ArrayList<>(application.classes());
/external/webrtc/webrtc/modules/audio_coding/codecs/
H A Daudio_encoder.cc48 bool AudioEncoder::SetApplication(Application application) { argument
/external/python/cpython2/Lib/plat-mac/lib-scriptpackages/SystemEvents/
H A DPower_Suite.py76 class application(aetools.ComponentItem): class in inherits:aetools.ComponentItem
77 """application - The System Events application """
90 """properties - every property of the System Events application """
106 applications = application
107 application._superclassnames = []
113 application._privpropdict = {
118 application._privelemdict = {
136 'capp' : application,
H A DSystem_Events_Suite.py1 """Suite System Events Suite: Terms and Events for controlling the System Events application
36 class application(aetools.ComponentItem): class in inherits:aetools.ComponentItem
37 """application - The System Events application """
50 """properties - every property of the System Events application """
66 applications = application
67 application._superclassnames = []
73 application._privpropdict = {
78 application._privelemdict = {
96 'capp' : application,
[all...]
/external/r8/src/main/java/com/android/tools/r8/bisect/
H A DBisect.java39 Result apply(DexApplication application) throws Exception; argument
126 command = (application) -> {
127 writeApp(application, output, executor);
/external/r8/src/main/java/com/android/tools/r8/jar/
H A DJarRegisterEffectsVisitor.java23 private final JarApplicationReader application; field in class:JarRegisterEffectsVisitor
26 JarApplicationReader application) {
30 this.application = application;
35 DexType type = application.getTypeFromName(name);
45 registry.registerTypeReference(application.getTypeFromDescriptor(desc));
51 registry.registerTypeReference(application.getType((Type) cst));
57 DexType ownerType = application.getTypeFromName(owner);
58 DexMethod method = application.getMethod(ownerType, name, desc);
83 DexField field = application
25 JarRegisterEffectsVisitor(DexType clazz, UseRegistry registry, JarApplicationReader application) argument
[all...]
/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);
/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
/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/python/cpython2/Lib/plat-mac/lib-scriptpackages/Finder/
H A DLegacy_suite.py73 class application(aetools.ComponentItem): class in inherits:aetools.ComponentItem
74 """application - The Finder """
83 """application process - A process launched from an application file """
90 """application file - the application file from which this process was launched """
110 """accepts high level events - Is the process high-level event aware (accepts open application, open document, print document, and quit)? """
155 application._superclassnames = []
156 application._privpropdict = {
159 application
[all...]
/external/python/cpython2/Lib/plat-mac/lib-scriptpackages/Netscape/
H A DStandard_Suite.py104 class application(aetools.ComponentItem): class in inherits:aetools.ComponentItem
105 """application - An application program """
108 """alert application - Most of the alerts will be sent to this application using yet unspecified AE interface. We need a few alert boxes: alert, confirm and notify. Any ideas on how to design this event? mailto:atotic@netscape.com. I\xd5d like to conform to the standard. """
182 application._superclassnames = []
183 application._privpropdict = {
187 application._privelemdict = {
215 'capp' : application,

Completed in 474 milliseconds

1234