HomeSort by relevance Sort by last modified time
    Searched refs:strategy (Results 26 - 50 of 287) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/jmonkeyengine/engine/src/desktop/com/jme3/system/awt/
AwtPanel.java 37 private BufferStrategy strategy; field in class:AwtPanel
105 if (strategy != null){
106 // strategy.dispose();
107 strategy = null;
108 System.out.println("OGL: Not visible. Destroy strategy.");
144 // All operations on strategy should be synchronized (?)
145 if (strategy == null){
156 strategy = getBufferStrategy();
157 System.out.println("OGL: Visible. Create strategy.");
163 Graphics2D g2d = (Graphics2D) strategy.getDrawGraphics()
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/lib/base/
Splitter.java 96 private final Strategy strategy; field in class:Splitter
98 private Splitter(Strategy strategy) {
99 this(strategy, false, CharMatcher.NONE);
102 private Splitter(Strategy strategy, boolean omitEmptyStrings,
104 this.strategy = strategy;
134 return new Splitter(new Strategy() {
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
Splitter.java 96 private final Strategy strategy; field in class:Splitter
98 private Splitter(Strategy strategy) {
99 this(strategy, false, CharMatcher.NONE);
102 private Splitter(Strategy strategy, boolean omitEmptyStrings,
104 this.strategy = strategy;
134 return new Splitter(new Strategy() {
    [all...]
  /external/chromium_org/chrome/renderer/extensions/
dom_activity_logger.cc 34 ActivityLogConverterStrategy strategy; local
36 converter->SetStrategy(&strategy);
  /external/chromium_org/ui/compositor/
scoped_layer_animation_settings.cc 64 LayerAnimator::PreemptionStrategy strategy) {
65 animator_->set_preemption_strategy(strategy);
  /libcore/benchmarks/src/benchmarks/regression/
SchemePrefixBenchmark.java 27 enum Strategy {
74 @Param Strategy strategy; field in class:SchemePrefixBenchmark
78 strategy.execute("http://android.com");
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/
AndroidDoubleClickStrategyTest.java 55 AndroidDoubleClickStrategy strategy = new AndroidDoubleClickStrategy(); local
63 Point positions = strategy.getWord(before, cursor);
  /external/robolectric/lib/main/
objenesis-1.0.jar 
  /prebuilts/tools/common/m2/internal/org/objenesis/objenesis/1.2/
objenesis-1.2.jar 
  /prebuilts/tools/common/objenesis/
objenesis-1.2.jar 
  /external/chromium_org/content/public/renderer/
v8_value_converter.h 28 class CONTENT_EXPORT Strategy {
30 virtual ~Strategy() {}
70 virtual void SetStrategy(Strategy* strategy) = 0;
  /external/chromium_org/third_party/zlib/contrib/minizip/
zip.h 229 int strategy,
246 int strategy,
254 windowBits,memLevel,,strategy : see parameter strategy in deflateInit2
272 int strategy,
293 int strategy,
  /external/objenesis/main/src/org/objenesis/strategy/
SerializingInstantiatorStrategy.java 16 package org.objenesis.strategy;
StdInstantiatorStrategy.java 16 package org.objenesis.strategy;
  /external/zlib/src/contrib/minizip/
zip.h 229 int strategy,
246 int strategy,
254 windowBits,memLevel,,strategy : see parameter strategy in deflateInit2
272 int strategy,
293 int strategy,
  /libcore/luni/src/main/native/
java_util_zip_Deflater.cpp 42 static jlong Deflater_createStream(JNIEnv * env, jobject, jint level, jint strategy, jboolean noHeader) {
59 int err = deflateInit2(&jstream->stream, level, Z_DEFLATED, windowBits, memLevel, strategy);
125 static void Deflater_setLevelsImpl(JNIEnv* env, jobject, int level, int strategy, jlong handle) {
133 int err = deflateParams(&stream->stream, level, strategy);
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
HTMLContentElement.cpp 113 ShadowDOMSiblingTraversalStrategy strategy(siblings, nth);
115 return selectorChecker.match(context, ignoreDynamicPseudo, strategy) == SelectorChecker::SelectorMatches;
  /external/kernel-headers/original/linux/
zlib.h 170 /* compression strategy; see deflateInit2() below for details */
454 int strategy);
475 The strategy parameter is used to tune the compression algorithm. Use the
482 between Z_DEFAULT and Z_HUFFMAN_ONLY. The strategy parameter only affects
541 compression state which can be quite large, so this strategy is slow and
567 extern int zlib_deflateParams (z_streamp strm, int level, int strategy);
570 Dynamically update the compression level and compression strategy. The
571 interpretation of level and strategy is as in deflateInit2. This can be
574 strategy. If the compression level is changed, the input available so far
    [all...]
  /frameworks/base/core/jni/
android_view_VelocityTracker.cpp 47 VelocityTrackerState(const char* strategy);
66 VelocityTrackerState::VelocityTrackerState(const char* strategy) :
67 mVelocityTracker(strategy), mActivePointerId(-1) {
144 ScopedUtfChars strategy(env, strategyStr);
145 return reinterpret_cast<jint>(new VelocityTrackerState(strategy.c_str()));
  /frameworks/native/libs/input/
VelocityTracker.cpp 102 // The default velocity tracker strategy.
104 // this is the strategy that applications will actually use. Be very careful
105 // when adjusting the default strategy because it can dramatically affect
109 VelocityTracker::VelocityTracker(const char* strategy) :
113 // Allow the default strategy to be overridden using a system property for debugging.
114 if (!strategy) {
115 int length = property_get("debug.velocitytracker.strategy", value, NULL);
117 strategy = value;
119 strategy = DEFAULT_STRATEGY;
123 // Configure the strategy
    [all...]
  /frameworks/native/include/input/
VelocityTracker.h 64 // Creates a velocity tracker using the specified strategy.
65 // If strategy is NULL, uses the default strategy for the platform.
66 VelocityTracker(const char* strategy = NULL);
112 bool configureStrategy(const char* strategy);
114 static VelocityTrackerStrategy* createStrategy(const char* strategy);
230 * Velocity tracker strategy used prior to ICS.
  /external/objenesis/main/test/org/objenesis/
ObjenesisTest.java 21 import org.objenesis.strategy.InstantiatorStrategy;
31 "org.objenesis.ObjenesisStd using org.objenesis.strategy.StdInstantiatorStrategy with caching",
38 "org.objenesis.ObjenesisStd using org.objenesis.strategy.StdInstantiatorStrategy without caching",
63 "org.objenesis.ObjenesisTest$1 using org.objenesis.strategy.StdInstantiatorStrategy with caching",
  /external/ceres-solver/internal/ceres/
trust_region_minimizer.cc 91 TrustRegionStrategy* strategy = CHECK_NOTNULL(options_.trust_region_strategy); local
117 iteration_summary.trust_region_radius = strategy->Radius();
219 strategy->ComputeStep(per_solve_options,
460 strategy->StepAccepted(iteration_summary.relative_decrease);
537 strategy->StepRejected(iteration_summary.relative_decrease);
539 strategy->StepIsInvalid();
544 iteration_summary.trust_region_radius = strategy->Radius();
  /development/ndk/platforms/android-3/include/
zlib.h 194 /* compression strategy; see deflateInit2() below for details */
485 int strategy));
517 The strategy parameter is used to tune the compression algorithm. Use the
526 Z_HUFFMAN_ONLY, but give better compression for PNG image data. The strategy
586 compression state which can be quite large, so this strategy is slow and
608 int strategy));
610 Dynamically update the compression level and compression strategy. The
611 interpretation of level and strategy is as in deflateInit2. This can be
614 strategy. If the compression level is changed, the input available so far
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
zlib.h 194 /* compression strategy; see deflateInit2() below for details */
485 int strategy));
517 The strategy parameter is used to tune the compression algorithm. Use the
526 Z_HUFFMAN_ONLY, but give better compression for PNG image data. The strategy
586 compression state which can be quite large, so this strategy is slow and
608 int strategy));
610 Dynamically update the compression level and compression strategy. The
611 interpretation of level and strategy is as in deflateInit2. This can be
614 strategy. If the compression level is changed, the input available so far
    [all...]

Completed in 2348 milliseconds

12 3 4 5 6 7 8 91011>>