Searched refs:def (Results 1 - 25 of 92) sorted by relevance

1234

/frameworks/data-binding/developmentPlugins/localizeMavenPlugin/src/main/groovy/android/databinding/
H A DLocalizePluginExtension.groovy20 def File localRepoDir;
21 def List<String> otherRepoDirs;
/frameworks/compile/slang/
H A DRSCCOptions.td30 def target_api : Separate<["-"], "target-api">,
32 def target_api_EQ : Joined<["-"], "target-api=">, Alias<target_api>;
38 def I : JoinedOrSeparate<["-"], "I">, MetaVarName<"<directory>">,
40 def _I : Separate<["-", "--"], "include-path">, MetaVarName<"<directory>">, Alias<I>;
46 def o : Separate<["-"], "o">, MetaVarName<"<directory>">,
49 def Output_Type_Group : OptionGroup<"<output type group>">;
52 def emit_asm : Flag<["-"], "emit-asm">,
54 def _emit_asm : Flag<["-"], "S">, Alias<emit_asm>;
55 def emit_llvm : Flag<["-"], "emit-llvm">,
57 def emit_b
[all...]
/frameworks/native/include/media/openmax/
H A DOMX_AsString.h31 inline static const char *asString(OMX_AUDIO_CODINGTYPE i, const char *def = "??") {
62 default: return def;
66 inline static const char *asString(OMX_AUDIO_PCMMODETYPE i, const char *def = "??") {
71 default: return def;
75 inline static const char *asString(OMX_AUDIO_CHANNELTYPE i, const char *def = "??") {
87 default: return def;
91 inline static const char *asString(OMX_AUDIO_CHANNELMODETYPE i, const char *def = "??") {
97 default: return def;
101 inline static const char *asString(OMX_AUDIO_AACPROFILETYPE i, const char *def = "??") {
113 default: return def;
[all...]
/frameworks/base/core/java/android/os/
H A DSystemProperties.java36 private static native String native_get(String key, String def); argument
37 private static native int native_get_int(String key, int def); argument
38 private static native long native_get_long(String key, long def); argument
39 private static native boolean native_get_boolean(String key, boolean def); argument
40 private static native void native_set(String key, String def); argument
57 * @return if the key isn't found, return def if it isn't null, or an empty string otherwise
60 public static String get(String key, String def) { argument
64 return native_get(key, def);
70 * @param def a default value to return
71 * @return the key parsed as an integer, or def i
75 getInt(String key, int def) argument
90 getLong(String key, long def) argument
110 getBoolean(String key, boolean def) argument
[all...]
/frameworks/av/media/libstagefright/codecs/gsm/dec/
H A DSoftGSM.cpp63 OMX_PARAM_PORTDEFINITIONTYPE def; local
64 InitOMXParams(&def);
66 def.nPortIndex = 0;
67 def.eDir = OMX_DirInput;
68 def.nBufferCountMin = kNumBuffers;
69 def.nBufferCountActual = def.nBufferCountMin;
70 def.nBufferSize = 1024 / kMSGSMFrameSize * kMSGSMFrameSize;
71 def.bEnabled = OMX_TRUE;
72 def
[all...]
/frameworks/av/media/libstagefright/codecs/raw/
H A DSoftRaw.cpp56 OMX_PARAM_PORTDEFINITIONTYPE def; local
57 InitOMXParams(&def);
59 def.nPortIndex = 0;
60 def.eDir = OMX_DirInput;
61 def.nBufferCountMin = kNumBuffers;
62 def.nBufferCountActual = def.nBufferCountMin;
63 def.nBufferSize = 32 * 1024;
64 def.bEnabled = OMX_TRUE;
65 def
[all...]
/frameworks/base/core/java/android/util/
H A DKeyValueListParser.java68 * @param def The value to return if the key was not found, or the value was not a long.
71 public int getInt(String key, int def) { argument
80 return def;
86 * @param def The value to return if the key was not found, or the value was not a long.
89 public long getLong(String key, long def) { argument
98 return def;
104 * @param def The value to return if the key was not found, or the value was not a float.
107 public float getFloat(String key, float def) { argument
116 return def;
122 * @param def Th
125 getString(String key, String def) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/os/
H A DSystemProperties_Delegate.java42 /*package*/ static String native_get(String key, String def) { argument
49 return def;
52 /*package*/ static int native_get_int(String key, int def) { argument
59 return def;
63 /*package*/ static long native_get_long(String key, long def) { argument
70 return def;
78 /*package*/ static boolean native_get_boolean(String key, boolean def) { argument
92 return def;
96 /*package*/ static void native_set(String key, String def) { argument
98 properties.put(key, def);
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/enc/
H A DSoftAMRNBEncoder.cpp67 OMX_PARAM_PORTDEFINITIONTYPE def; local
68 InitOMXParams(&def);
70 def.nPortIndex = 0;
71 def.eDir = OMX_DirInput;
72 def.nBufferCountMin = kNumBuffers;
73 def.nBufferCountActual = def.nBufferCountMin;
74 def.nBufferSize = kNumSamplesPerFrame * sizeof(int16_t);
75 def.bEnabled = OMX_TRUE;
76 def
[all...]
/frameworks/av/media/libstagefright/codecs/g711/dec/
H A DSoftG711.cpp60 OMX_PARAM_PORTDEFINITIONTYPE def; local
61 InitOMXParams(&def);
63 def.nPortIndex = 0;
64 def.eDir = OMX_DirInput;
65 def.nBufferCountMin = kNumBuffers;
66 def.nBufferCountActual = def.nBufferCountMin;
67 def.nBufferSize = 8192;
68 def.bEnabled = OMX_TRUE;
69 def
[all...]
/frameworks/av/media/libstagefright/codecs/mp3dec/
H A DSoftMP3.cpp70 OMX_PARAM_PORTDEFINITIONTYPE def; local
71 InitOMXParams(&def);
73 def.nPortIndex = 0;
74 def.eDir = OMX_DirInput;
75 def.nBufferCountMin = kNumBuffers;
76 def.nBufferCountActual = def.nBufferCountMin;
77 def.nBufferSize = 8192;
78 def.bEnabled = OMX_TRUE;
79 def
[all...]
/frameworks/av/media/libstagefright/omx/
H A DSoftVideoDecoderOMXComponent.cpp99 OMX_PARAM_PORTDEFINITIONTYPE def; local
100 InitOMXParams(&def);
102 def.nPortIndex = kInputPortIndex;
103 def.eDir = OMX_DirInput;
104 def.nBufferCountMin = numMinInputBuffers;
105 def.nBufferCountActual = numInputBuffers;
106 def.nBufferSize = inputBufferSize;
107 def.bEnabled = OMX_TRUE;
108 def.bPopulated = OMX_FALSE;
109 def
200 OMX_PARAM_PORTDEFINITIONTYPE *def = &editPortInfo(kOutputPortIndex)->mDef; local
236 OMX_PARAM_PORTDEFINITIONTYPE *def = &editPortInfo(kOutputPortIndex)->mDef; local
485 OMX_PARAM_PORTDEFINITIONTYPE *def = &editPortInfo(newParams->nPortIndex)->mDef; local
[all...]
H A DSoftVideoEncoderOMXComponent.cpp84 OMX_PARAM_PORTDEFINITIONTYPE def; local
89 InitOMXParams(&def);
91 def.nPortIndex = kInputPortIndex;
92 def.eDir = OMX_DirInput;
93 def.nBufferCountMin = numInputBuffers;
94 def.nBufferCountActual = def.nBufferCountMin;
95 def.bEnabled = OMX_TRUE;
96 def.bPopulated = OMX_FALSE;
97 def
[all...]
/frameworks/av/media/libstagefright/codecs/aacenc/
H A DSoftAACEncoder.cpp80 OMX_PARAM_PORTDEFINITIONTYPE def; local
81 InitOMXParams(&def);
83 def.nPortIndex = 0;
84 def.eDir = OMX_DirInput;
85 def.nBufferCountMin = kNumBuffers;
86 def.nBufferCountActual = def.nBufferCountMin;
87 def.nBufferSize = kNumSamplesPerFrame * sizeof(int16_t) * 2;
88 def.bEnabled = OMX_TRUE;
89 def
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/dec/
H A DSoftAMR.cpp78 OMX_PARAM_PORTDEFINITIONTYPE def; local
79 InitOMXParams(&def);
81 def.nPortIndex = 0;
82 def.eDir = OMX_DirInput;
83 def.nBufferCountMin = kNumBuffers;
84 def.nBufferCountActual = def.nBufferCountMin;
85 def.nBufferSize = 8192;
86 def.bEnabled = OMX_TRUE;
87 def
[all...]
/frameworks/av/media/libstagefright/codecs/amrwbenc/
H A DSoftAMRWBEncoder.cpp74 OMX_PARAM_PORTDEFINITIONTYPE def; local
75 InitOMXParams(&def);
77 def.nPortIndex = 0;
78 def.eDir = OMX_DirInput;
79 def.nBufferCountMin = kNumBuffers;
80 def.nBufferCountActual = def.nBufferCountMin;
81 def.nBufferSize = kNumSamplesPerFrame * sizeof(int16_t);
82 def.bEnabled = OMX_TRUE;
83 def
[all...]
/frameworks/av/media/libstagefright/codecs/flac/enc/
H A DSoftFlacEncoder.cpp110 OMX_PARAM_PORTDEFINITIONTYPE def; local
111 InitOMXParams(&def);
114 def.nPortIndex = 0;
115 def.eDir = OMX_DirInput;
116 def.nBufferCountMin = kNumBuffers;// TODO verify that 1 is enough
117 def.nBufferCountActual = def.nBufferCountMin;
118 def.nBufferSize = kMaxInputBufferSize;
119 def.bEnabled = OMX_TRUE;
120 def
[all...]
/frameworks/av/media/libstagefright/codecs/opus/dec/
H A DSoftOpus.cpp82 OMX_PARAM_PORTDEFINITIONTYPE def; local
83 InitOMXParams(&def);
85 def.nPortIndex = 0;
86 def.eDir = OMX_DirInput;
87 def.nBufferCountMin = kNumBuffers;
88 def.nBufferCountActual = def.nBufferCountMin;
89 def.nBufferSize = 960 * 6;
90 def.bEnabled = OMX_TRUE;
91 def
[all...]
/frameworks/av/media/libstagefright/codecs/vorbis/dec/
H A DSoftVorbis.cpp80 OMX_PARAM_PORTDEFINITIONTYPE def; local
81 InitOMXParams(&def);
83 def.nPortIndex = 0;
84 def.eDir = OMX_DirInput;
85 def.nBufferCountMin = kNumBuffers;
86 def.nBufferCountActual = def.nBufferCountMin;
87 def.nBufferSize = kMaxNumSamplesPerBuffer * sizeof(int16_t);
88 def.bEnabled = OMX_TRUE;
89 def
[all...]
/frameworks/support/v14/preference/
H A Dbuild.gradle59 def name = variant.buildType.name
64 def suffix = name.capitalize()
66 def jarTask = project.tasks.create(name: "jar${suffix}", type: Jar){
71 def javadocTask = project.tasks.create(name: "javadoc${suffix}", type: Javadoc) {
77 def javadocJarTask = project.tasks.create(name: "javadocJar${suffix}", type: Jar) {
82 def sourcesJarTask = project.tasks.create(name: "sourceJar${suffix}", type: Jar) {
/frameworks/data-binding/extensions/
H A Dbuild.gradle24 def bundleSupportLibTask = tasks['bundleSupportLib']
39 def configureOut = tasks.create(name: 'configureOut') << {
41 def deployer = tasks['uploadArchives'].repositories.mavenDeployer.repository
/frameworks/opt/setupwizard/tools/gradle/
H A Ddocs.gradle9 def DOCSDIR = "$rootDir/frameworks/opt/setupwizard/tools/docs"
15 def suffix = variant.name.capitalize()
17 def javadocTask = project.tasks.create(name: "javadoc${suffix}", type: Javadoc) {
/frameworks/base/packages/Shell/src/com/android/shell/
H A DBugreportPrefs.java36 static int getWarningState(Context context, int def) { argument
39 return prefs.getInt(KEY_WARNING_STATE, def);
/frameworks/compile/mclinker/include/mcld/Config/
H A DTargets.def1 /*===- llvm/Config/Targets.def - MCLD Target Architectures ------*- C++ -*-===*\
31 #include <llvm/Config/Targets.def>
/frameworks/native/include/media/hardware/
H A DVideoAPI.h227 inline static const char *asString(MediaImage::Type i, const char *def = "??") {
231 default: return def;
235 inline static const char *asString(MediaImage::PlaneIndex i, const char *def = "??") {
240 default: return def;
244 inline static const char *asString(MediaImage2::Type i, const char *def = "??") {
252 default: return def;
257 MediaImage2::PlaneIndex i, MediaImage2::Type j, char def = '?') {
261 return def;
266 inline static const char *asString(ColorAspects::Range i, const char *def = "??") {
272 default: return def;
[all...]

Completed in 606 milliseconds

1234