/packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/filters/ |
SaturationFilter.java | 42 public void process(Photo src, Photo dst) { 45 effect.apply(src.texture(), src.width(), src.height(), dst.texture());
|
ShadowFilter.java | 42 public void process(Photo src, Photo dst) { 46 effect.apply(src.texture(), src.width(), src.height(), dst.texture());
|
SharpenFilter.java | 42 public void process(Photo src, Photo dst) { 45 effect.apply(src.texture(), src.width(), src.height(), dst.texture());
|
StraightenFilter.java | 39 public void process(Photo src, Photo dst) { 43 effect.apply(src.texture(), src.width(), src.height(), dst.texture());
|
TintFilter.java | 37 public void process(Photo src, Photo dst) { 40 effect.apply(src.texture(), src.width(), src.height(), dst.texture());
|
VignetteFilter.java | 42 public void process(Photo src, Photo dst) { 45 effect.apply(src.texture(), src.width(), src.height(), dst.texture());
|
/sdk/chimpchat/ |
Android.mk | 17 include $(CHIMPCHAT_LOCAL_DIR)/src/Android.mk
|
/sdk/eventanalyzer/ |
Android.mk | 18 include $(EVENTANALUZER_LOCAL_DIR)/src/Android.mk
|
/sdk/screenshot/ |
Android.mk | 18 include $(SCREENSHOT2_LOCAL_DIR)/src/Android.mk
|
/external/skia/src/animator/ |
SkTypedArray.cpp | 46 SkDS32Array::SkDS32Array(const SkDS32Array& src) 53 SkDS32Array tmp(src.fArray, src.fCount); 57 SkDS32Array::SkDS32Array(const int32_t src[], U16CPU count) 59 SkASSERT(src || count == 0); 72 memcpy(fArray, src, sizeof(int32_t) * count); 77 SkDS32Array& SkDS32Array::operator=(const SkDS32Array& src) 79 if (this != &src) 81 if (src.fCount > fReserve) 83 SkDS32Array tmp(src.fArray, src.fCount) [all...] |
SkBase64.cpp | 48 const unsigned char* src = (const unsigned char*) srcPtr; local 51 const unsigned char* end = src + size; 52 while (src < end) { 56 unsigned char srcByte = *src++; 71 if (*src) 120 const unsigned char* src = (const unsigned char*) srcPtr; 124 const unsigned char* end = &src[length - remainder]; 125 while (src < end) { 126 unsigned a = *src++; 127 unsigned b = *src++ [all...] |
/bionic/libc/inet/ |
inet_pton.c | 61 static int inet_pton4(const char *src, u_char *dst, int pton); 62 static int inet_pton6(const char *src, u_char *dst); 65 * inet_pton(af, src, dst) 76 inet_pton(int af, const char *src, void *dst) 79 _DIAGASSERT(src != NULL); 84 return (inet_pton4(src, dst, 1)); 86 return (inet_pton6(src, dst)); 95 * inet_pton4(src, dst, pton) 99 * 1 if `src' is a valid input, else 0. 106 inet_pton4(const char *src, u_char *dst, int pton [all...] |
/frameworks/base/media/libdrm/mobile1/ |
Android.mk | 22 src/objmng/drm_decoder.c \ 23 src/objmng/drm_file.c \ 24 src/objmng/drm_i18n.c \ 25 src/objmng/drm_time.c \ 26 src/objmng/drm_api.c \ 27 src/objmng/drm_rights_manager.c \ 28 src/parser/parser_dcf.c \ 29 src/parser/parser_dm.c \ 30 src/parser/parser_rel.c \ 31 src/xml/xml_tinyparser. [all...] |
/frameworks/base/media/mtp/ |
MtpStringBuffer.cpp | 33 MtpStringBuffer::MtpStringBuffer(const char* src) 37 set(src); 40 MtpStringBuffer::MtpStringBuffer(const uint16_t* src) 44 set(src); 47 MtpStringBuffer::MtpStringBuffer(const MtpStringBuffer& src) 48 : mCharCount(src.mCharCount), 49 mByteCount(src.mByteCount) 51 memcpy(mBuffer, src.mBuffer, mByteCount); 58 void MtpStringBuffer::set(const char* src) { 59 int length = strlen(src); 144 const uint8_t* src = mBuffer; local [all...] |
/external/chromium/base/ |
utf_string_conversion_utils.cc | 13 bool ReadUnicodeCharacter(const char* src, 21 CBU8_NEXT(src, *char_index, src_len, code_point); 32 bool ReadUnicodeCharacter(const char16* src, 36 if (CBU16_IS_SURROGATE(src[*char_index])) { 37 if (!CBU16_IS_SURROGATE_LEAD(src[*char_index]) || 39 !CBU16_IS_TRAIL(src[*char_index + 1])) { 45 *code_point = CBU16_GET_SUPPLEMENTARY(src[*char_index], 46 src[*char_index + 1]); 50 *code_point = src[*char_index]; 57 bool ReadUnicodeCharacter(const wchar_t* src, [all...] |
/frameworks/base/include/utils/ |
AssetDir.h | 69 AssetDir(const AssetDir& src); 70 const AssetDir& operator=(const AssetDir& src); 84 FileInfo(const FileInfo& src) { 85 copyMembers(src); 87 const FileInfo& operator= (const FileInfo& src) { 88 if (this != &src) 89 copyMembers(src); 93 void copyMembers(const FileInfo& src) { 94 mFileName = src.mFileName; 95 mFileType = src.mFileType [all...] |
Unicode.h | 56 ssize_t utf32_to_utf8_length(const char32_t *src, size_t src_len); 59 * Stores a UTF-8 string converted from "src" in "dst", if "dst_length" is not 60 * large enough to store the string, the part of the "src" string is stored 66 * "src" == \u3042\u3044 (\xE3\x81\x82\xE3\x81\x84) 75 * "src" == \u3042\u3044 (\xE3\x81\x82\xE3\x81\x84) 85 * "src" == \u3042\u3044 (\xE3\x81\x82\xE3\x81\x84) 93 void utf32_to_utf8(const char32_t* src, size_t src_len, char* dst); 102 int32_t utf32_from_utf8_at(const char *src, size_t src_len, size_t index, size_t *next_index); 106 * Returns the UTF-8 length of UTF-16 string "src". 108 ssize_t utf16_to_utf8_length(const char16_t *src, size_t src_len) [all...] |
/frameworks/base/media/libeffects/lvm/lib/Common/src/ |
Core_MixSoft_1St_D32C31_WRA.c | 30 const LVM_INT32 *src, 59 Temp1=*src; 60 src++; 73 Temp1=*src; 74 src++; 80 Temp1=*src; 81 src++; 87 Temp1=*src; 88 src++; 94 Temp1=*src; [all...] |
LVC_MixInSoft_D16C31_SAT.c | 38 LVM_INT16 *src, 65 Shift_Sat_v16xv16 ((LVM_INT16)pInstance->Shift,src,src,n); 66 LVC_Core_MixInSoft_D16C31_SAT( &(ptrInstance->MixerStream[0]), src, dst, n); 69 LVC_Core_MixInSoft_D16C31_SAT( &(ptrInstance->MixerStream[0]), src, dst, n); 81 Shift_Sat_v16xv16 ((LVM_INT16)pInstance->Shift,src,src,n); 82 Add2_Sat_16x16( src, dst, n ); 86 Shift_Sat_v16xv16 ((LVM_INT16)pInstance->Shift,src,src,n) [all...] |
/packages/inputmethods/PinyinIME/jni/share/ |
utf16char.cpp | 123 char16* utf16_strcpy(char16 *dst, const char16 *src) { 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) { 141 if (NULL == src || NULL == dst || 0 == size) 144 if (src == dst) 149 if (dst < src || (dst > src && dst >= src + size)) [all...] |
/external/collada/include/dae/ |
daeAtomicType.h | 64 * @param src Source of the raw data from which to get the typed items. 68 virtual daeBool memoryToString(daeChar* src, std::ostringstream& dst) = 0; 72 * @param src Source string. 76 virtual daeBool stringToMemory(daeChar* src, daeChar* dst); 88 * @param src Whitespace separated list of items. 92 virtual daeBool stringToArray(daeChar* src, daeArray& array); 135 * @param src Memory location of the value to copy from. 138 virtual void copy(daeChar* src, daeChar* dst) = 0; 142 * @param src Array to copy from. 145 virtual void copyArray(daeArray& src, daeArray& dst) [all...] |
/bionic/libc/string/ |
memccpy.c | 31 void *memccpy(void *dst, const void *src, int c, size_t n) 34 const char* p = src;
|
strncpy.c | 42 * Copy src to dst, truncating or null-padding to always copy n bytes. 46 strncpy(char *dst, const char *src, size_t n) 50 const char *s = src;
|
/cts/tools/dx-tests/scripts/ |
jm.sh | 20 java -jar lib/jasmin.jar -d out/classes_jasmin src/dxc/junit/**/**/**/*.j
|
/development/samples/RenderScript/Balls/ |
Android.mk | 22 LOCAL_SRC_FILES := $(call all-java-files-under, src) $(call all-renderscript-files-under, src)
|