HomeSort by relevance Sort by last modified time
    Searched refs:Mode (Results 76 - 100 of 1175) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
ol_ltp.h 63 #include "mode.h"
107 enum Mode mode, /* i : coder mode */
pitch_ol.h 61 #include "mode.h"
104 enum Mode mode, /* i : coder mode */
pre_big.h 69 #include "mode.h"
111 enum Mode mode, /* i : coder mode */
  /frameworks/base/include/private/hwui/
DrawGlInfo.h 53 enum Mode {
  /frameworks/support/v4/donut/android/support/v4/graphics/drawable/
TintAwareDrawable.java 33 void setTintMode(PorterDuff.Mode tintMode);
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
TintInfo.java 24 public PorterDuff.Mode mTintMode;
DrawableUtils.java 181 static PorterDuff.Mode parseTintMode(int value, PorterDuff.Mode defaultMode) {
183 case 3: return PorterDuff.Mode.SRC_OVER;
184 case 5: return PorterDuff.Mode.SRC_IN;
185 case 9: return PorterDuff.Mode.SRC_ATOP;
186 case 14: return PorterDuff.Mode.MULTIPLY;
187 case 15: return PorterDuff.Mode.SCREEN;
189 ? PorterDuff.Mode.valueOf("ADD")
  /external/eigen/Eigen/src/Core/products/
TriangularSolverMatrix_MKL.h 42 template <typename Index, int Mode, bool Conjugate, int TriStorageOrder> \
43 struct triangular_solve_matrix<EIGTYPE,Index,OnTheLeft,Mode,Conjugate,TriStorageOrder,ColMajor> \
46 IsLower = (Mode&Lower) == Lower, \
47 IsUnitDiag = (Mode&UnitDiag) ? 1 : 0, \
48 IsZeroDiag = (Mode&ZeroDiag) ? 1 : 0, \
97 template <typename Index, int Mode, bool Conjugate, int TriStorageOrder> \
98 struct triangular_solve_matrix<EIGTYPE,Index,OnTheRight,Mode,Conjugate,TriStorageOrder,ColMajor> \
101 IsLower = (Mode&Lower) == Lower, \
102 IsUnitDiag = (Mode&UnitDiag) ? 1 : 0, \
103 IsZeroDiag = (Mode&ZeroDiag) ? 1 : 0,
    [all...]
TriangularMatrixVector.h 17 template<typename Index, int Mode, typename LhsScalar, bool ConjLhs, typename RhsScalar, bool ConjRhs, int StorageOrder, int Version=Specialized>
20 template<typename Index, int Mode, typename LhsScalar, bool ConjLhs, typename RhsScalar, bool ConjRhs, int Version>
21 struct triangular_matrix_vector_product<Index,Mode,LhsScalar,ConjLhs,RhsScalar,ConjRhs,ColMajor,Version>
25 IsLower = ((Mode&Lower)==Lower),
26 HasUnitDiag = (Mode & UnitDiag)==UnitDiag,
27 HasZeroDiag = (Mode & ZeroDiag)==ZeroDiag
33 template<typename Index, int Mode, typename LhsScalar, bool ConjLhs, typename RhsScalar, bool ConjRhs, int Version>
34 EIGEN_DONT_INLINE void triangular_matrix_vector_product<Index,Mode,LhsScalar,ConjLhs,RhsScalar,ConjRhs,ColMajor,Version>
88 template<typename Index, int Mode, typename LhsScalar, bool ConjLhs, typename RhsScalar, bool ConjRhs,int Version>
89 struct triangular_matrix_vector_product<Index,Mode,LhsScalar,ConjLhs,RhsScalar,ConjRhs,RowMajor,Version
    [all...]
  /external/skia/include/core/
SkXfermode.h 72 enum Mode {
113 * Gets the name of the Mode as a string.
115 static const char* ModeName(Mode);
118 * If the xfermode is one of the modes in the Mode enum, then asMode()
119 * returns true and sets (if not null) mode accordingly. Otherwise it
120 * returns false and ignores the mode parameter.
122 virtual bool asMode(Mode* mode) const;
125 * The same as calling xfermode->asMode(mode), except that this also checks
128 static bool AsMode(const SkXfermode*, Mode* mode)
    [all...]
SkColorFilter.h 30 * If the filter can be represented by a source color plus Mode, this
31 * returns true, and sets (if not NULL) the color and mode appropriately.
34 virtual bool asColorMode(SkColor* color, SkXfermode::Mode* mode) const;
104 /** Create a colorfilter that uses the specified color and mode.
105 If the Mode is DST, this function will return NULL (since that
106 mode will have no effect on the result).
107 @param c The source color used with the specified mode
108 @param mode The xfermode mode that is applied to each color i
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
amrdecode.cpp 83 Description: Changed '&' to '&&' in the setting of rx_type and mode for
153 state_data->prev_mode contains the new mode
161 used by each codec mode for WMF input format (const
165 used by each codec mode for IF2 input format (const
188 The codec mode and receive frame type is initialized based on the incoming
196 RX_NO_DATA, the mode is obtained from the buffer pointed to by
197 speech_bits_ptr, offset by MAX_SERIAL_SIZE+1, otherwise, the mode is set to
198 the previous mode (found the in state_data->prev_mode).
206 state_data is updated to the current mode.
265 // Determine AMR codec mode and AMR RX frame typ
397 enum Mode mode = (enum Mode)MR475; local
    [all...]
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/
XfermodeTest.java 54 final PorterDuff.Mode mode; field in class:XfermodeTest.Config
59 mode = (PorterDuff.Mode) modeAndExpectedColors[0];
65 return mode.name() + ", hardwareAccelerated=" + hardwareAccelerated;
86 { PorterDuff.Mode.SRC, new int[] {
89 { PorterDuff.Mode.DST, new int[] {
92 { PorterDuff.Mode.SRC_OVER, new int[] {
95 { PorterDuff.Mode.DST_OVER, new int[] {
98 { PorterDuff.Mode.SRC_IN, new int[]
    [all...]
  /external/eigen/blas/
BandTriangularSolver.h 18 template<typename Index, int Mode, typename LhsScalar, bool ConjLhs, typename RhsScalar, int StorageOrder>
22 template<typename Index, int Mode, typename LhsScalar, bool ConjLhs, typename RhsScalar>
23 struct band_solve_triangular_selector<Index,Mode,LhsScalar,ConjLhs,RhsScalar,RowMajor>
27 enum { IsLower = (Mode&Lower) ? 1 : 0 };
50 if((Mode&UnitDiag)==0)
58 template<typename Index, int Mode, typename LhsScalar, bool ConjLhs, typename RhsScalar>
59 struct band_solve_triangular_selector<Index,Mode,LhsScalar,ConjLhs,RhsScalar,ColMajor>
63 enum { IsLower = (Mode&Lower) ? 1 : 0 };
82 if((Mode&UnitDiag)==0)
  /external/skia/src/gpu/effects/
GrTextureDomain.h 24 * the edge of the domain or result in a vec4 of zeros (decal mode). The domain is clipped to
30 enum Mode {
56 GrTextureDomain(const SkRect& domain, Mode, int index = -1);
59 Mode mode() const { return fMode; } function in class:GrTextureDomain
75 static const SkRect MakeTexelDomainForMode(const GrTexture* texture, const SkIRect& texelRect, Mode mode) {
76 // For Clamp mode, inset by half a texel.
79 SkScalar inset = (mode == kClamp_Mode && !texelRect.isEmpty()) ? SK_ScalarHalf : 0;
104 SkDEBUGCODE(fMode = (Mode) -1;
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILDevice.cpp 113 bool AMDGPUDevice::isSupported(AMDGPUDeviceInfo::Caps Mode) const
115 return getExecutionMode(Mode) != AMDGPUDeviceInfo::Unsupported;
118 bool AMDGPUDevice::usesHardware(AMDGPUDeviceInfo::Caps Mode) const
120 return getExecutionMode(Mode) == AMDGPUDeviceInfo::Hardware;
123 bool AMDGPUDevice::usesSoftware(AMDGPUDeviceInfo::Caps Mode) const
125 return getExecutionMode(Mode) == AMDGPUDeviceInfo::Software;
  /frameworks/base/libs/hwui/utils/
PaintUtils.h 37 * Safely retrieves the mode from the specified xfermode. If the specified
38 * xfermode is null, the mode is assumed to be SkXfermode::kSrcOver_Mode.
40 static inline SkXfermode::Mode getXfermode(SkXfermode* mode) {
41 SkXfermode::Mode resultMode;
42 if (!SkXfermode::AsMode(mode, &resultMode)) {
80 SkXfermode::Mode mode = getXfermode(paint->getXfermode()); local
81 return mode == SkXfermode::Mode::kSrcOver_Mod
    [all...]
  /external/jsilver/src/com/google/streamhtmlparser/
HtmlParser.java 32 * The Parser Mode requested for parsing a given template.
42 * This is a special mode, for standard HTML templates please use
51 public enum Mode {
110 * is (re)set with {@link Mode#JS}.
144 * <li>Inside a CSS file when the parser was reset in the CSS mode.
246 * <p>See the {@link HtmlParser.Mode} enum for information on all
249 * @param mode is an enum representing the high-level state of the parser
251 public void resetMode(HtmlParser.Mode mode);
  /external/skia/src/animator/
SkDisplayAdd.h 20 enum Mode {
36 Mode mode; member in class:SkAdd
SkDisplayPost.h 24 enum Mode {
45 Mode mode; member in class:SkPost
  /frameworks/opt/colorpicker/src/com/android/colorpicker/
ColorStateDrawable.java 50 super.setColorFilter(getPressedColor(mColor), PorterDuff.Mode.SRC_ATOP);
52 super.setColorFilter(mColor, PorterDuff.Mode.SRC_ATOP);
  /frameworks/support/v4/java/android/support/v4/widget/
CompoundButtonCompat.java 52 void setButtonTintMode(CompoundButton button, PorterDuff.Mode tintMode);
53 PorterDuff.Mode getButtonTintMode(CompoundButton button);
69 public void setButtonTintMode(CompoundButton button, PorterDuff.Mode tintMode) {
74 public PorterDuff.Mode getButtonTintMode(CompoundButton button) {
96 public void setButtonTintMode(CompoundButton button, PorterDuff.Mode tintMode) {
101 public PorterDuff.Mode getButtonTintMode(CompoundButton button) {
117 * mode, which is {@link PorterDuff.Mode#SRC_IN} by default.
121 * mode using {@link DrawableCompat#setTintList(Drawable, ColorStateList)}.
142 * Specifies the blending mode used to apply the tint specified b
    [all...]
  /libcore/ojluni/src/main/java/java/text/
Normalizer.java 147 private final android.icu.text.Normalizer.Mode icuMode;
149 Form(android.icu.text.Normalizer.Mode icuMode) {
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-mips-elf/
mode-change-error-1.d 1 #name: Mode Change Error 1
2 #source: mode-change-error-1a.s
3 #source: mode-change-error-1b.s
  /device/asus/fugu/libaudio/
alsa_utils.h 99 } Mode;
117 const Mode& getMode(size_t ndx) const { return mModes[ndx]; }
128 Vector<Mode> mModes;
132 static bool sanityCheckMode(const Mode& m);

Completed in 187 milliseconds

1 2 34 5 6 7 8 91011>>