Searched refs:src (Results 1 - 25 of 165) sorted by relevance

1234567

/packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/filters/
H A DCrossProcessFilter.java35 public void process(Photo src, Photo dst) { argument
37 src.texture(), src.width(), src.height(), dst.texture());
H A DDocumentaryFilter.java35 public void process(Photo src, Photo dst) { argument
37 src.texture(), src.width(), src.height(), dst.texture());
H A DGrayscaleFilter.java35 public void process(Photo src, Photo dst) { argument
37 src.texture(), src.width(), src.height(), dst.texture());
H A DLomoishFilter.java35 public void process(Photo src, Photo dst) { argument
37 src.texture(), src.width(), src.height(), dst.texture());
H A DNegativeFilter.java35 public void process(Photo src, Photo dst) { argument
37 src.texture(), src.width(), src.height(), dst.texture());
H A DPosterizeFilter.java35 public void process(Photo src, Photo dst) { argument
37 src.texture(), src.width(), src.height(), dst.texture());
H A DSepiaFilter.java35 public void process(Photo src, Photo dst) { argument
37 src.texture(), src.width(), src.height(), dst.texture());
H A DRotateFilter.java40 public void process(Photo src, Photo dst) { argument
42 dst.changeDimension(src.height(), src.width());
46 effect.apply(src.texture(), src.width(), src.height(), dst.texture());
H A DAutoFixFilter.java32 public void process(Photo src, Photo dst) { argument
35 effect.apply(src.texture(), src.width(), src.height(), dst.texture());
H A DColorTemperatureFilter.java33 public void process(Photo src, Photo dst) { argument
36 effect.apply(src.texture(), src.width(), src.height(), dst.texture());
H A DFaceTanFilter.java31 public void process(Photo src, Photo dst) { argument
34 effect.apply(src.texture(), src.width(), src.height(), dst.texture());
H A DFaceliftFilter.java31 public void process(Photo src, Photo dst) { argument
34 effect.apply(src.texture(), src.width(), src.height(), dst.texture());
H A DFillLightFilter.java32 public void process(Photo src, Photo dst) { argument
35 effect.apply(src.texture(), src.width(), src.height(), dst.texture());
H A DFisheyeFilter.java32 public void process(Photo src, Photo dst) { argument
35 effect.apply(src.texture(), src.width(), src.height(), dst.texture());
H A DGrainFilter.java32 public void process(Photo src, Photo dst) { argument
35 effect.apply(src.texture(), src.width(), src.height(), dst.texture());
H A DHighlightFilter.java32 public void process(Photo src, Photo dst) { argument
36 effect.apply(src.texture(), src.width(), src.height(), dst.texture());
H A DSaturationFilter.java32 public void process(Photo src, Photo dst) { argument
35 effect.apply(src.texture(), src.width(), src.height(), dst.texture());
H A DShadowFilter.java32 public void process(Photo src, Photo dst) { argument
36 effect.apply(src.texture(), src.width(), src.height(), dst.texture());
H A DSharpenFilter.java32 public void process(Photo src, Photo dst) { argument
35 effect.apply(src.texture(), src.width(), src.height(), dst.texture());
H A DVignetteFilter.java32 public void process(Photo src, Photo dst) { argument
35 effect.apply(src.texture(), src.width(), src.height(), dst.texture());
H A DCropFilter.java44 public void process(Photo src, Photo dst) { argument
45 dst.changeDimension(Math.round(bounds.width() * src.width()),
46 Math.round(bounds.height() * src.height()));
49 effect.setParameter("xorigin", Math.round(bounds.left * src.width()));
50 effect.setParameter("yorigin", Math.round(bounds.top * src.height()));
53 effect.apply(src.texture(), src.width(), src.height(), dst.texture());
/packages/inputmethods/OpenWnn/libs/libwnnDictionary/engine/
H A Dnj_str.c21 NJ_CHAR *nj_strcpy(NJ_CHAR *dst, NJ_CHAR *src) { argument
26 while (*src != NJ_CHAR_NUL) {
27 *dst++ = *src++;
29 *dst = *src;
33 NJ_CHAR *nj_strncpy(NJ_CHAR *dst, NJ_CHAR *src, NJ_UINT16 n) { argument
39 if (*src == NJ_CHAR_NUL) {
46 *d++ = *src++;
122 NJ_CHAR *nj_charncpy(NJ_CHAR *dst, NJ_CHAR *src, NJ_UINT16 n) { argument
129 for (i = NJ_CHAR_LEN(src); i != 0; i--) {
130 *d = *src;
143 nj_memcpy(NJ_UINT8 *dst, NJ_UINT8 *src, NJ_UINT16 n) argument
[all...]
/packages/apps/Camera/jni/
H A DAndroid.mk7 $(LOCAL_PATH)/feature_stab/src \
8 $(LOCAL_PATH)/feature_stab/src/dbreg \
9 $(LOCAL_PATH)/feature_mos/src \
10 $(LOCAL_PATH)/feature_mos/src/mosaic
17 feature_mos/src/mosaic/trsMatrix.cpp \
18 feature_mos/src/mosaic/AlignFeatures.cpp \
19 feature_mos/src/mosaic/Blend.cpp \
20 feature_mos/src/mosaic/Delaunay.cpp \
21 feature_mos/src/mosaic/ImageUtils.cpp \
22 feature_mos/src/mosai
[all...]
/packages/apps/Email/
H A Dremove-exchange-support.sh25 if [[ ! -d src/com/android/email/ ]] ; then
42 rm -fr src/com/android/exchange/ \
43 tests/src/com/android/exchange/
/packages/inputmethods/PinyinIME/jni/share/
H A Dutf16char.cpp123 char16* utf16_strcpy(char16 *dst, const char16 *src) { argument
124 if (NULL == src || NULL == dst)
129 while ((char16)'\0' != *src) {
130 *cp = *src;
132 src++;
135 *cp = *src;
140 char16* utf16_strncpy(char16 *dst, const char16 *src, size_t size) { argument
141 if (NULL == src || NULL == dst || 0 == size)
144 if (src == dst)
149 if (dst < src || (ds
163 utf16_strcpy_tochar(char *dst, const char16 *src) argument
[all...]

Completed in 358 milliseconds

1234567