/frameworks/base/core/java/android/view/ |
D | VelocityTracker.java | 58 private static native int nativeInitialize(String strategy); in nativeInitialize() argument 88 public static VelocityTracker obtain(String strategy) { in obtain() argument 89 if (strategy == null) { in obtain() 92 return new VelocityTracker(strategy); in obtain() 133 private VelocityTracker(String strategy) { in VelocityTracker() argument 134 mPtr = nativeInitialize(strategy); in VelocityTracker() 135 mStrategy = strategy; in VelocityTracker()
|
/frameworks/base/libs/androidfw/ |
D | VelocityTracker.cpp | 110 VelocityTracker::VelocityTracker(const char* strategy) : in VelocityTracker() argument 115 if (!strategy) { in VelocityTracker() 118 strategy = value; in VelocityTracker() 120 strategy = DEFAULT_STRATEGY; in VelocityTracker() 125 if (!configureStrategy(strategy)) { in VelocityTracker() 126 ALOGD("Unrecognized velocity tracker strategy name '%s'.", strategy); in VelocityTracker() 129 strategy); in VelocityTracker() 138 bool VelocityTracker::configureStrategy(const char* strategy) { in configureStrategy() argument 139 mStrategy = createStrategy(strategy); in configureStrategy() 143 VelocityTrackerStrategy* VelocityTracker::createStrategy(const char* strategy) { in createStrategy() argument [all …]
|
/frameworks/base/docs/html/training/design-navigation/ |
D | multiple-sizes.jd | 79 <img src="{@docRoot}images/training/app-navigation-multiple-sizes-strategy-stretch.png" 80 alt="Stretch strategy"> 81 …<p>The most straightforward strategy is to simply stretch each pane's width to best present the co… 84 <img src="{@docRoot}images/training/app-navigation-multiple-sizes-strategy-collapse.png" 85 alt="Expand/collapse strategy"> 86 …<p>A variation on the stretch strategy is to collapse the contents of the left pane when in portra… 89 <img src="{@docRoot}images/training/app-navigation-multiple-sizes-strategy-show-hide.png" 90 alt="Show/Hide strategy"> 94 <img src="{@docRoot}images/training/app-navigation-multiple-sizes-strategy-stack.png" 95 alt="Stack strategy"> [all …]
|
/frameworks/base/core/jni/ |
D | android_view_VelocityTracker.cpp | 47 VelocityTrackerState(const char* strategy); 66 VelocityTrackerState::VelocityTrackerState(const char* strategy) : in VelocityTrackerState() argument 67 mVelocityTracker(strategy), mActivePointerId(-1) { in VelocityTrackerState() 144 ScopedUtfChars strategy(env, strategyStr); in android_view_VelocityTracker_nativeInitialize() local 145 return reinterpret_cast<jint>(new VelocityTrackerState(strategy.c_str())); in android_view_VelocityTracker_nativeInitialize()
|
/frameworks/base/include/androidfw/ |
D | VelocityTracker.h | 66 VelocityTracker(const char* strategy = NULL); 112 bool configureStrategy(const char* strategy); 114 static VelocityTrackerStrategy* createStrategy(const char* strategy);
|
/frameworks/base/docs/html/training/ |
D | distribute.jd | 8 <p>These classes focus on the business aspects of your app strategy, including techniques
|
/frameworks/base/tools/layoutlib/create/ |
D | README.txt | 138 This strategy is now obsolete and replaced by the method delegates. 166 This strategy is now obsolete and replaced by the method delegates. 167 See strategy 5 below. 199 In this case we have a strategy that tells the generator that anything returning, for 206 This strategy is used to override method implementations.
|
/frameworks/rs/scriptc/ |
D | rs_core.rsh | 114 enum rs_for_each_strategy strategy; 137 * allocation to be processed or suggest a walking strategy. May be 168 * allocation to be processed or suggest a walking strategy. May be
|
/frameworks/support/renderscript/v8/rs_support/scriptc/ |
D | rs_core.rsh | 114 enum rs_for_each_strategy strategy; 137 * allocation to be processed or suggest a walking strategy. May be 168 * allocation to be processed or suggest a walking strategy. May be
|
/frameworks/av/media/libmedia/ |
D | IAudioPolicyService.cpp | 289 uint32_t strategy, in registerEffect() argument 297 data.writeInt32(strategy); in registerEffect() 571 uint32_t strategy = data.readInt32(); in onTransact() local 576 strategy, in onTransact()
|
D | AudioSystem.cpp | 706 uint32_t strategy, in registerEffect() argument 712 return aps->registerEffect(desc, io, strategy, session, id); in registerEffect()
|
/frameworks/av/include/media/ |
D | IAudioPolicyService.h | 85 uint32_t strategy,
|
D | AudioSystem.h | 227 uint32_t strategy,
|
/frameworks/rs/ |
D | rsDefines.h | 371 enum RsForEachStrategy strategy; member
|
/frameworks/base/docs/html/about/ |
D | start.jd | 56 <p>How you proceed depends on a variety of factors, such as your monetization strategy and which
|
/frameworks/base/docs/html/tools/workflow/publishing/ |
D | versioning.jd | 13 <li>Determine your versioning strategy early in the development process, including considerations f… 36 strategy. Versioning is important because:</p>
|
/frameworks/base/docs/html/tools/workflow/ |
D | versioning.jd | 13 <li>Determine your versioning strategy early in the development process, including considerations f… 36 strategy. Versioning is important because:</p>
|
D | app-signing.jd | 13 <li>Determine your signing strategy early in the development process</li> 114 <p>In general, the recommended strategy for all developers is to sign 145 <p>Another important consideration in determining your signing strategy is
|
/frameworks/base/docs/html/tools/publishing/ |
D | versioning.jd | 13 <li>Determine your versioning strategy early in the development process, including considerations f… 36 strategy. Versioning is important because:</p>
|
D | app-signing.jd | 13 <li>Determine your signing strategy early in the development process</li> 114 <p>In general, the recommended strategy for all developers is to sign 145 <p>Another important consideration in determining your signing strategy is
|
/frameworks/av/services/audioflinger/ |
D | AudioPolicyService.h | 101 uint32_t strategy,
|
D | AudioFlinger.h | 1861 uint32_t strategy() const { return mStrategy; } in strategy() function 1862 void setStrategy(uint32_t strategy) in setStrategy() argument 1863 { mStrategy = strategy; } in setStrategy()
|
D | AudioPolicyService.cpp | 451 uint32_t strategy, in registerEffect() argument 458 return mpAudioPolicy->register_effect(mpAudioPolicy, desc, io, strategy, session, id); in registerEffect()
|
/frameworks/base/docs/html/design/patterns/ |
D | widgets.jd | 97 <p>Planning a resize strategy for your widget depends on the type of widget you're creating. List o… 106 …e in which your widget can redraw itself. Planning your widget resizing strategy across "size buck…
|
/frameworks/base/docs/html/guide/practices/ |
D | screens-support-1.5.jd | 76 <p>The recommended strategy is to develop your application against Android 1.6 (because it's the
|