HomeSort by relevance Sort by last modified time
    Searched full:_alpha (Results 1 - 25 of 47) sorted by null

1 2

  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm/
maven-metadata.xml 5 <version>6.0_ALPHA</version>
7 <latest>6.0_ALPHA</latest>
8 <release>6.0_ALPHA</release>
14 <version>5.0_ALPHA</version>
21 <version>6.0_ALPHA</version>
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm-analysis/
maven-metadata.xml 5 <version>6.0_ALPHA</version>
7 <latest>6.0_ALPHA</latest>
8 <release>6.0_ALPHA</release>
14 <version>5.0_ALPHA</version>
21 <version>6.0_ALPHA</version>
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm-commons/
maven-metadata.xml 5 <version>6.0_ALPHA</version>
7 <latest>6.0_ALPHA</latest>
8 <release>6.0_ALPHA</release>
14 <version>5.0_ALPHA</version>
21 <version>6.0_ALPHA</version>
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm-debug-all/
maven-metadata.xml 5 <version>6.0_ALPHA</version>
7 <latest>6.0_ALPHA</latest>
8 <release>6.0_ALPHA</release>
14 <version>5.0_ALPHA</version>
21 <version>6.0_ALPHA</version>
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm-parent/
maven-metadata.xml 5 <version>6.0_ALPHA</version>
7 <latest>6.0_ALPHA</latest>
8 <release>6.0_ALPHA</release>
14 <version>5.0_ALPHA</version>
21 <version>6.0_ALPHA</version>
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm-tree/
maven-metadata.xml 5 <version>6.0_ALPHA</version>
7 <latest>6.0_ALPHA</latest>
8 <release>6.0_ALPHA</release>
14 <version>5.0_ALPHA</version>
21 <version>6.0_ALPHA</version>
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wctype.h 102 #define _ALPHA (0x0100|_UPPER|_LOWER)
134 #define iswalpha(_c) (iswctype(_c,_ALPHA))
141 #define iswalnum(_c) (iswctype(_c,_ALPHA|_DIGIT))
142 #define iswprint(_c) (iswctype(_c,_BLANK|_PUNCT|_ALPHA|_DIGIT))
143 #define iswgraph(_c) (iswctype(_c,_PUNCT|_ALPHA|_DIGIT))
149 __CRT_INLINE int __cdecl iswalpha(wint_t _C) {return (iswctype(_C,_ALPHA)); }
156 __CRT_INLINE int __cdecl iswalnum(wint_t _C) {return (iswctype(_C,_ALPHA|_DIGIT)); }
157 __CRT_INLINE int __cdecl iswprint(wint_t _C) {return (iswctype(_C,_BLANK|_PUNCT|_ALPHA|_DIGIT)); }
158 __CRT_INLINE int __cdecl iswgraph(wint_t _C) {return (iswctype(_C,_PUNCT|_ALPHA|_DIGIT)); }
ctype.h 95 #define _ALPHA (0x0100|_UPPER|_LOWER)
204 #define _isalpha_l(_Char,_Locale) _ischartype_l(_Char,_ALPHA,_Locale)
211 #define _isalnum_l(_Char,_Locale) _ischartype_l(_Char,_ALPHA|_DIGIT,_Locale)
212 #define _isprint_l(_Char,_Locale) _ischartype_l(_Char,_BLANK|_PUNCT|_ALPHA|_DIGIT,_Locale)
213 #define _isgraph_l(_Char,_Locale) _ischartype_l(_Char,_PUNCT|_ALPHA|_DIGIT,_Locale)
225 #define iswalpha(_c) (iswctype(_c,_ALPHA))
232 #define iswalnum(_c) (iswctype(_c,_ALPHA|_DIGIT))
233 #define iswprint(_c) (iswctype(_c,_BLANK|_PUNCT|_ALPHA|_DIGIT))
234 #define iswgraph(_c) (iswctype(_c,_PUNCT|_ALPHA|_DIGIT))
237 #define _iswalpha_l(_c,_p) (_iswctype_l(_c,_ALPHA,_p)
    [all...]
