/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/ |
D | armVCM4P10_DecodeCoeffsToPair.c | 72 int Level, LevelCode, LevelPrefix, LevelSuffix, LevelSuffixSize; in armVCM4P10_DecodeCoeffsToPair() local 99 Level = -1; in armVCM4P10_DecodeCoeffsToPair() 103 Level = +1; in armVCM4P10_DecodeCoeffsToPair() 105 pLevel[i] = (OMX_S16)Level; in armVCM4P10_DecodeCoeffsToPair() 155 Level = (-LevelCode-1)>>1; in armVCM4P10_DecodeCoeffsToPair() 160 Level = (LevelCode+2)>>1; in armVCM4P10_DecodeCoeffsToPair() 162 pLevel[i] = (OMX_S16)Level; in armVCM4P10_DecodeCoeffsToPair() 234 Level = pLevel[i]; in armVCM4P10_DecodeCoeffsToPair() 236 DEBUG_PRINTF_2("Coef[%d] = %d\n", CoeffNum, Level); in armVCM4P10_DecodeCoeffsToPair() 250 if (Level<-128 || Level>127) in armVCM4P10_DecodeCoeffsToPair() [all …]
|
/frameworks/base/docs/html/guide/topics/manifest/ |
D | uses-sdk-element.jd | 11 <li><a href="#ApiLevels">What is API Level?</a></li> 12 <li><a href="#uses">Uses of API Level in Android</a></li> 17 <li><a href="#platform">Selecting a platform version and API Level</a></li> 18 <li><a href="#apilevel">Declaring a minimum API Level</a></li> 22 <li><a href="#provisional">Using a Provisional API Level</a></li> 23 <li><a href="#filtering">Filtering the Reference Documentation by API Level</a></li> 52 by means of an API Level integer. The API Level expressed by an application will be compared to the 53 API Level of a given Android system, which may vary among different Android devices. 56 <p>Despite its name, this element is used to specify the API Level, <em>not</em> 58 The API Level is always a single integer. You cannot derive the API Level from [all …]
|
/frameworks/base/core/java/com/android/internal/logging/ |
D | AndroidConfig.java | 19 import java.util.logging.Level; 39 rootLogger.setLevel(Level.INFO); in AndroidConfig() 42 Logger.getLogger("org.apache").setLevel(Level.WARNING); in AndroidConfig()
|
D | AndroidHandler.java | 28 import java.util.logging.Level; 140 public void publish(Logger source, String tag, Level level, String message) { in publish() 161 static int getAndroidLevel(Level level) { in getAndroidLevel()
|
/frameworks/compile/libbcc/include/bcc/Support/ |
D | CompilerConfig.h | 49 llvm::CodeGenOpt::Level mOptLevel; 89 inline llvm::CodeGenOpt::Level getOptimizationLevel() const in getOptimizationLevel() 91 inline void setOptimizationLevel(llvm::CodeGenOpt::Level pOptLvl) in setOptimizationLevel()
|
/frameworks/av/media/libeffects/lvm/lib/Reverb/src/ |
D | LVREV_ApplyNewSettings.c | 375 (pPrivate->NewParams.Level != pPrivate->CurrentParams.Level) || in LVREV_ApplyNewSettings() 472 Index=((32767*100)/(100+pPrivate->NewParams.Level)); in LVREV_ApplyNewSettings() 520 if( (pPrivate->NewParams.Level != pPrivate->CurrentParams.Level) && in LVREV_ApplyNewSettings() 523 pPrivate->BypassMixer.Target2 = ((LVM_INT32)(pPrivate->NewParams.Level * 32767)/100)<<16; in LVREV_ApplyNewSettings() 525 if ((pPrivate->NewParams.Level == 0) && (pPrivate->bFirstControl == LVM_FALSE)) in LVREV_ApplyNewSettings() 529 if (pPrivate->NewParams.Level != 0) in LVREV_ApplyNewSettings() 539 … pPrivate->BypassMixer.Target2 = ((LVM_INT32)(pPrivate->NewParams.Level * 32767)/100)<<16; in LVREV_ApplyNewSettings() 544 if (pPrivate->NewParams.Level == 0) in LVREV_ApplyNewSettings()
|
D | LVREV_SetControlParameters.c | 73 if (pNewParams->Level > LVREV_MAX_LEVEL) in LVREV_SetControlParameters()
|
/frameworks/compile/mclinker/include/mcld/Target/ |
D | TargetMachine.h | 73 CodeGenOpt::Level, 91 CodeGenOpt::Level,
|
/frameworks/base/docs/html/guide/webapps/ |
D | debugging.jd | 89 "WebCore" logging tag. If you're targeting Android 2.1 (API Level 7) or higher, then you must 96 Level 7 has been deprecated in favor of {@link 97 android.webkit.WebChromeClient#onConsoleMessage(ConsoleMessage)} in API Level 8.</p> 99 <p>Whether you're developing for Android 2.1 (API Level 7) or Android 2.2 (API Level 8 or 107 <p>Using API Level 7, this is how your code for {@link 121 <p>With API Level 8 or greater, your code for {@link
|
/frameworks/base/docs/html/tools/publishing/ |
D | versioning.jd | 131 versions, you can specify those version requirements as API Level identifiers 136 <p>To specify API Level requirements, add a <code><uses-sdk></code> 142 by the platform's API Level identifier. </li> 143 <li><code>android:targetSdkVersion</code> — Specifies the API Level 146 API Level, rather than being restricted to using only those defined 147 for the minimum API Level.</li> 150 specified by the platform's API Level identifier. <strong>Important:</strong> Please read the <a 164 maximum API Level. </p>
|
/frameworks/base/docs/html/guide/topics/data/ |
D | install-location.jd | 34 <p>Beginning with API Level 8, you can allow your application to be installed on the 87 on devices running API Level 8 (Android 2.2) or greater. Existing applications that were built prior 88 to API Level 8 will always install on the internal storage and cannot be moved to the external 89 storage (even on devices with API Level 8). However, if your application is designed to support an 90 API Level <em>lower than</em> 8, you can choose to support this feature for devices with API Level 8 91 or greater and still be compatible with devices using an API Level lower than 8.</p> 94 Level 8:</p> 103 <li>In order to compile your application, change your build target to API Level 8. This is 108 <p>When your application is installed on a device with an API Level lower than 8, the {@code 113 older platforms, you must be careful not to use programming APIs introduced in API Level 8
|
/frameworks/base/docs/html/tools/devices/ |
D | index.jd | 46 <li>The API Level of the target is important, because your application will not be able to run 47 on a system image whose API Level is less than that required by your application, as specified 50 information about the relationship between system API Level and application 54 …<li>You should create at least one AVD that uses a target whose API Level is greater than that req…
|
/frameworks/compile/slang/ |
D | slang_diagnostic_buffer.h | 45 virtual void HandleDiagnostic(clang::DiagnosticsEngine::Level DiagLevel,
|
D | slang_diagnostic_buffer.cpp | 42 clang::DiagnosticsEngine::Level DiagLevel, in HandleDiagnostic()
|
/frameworks/base/docs/html/about/versions/ |
D | android-1.6.jd | 16 <li><a href="#api-level">API Level</a></li> 42 <em>API Level:</em> <strong>{@sdkPlatformApiLevel}</strong></p> 53 development updates. The downloadable platform is fully compliant (API Level 4) 196 <h2 id="api-level">API Level</h2> 202 stored in the system itself. This identifier, called the "API Level", allows the 211 <p>For more information about how to use API Level, see the <a 350 … <li><code>targetSdkVersion</code>: Indicates the API Level that the application is targeting. 355 … <li><code>maxSdkVersion</code>: Indicates the maximum API Level on which an application is 387 Allows an application to write to external storage. Applications using API Level 3 389 the user); Applications using API Level 4 or higher must explicitly request this [all …]
|
D | android-2.0.1.jd | 43 <em>API Level:</em> <strong>{@sdkPlatformApiLevel}</strong></p> 269 stored in the system itself. This identifier, called the "API Level", allows the 277 <p>For more information about how to use API Level, see the <a 335 folders that use the API Level qualifier. For example, {@code drawable-v4/} is a 336 folder of drawable resources for API Level 4 (or higher) devices. This version 355 <p>For a detailed view of API changes in Android {@sdkPlatformVersion} (API Level {@sdkPlatformApiL… 356 API Level 5, see the <a 358 Differences Report</a>. There are very few API changes in API Level 6,
|
D | android-2.1.jd | 16 <li><a href="#api-level">API Level</a></li> 42 <em>API Level:</em> <strong>{@sdkPlatformApiLevel}</strong></p> 152 <h2 id="api-level">API Level</h2> 158 stored in the system itself. This identifier, called the "API Level", allows the 167 <p>For more information about how to use API Level, see the <a 256 Level {@sdkPlatformApiLevel}), as compared to API Level 6, see the <a
|
D | android-2.3.3.jd | 15 <li><a href="#api-level">API Level</a></li> 29 <em>API Level:</em> <strong>{@sdkPlatformApiLevel}</strong></p> 174 <h2 id="api-level">API Level</h2> 180 stored in the system itself. This identifier, called the "API Level", allows the 194 Level?</a></p>
|
/frameworks/base/docs/html/training/monitoring-device-state/ |
D | battery-monitoring.jd | 1 page.title=Monitoring the Battery Level and Charging State 18 <li><a href="#CurrentLevel">Determine the Current Battery Level</a></li> 19 <li><a href="#MonitorLevel">Monitor Significant Changes in Battery Level</a></li> 114 <h2 id="CurrentLevel">Determine the Current Battery Level</h2> 128 <h2 id="MonitorLevel">Monitor Significant Changes in Battery Level</h2>
|
/frameworks/base/docs/html/guide/topics/ui/accessibility/ |
D | apps.jd | 270 Android 4.0 (API Level 14) and higher, the methods for 273 Level 4). The expanded accessibility methods are part of the {@link android.view.View} class as well 278 <dd>(API Level 4) This method is called when a user takes action on a view. The event is 285 <dd>(API Level 4) This method is used when the calling code needs to directly control the check 294 <dd>(API Level 4) The system calls this method when your custom view generates an 295 accessibility event. As of API Level 14, the default implementation of this method calls {@link 299 accessibility services on revisions of Android <em>prior</em> to 4.0 (API Level 14) you 305 <dd>(API Level 14) This method sets the spoken text prompt of the {@link 321 <dd>(API Level 14) The system calls this method to obtain additional information about the 331 <dd>(API Level 14) This method provides accessibility services with information about the state of [all …]
|
D | services.jd | 57 (API Level 4) and received significant improvements with Android 4.0 (API Level 14). The Android 93 <p>These declarations are required for all accessibility services deployed on Android 1.6 (API Level 294 <p class="note"><strong>Note:</strong> In Android 4.1 (API Level 16) and higher, the 310 <p>Starting with Android 4.0 (API Level 14), accessibility services can act on behalf 312 In Android 4.1 (API Level 16) the range of actions has been expanded to include scrolling lists 328 of a user. This feature, added in Android 4.1 (API Level 16), and requires that your 358 in Android 4.0 (API Level 14) and significantly expanded with Android 4.1 (API Level 16).</p> 404 <p>Android 4.1 (API Level 16) introduces a new type of user interface focus called <em>Accessibility 448 accessibility services that are compatible with Android 1.6 (API Level 4) and higher.</li> 450 - This service is based on the enhanced accessibility APIs introduced in Android 4.0 (API Level [all …]
|
/frameworks/base/docs/html/guide/topics/appwidgets/ |
D | host.jd | 236 <li>Android 3.0 (API Level 11) introduces auto-advance behavior for widgets.</li> 237 <li>Android 3.1 (API Level 12) introduces the ability to resize widgets.</li> 238 <li>Android 4.0 (API Level 15) introduces a change in padding policy that 241 <li>Android 4.1 (API Level 16) adds an API that allows the widget provider 244 <li>Android 4.2 (API Level 17) introduces the options bundle and the 291 <p>Android 3.0 (API Level 11) introduces the ability for a widget to specify {@link android.appwidg… 303 <p>Android 3.1 (API Level 12) introduces the ability to resize widgets. 308 vertical resizing. Introduced in Android 4.0 (API Level 14), the widget can also specify a 326 <p>Android 4.0 (API Level 15) introduces a change in padding policy that 339 <p>Android 4.1 (API Level 16) adds an API that allows the widget provider [all …]
|
/frameworks/av/media/libeffects/lvm/lib/Reverb/lib/ |
D | LVREV.h | 109 …LVM_UINT16 Level; /* Level, 0 to 100 representing percentage of … member
|
/frameworks/base/docs/html/tools/help/uiautomator/ |
D | Configurator.jd | 553 <ul class="nolist"><li>Android API Level 18</li></ul> 584 <ul class="nolist"><li>Android API Level 18</li></ul> 616 <ul class="nolist"><li>Android API Level 18</li></ul> 652 <ul class="nolist"><li>Android API Level 18</li></ul> 690 <ul class="nolist"><li>Android API Level 18</li></ul> 726 <ul class="nolist"><li>Android API Level 18</li></ul> 771 <ul class="nolist"><li>Android API Level 18</li></ul> 811 <ul class="nolist"><li>Android API Level 18</li></ul> 856 <ul class="nolist"><li>Android API Level 18</li></ul> 903 <ul class="nolist"><li>Android API Level 18</li></ul> [all …]
|
/frameworks/base/docs/html/guide/topics/resources/ |
D | menu-resource.jd | 117 <p>Introduced in API Level 11.</p></dd> 122 android.app.ActionBar} (introduced in API Level 11). Valid values: 138 collapsible.<br/>Introduced in API Level 14.</td></tr> 142 <p>Introduced in API Level 11.</p> 149 <p>Introduced in API Level 11.</p></dd> 161 <p>Introduced in API Level 11.</p></dd> 173 <p>Introduced in API Level 14.</p></dd> 300 available only on Android 3.0 (API Level 11) and greater.</p>
|