Searched refs:strategy (Results 51 - 75 of 155) sorted by path

1234567

/external/chromium_org/third_party/angle/src/common/
H A Dblocklayout.h91 // The strategy should be ENCODE_LOOSE for D3D9 constant blocks, and ENCODE_PACKED
103 HLSLBlockEncoder(HLSLBlockEncoderStrategy strategy);
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/chromium_org/third_party/libpng/
H A Dpng.h1282 int zlib_strategy PNG_DEPSTRUCT; /* holds zlib compression strategy */
2014 PNGARG((png_structp png_ptr, int strategy));
H A Dpngwrite.c1441 png_set_compression_strategy(png_structp png_ptr, int strategy) argument
1448 png_ptr->zlib_strategy = strategy;
/external/chromium_org/third_party/skia/include/core/
H A DSkCanvas.h1371 SaveFlags, bool justForImageFilter, SaveLayerStrategy strategy);
/external/chromium_org/third_party/skia/src/core/
H A DSkBBoxHierarchyRecord.cpp74 SkCanvas::SaveLayerStrategy strategy = this->INHERITED::willSaveLayer(bounds, paint, flags); local
79 return strategy;
H A DSkCanvas.cpp881 SaveLayerStrategy strategy = this->willSaveLayer(bounds, paint, kARGB_ClipLayer_SaveFlag); local
882 return this->internalSaveLayer(bounds, paint, kARGB_ClipLayer_SaveFlag, false, strategy);
887 SaveLayerStrategy strategy = this->willSaveLayer(bounds, paint, flags); local
888 return this->internalSaveLayer(bounds, paint, flags, false, strategy);
892 bool justForImageFilter, SaveLayerStrategy strategy) {
910 if (kNoLayer_SaveLayerStrategy == strategy) {
891 internalSaveLayer(const SkRect* bounds, const SkPaint* paint, SaveFlags flags, bool justForImageFilter, SaveLayerStrategy strategy) argument
/external/chromium_org/third_party/zlib/contrib/minizip/
H A Dzip.c1059 int windowBits,int memLevel, int strategy,
1220 err = deflateInit2(&zi->ci.stream, level, Z_DEFLATED, windowBits, memLevel, strategy);
1268 int windowBits,int memLevel, int strategy,
1276 windowBits, memLevel, strategy,
1284 int windowBits,int memLevel, int strategy,
1291 windowBits, memLevel, strategy,
1299 int windowBits,int memLevel, int strategy,
1306 windowBits, memLevel, strategy,
1055 zipOpenNewFileInZip4_64(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void* extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int raw, int windowBits,int memLevel, int strategy, const char* password, uLong crcForCrypting, uLong versionMadeBy, uLong flagBase, int zip64) argument
1264 zipOpenNewFileInZip4(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void* extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int raw, int windowBits,int memLevel, int strategy, const char* password, uLong crcForCrypting, uLong versionMadeBy, uLong flagBase) argument
1280 zipOpenNewFileInZip3(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void* extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int raw, int windowBits,int memLevel, int strategy, const char* password, uLong crcForCrypting) argument
1295 zipOpenNewFileInZip3_64(zipFile file, const char* filename, const zip_fileinfo* zipfi, const void* extrafield_local, uInt size_extrafield_local, const void* extrafield_global, uInt size_extrafield_global, const char* comment, int method, int level, int raw, int windowBits,int memLevel, int strategy, const char* password, uLong crcForCrypting, int zip64) argument
H A Dzip.h229 int strategy,
246 int strategy,
254 windowBits,memLevel,,strategy : see parameter strategy in deflateInit2
272 int strategy,
293 int strategy,
/external/chromium_org/third_party/zlib/
H A Ddeflate.c211 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
218 int strategy;
262 strategy < 0 || strategy > Z_FIXED) {
308 s->strategy = strategy;
418 int ZEXPORT deflateParams(strm, level, strategy)
421 int strategy;
435 if (level < 0 || level > 9 || strategy < 0 || strategy > Z_FIXE
[all...]
H A Ddeflate.h188 int strategy; /* favor or force Huffman coding*/ member in struct:internal_state
H A Dgzguts.h106 int strategy; /* compression strategy */ member in struct:__anon16404
H A Dgzlib.c107 state->strategy = Z_DEFAULT_STRATEGY;
130 state->strategy = Z_FILTERED;
133 state->strategy = Z_HUFFMAN_ONLY;
136 state->strategy = Z_RLE;
139 state->strategy = Z_FIXED;
H A Dgzwrite.c38 15 + 16, 8, state->strategy);
458 int ZEXPORT gzsetparams(file, level, strategy)
461 int strategy;
477 if (level == state->level && strategy == state->strategy)
492 deflateParams(strm, level, strategy);
495 state->strategy = strategy;
H A Dtrees.c990 } else if (s->strategy == Z_FIXED || static_lenb == opt_lenb) {
H A Dzlib.h198 /* compression strategy; see deflateInit2() below for details */
528 int strategy));
560 The strategy parameter is used to tune the compression algorithm. Use the
570 strategy parameter only affects the compression ratio but not the
631 compression state which can be quite large, so this strategy is slow and can
653 int strategy));
655 Dynamically update the compression level and compression strategy. The
656 interpretation of level and strategy is as in deflateInit2. This can be
658 to switch to a different kind of input data requiring a different strategy.
1177 a strategy
[all...]
/external/chromium_org/ui/compositor/
H A Dlayer_animator.h100 // Sets the animation preemption strategy. This determines the behaviour if
103 void set_preemption_strategy(PreemptionStrategy strategy) { argument
104 preemption_strategy_ = strategy;
H A Dscoped_layer_animation_settings.cc140 LayerAnimator::PreemptionStrategy strategy) {
141 animator_->set_preemption_strategy(strategy);
139 SetPreemptionStrategy( LayerAnimator::PreemptionStrategy strategy) argument
H A Dscoped_layer_animation_settings.h46 void SetPreemptionStrategy(LayerAnimator::PreemptionStrategy strategy);
/external/chromium_org/ui/events/gesture_detection/
H A Dvelocity_tracker.cc196 VelocityTrackerStrategy* CreateStrategy(VelocityTracker::Strategy strategy) {
197 switch (strategy) {
218 NOTREACHED() << "Unrecognized velocity tracker strategy: " << strategy;
231 VelocityTracker::VelocityTracker(Strategy strategy)
234 strategy_(CreateStrategy(strategy)) {}
H A Dvelocity_tracker.h68 // more tolerant of errors. Like 'lsq1', this strategy tends to
70 // the velocity of a fling but this strategy tends to respond to changes in
75 // For comparison purposes only. Unlike 'int1' this strategy can compensate
80 // The default velocity tracker strategy.
82 // purposes, this is the strategy that applications will actually use. Be
83 // very careful when adjusting the default strategy because it can
88 // Creates a velocity tracker using the default strategy for the platform.
91 // Creates a velocity tracker using the specified strategy.
92 // If strategy is NULL, uses the default strategy fo
[all...]
H A Dvelocity_tracker_state.cc20 VelocityTrackerState::VelocityTrackerState(VelocityTracker::Strategy strategy) argument
21 : velocity_tracker_(strategy), active_pointer_id_(ACTIVE_POINTER_ID) {}
H A Dvelocity_tracker_state.h24 explicit VelocityTrackerState(VelocityTracker::Strategy strategy);

Completed in 592 milliseconds

1234567