wchar.h 217 #define _ALPHA (0x0100|_UPPER|_LOWER)
331 #define iswalpha(_c) (iswctype(_c,_ALPHA))
338 #define iswalnum(_c) (iswctype(_c,_ALPHA|_DIGIT))
339 #define iswprint(_c) (iswctype(_c,_BLANK|_PUNCT|_ALPHA|_DIGIT))
340 #define iswgraph(_c) (iswctype(_c,_PUNCT|_ALPHA|_DIGIT))
344 #define _iswalpha_l(_c,_p) (_iswctype_l(_c,_ALPHA,_p))
351 #define _iswalnum_l(_c,_p) (_iswctype_l(_c,_ALPHA|_DIGIT,_p))
352 #define _iswprint_l(_c,_p) (_iswctype_l(_c,_BLANK|_PUNCT|_ALPHA|_DIGIT,_p))
353 #define _iswgraph_l(_c,_p) (_iswctype_l(_c,_PUNCT|_ALPHA|_DIGIT,_p))
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/
ctype.h 71 __inline int (isalpha)(int c) { return _isctype(c, _ALPHA); }
78 __inline int (isalnum)(int c) { return _isctype(c, _ALPHA|_DIGIT); }
79 __inline int (isprint)(int c) { return _isctype(c, _BLANK|_PUNCT|_ALPHA|_DIGIT); }
80 __inline int (isgraph)(int c) { return _isctype(c, _PUNCT|_ALPHA|_DIGIT); }
86 __inline int (iswalpha)(int c) { return iswctype((unsigned short)(c), _ALPHA); }
93 __inline int (iswalnum)(int c) { return iswctype((unsigned short)(c), _ALPHA|_DIGIT); }
94 __inline int (iswprint)(int c) { return iswctype((unsigned short)(c), _BLANK|_PUNCT|_ALPHA|_DIGIT); }
95 __inline int (iswgraph)(int c) { return iswctype((unsigned short)(c), _PUNCT|_ALPHA|_DIGIT); }
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/
ctype.h 71 __inline int (isalpha)(int c) { return _isctype(c, _ALPHA); }
78 __inline int (isalnum)(int c) { return _isctype(c, _ALPHA|_DIGIT); }
79 __inline int (isprint)(int c) { return _isctype(c, _BLANK|_PUNCT|_ALPHA|_DIGIT); }
80 __inline int (isgraph)(int c) { return _isctype(c, _PUNCT|_ALPHA|_DIGIT); }
86 __inline int (iswalpha)(int c) { return iswctype((unsigned short)(c), _ALPHA); }
93 __inline int (iswalnum)(int c) { return iswctype((unsigned short)(c), _ALPHA|_DIGIT); }
94 __inline int (iswprint)(int c) { return iswctype((unsigned short)(c), _BLANK|_PUNCT|_ALPHA|_DIGIT); }
95 __inline int (iswgraph)(int c) { return iswctype((unsigned short)(c), _PUNCT|_ALPHA|_DIGIT); }
  /packages/apps/Settings/
wrap_alpha.py 10 if "_alpha.png" in before: continue
13 after = before.replace(".png", "_alpha.png")
26 alpha = src.endswith("_alpha")
  /frameworks/base/packages/DocumentsUI/
wrap_alpha.py 11 if "_alpha.png" in before: continue
13 after = before.replace(".png", "_alpha.png")
27 alpha = src.endswith("_alpha")
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm-util/
maven-metadata.xml 14 <version>5.0_ALPHA</version>
  /external/eigen/bench/btl/actions/
action_axpby.hh 36 Action_axpby( int size ):_size(size),_alpha(0.5),_beta(0.95)
89 Interface::axpby(_alpha,X,_beta,Y,_size);
98 STL_interface<typename Interface::real_type>::axpby(_alpha,X_stl,_beta,Y_stl,_size);
121 typename Interface::real_type _alpha; member in class:Action_axpby
  /external/opencv3/modules/ml/src/
svm.cpp 478 vector<double>& _alpha, const vector<double>& _b,
491 alpha_vec = &_alpha;
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/r200/
r200_texstate.c 67 #define _ALPHA(f) \
86 _ALPHA(ARGB8888),
91 _ALPHA(ARGB4444),
93 _ALPHA(ARGB1555),
95 _ALPHA(AL88),
97 _ALPHA(A8),
99 _ALPHA(I8),
105 _ALPHA(RGBA_DXT1),
106 _ALPHA(RGBA_DXT3),
107 _ALPHA(RGBA_DXT5)
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_texstate.c 70 #define _ALPHA(f) \
89 _ALPHA(RGBA8888),
91 _ALPHA(ARGB8888),
96 _ALPHA(ARGB4444),
98 _ALPHA(ARGB1555),
100 _ALPHA(AL88),
102 _ALPHA(A8),
104 _ALPHA(I8),
110 _ALPHA(RGBA_DXT1),
111 _ALPHA(RGBA_DXT3)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/32/bits/
ctype_base.h 32 // relies on a combination of flags) and the '_ALPHA' mask is also a
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/bits/
ctype_base.h 32 // relies on a combination of flags) and the '_ALPHA' mask is also a
  /external/opencv/cv/src/
cvsnakes.cpp 97 float _alpha, _beta, _gamma; local
349 _alpha = *alpha;
355 _alpha = alpha[i];
363 E[k] = _alpha * Econt[k] + _beta * Ecurv[k] + _gamma * Eimg[k];
  /external/opencv/cvaux/include/
cvmat.hpp     [all...]
  /external/opencv/ml/src/
mlsvm.cpp 387 int _alpha_count, double* _alpha, double _Cp, double _Cn,
392 create( _sample_count, _var_count, _samples, _y, _alpha_count, _alpha, _Cp, _Cn,
398 int _alpha_count, double* _alpha, double _Cp, double _Cn,
418 alpha = _alpha;
956 CvSVMKernel* _kernel, double* _alpha, CvSVMSolutionInfo& _si )
961 _alpha, _Cp, _Cn, _storage, _kernel, &CvSVMSolver::get_row_svc,
983 double* _alpha, CvSVMSolutionInfo& _si )
989 _alpha, 1., 1., _storage, _kernel, &CvSVMSolver::get_row_svc,
1030 double* _alpha, CvSVMSolutionInfo& _si )
1036 _alpha, 1., 1., _storage, _kernel, &CvSVMSolver::get_row_one_class
    [all...]
  /external/opencv3/modules/core/src/
matmul.cpp     [all...]
  /external/ImageMagick/Magick++/lib/
STL.cpp 406 _alpha(alpha_),
415 image_.floodFillAlpha(_x,_y,_alpha,_target,_invert);
742 : _alpha( alpha_ )
747 image_.alpha( _alpha );
    [all...]

Completed in 2027 milliseconds

1 2