Home
last modified time | relevance | path

Searched refs:is (Results 1 – 25 of 211) sorted by relevance

123456789

/packages/apps/LegacyCamera/jni/feature_stab/doc/
Ddbreg_API_doxyfile6 # All text after a hash (#) is considered a comment and will be ignored
7 # The format is:
18 # that follow. The default is UTF-8 which is also the encoding used for all
25 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
32 # if some version control system is used.
36 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
38 # If a relative path is entered, it will be relative to the location
43 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
52 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
53 # documentation generated by doxygen is written. Doxygen will use this
[all …]
/packages/apps/Camera/jni/feature_stab/doc/
Ddbreg_API_doxyfile6 # All text after a hash (#) is considered a comment and will be ignored
7 # The format is:
18 # that follow. The default is UTF-8 which is also the encoding used for all
25 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
32 # if some version control system is used.
36 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
38 # If a relative path is entered, it will be relative to the location
43 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
52 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
53 # documentation generated by doxygen is written. Doxygen will use this
[all …]
/packages/apps/LegacyCamera/jni/feature_mos/doc/
Dfeature_mos_API_doxyfile6 # All text after a hash (#) is considered a comment and will be ignored
7 # The format is:
18 # that follow. The default is UTF-8 which is also the encoding used for all
25 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
32 # if some version control system is used.
36 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
38 # If a relative path is entered, it will be relative to the location
43 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
52 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
53 # documentation generated by doxygen is written. Doxygen will use this
[all …]
/packages/apps/Camera/jni/feature_mos/doc/
Dfeature_mos_API_doxyfile6 # All text after a hash (#) is considered a comment and will be ignored
7 # The format is:
18 # that follow. The default is UTF-8 which is also the encoding used for all
25 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded
32 # if some version control system is used.
36 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
38 # If a relative path is entered, it will be relative to the location
43 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create
52 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
53 # documentation generated by doxygen is written. Doxygen will use this
[all …]
/packages/apps/Launcher3/WallpaperPicker/src/com/android/photos/
DBitmapRegionTileSource.java71 InputStream is, boolean isShareable) { in newInstance() argument
73 BitmapRegionDecoder d = BitmapRegionDecoder.newInstance(is, isShareable); in newInstance()
108 public static DumbBitmapRegionDecoder newInstance(InputStream is) { in newInstance() argument
109 Bitmap b = BitmapFactory.decodeStream(is); in newInstance()
267 InputStream is = mContext.getContentResolver().openInputStream(mUri); in regenerateInputStream() local
268 return new BufferedInputStream(is); in regenerateInputStream()
273 InputStream is = regenerateInputStream(); in loadBitmapRegionDecoder() local
275 SimpleBitmapRegionDecoderWrapper.newInstance(is, false); in loadBitmapRegionDecoder()
276 Utils.closeSilently(is); in loadBitmapRegionDecoder()
278 is = regenerateInputStream(); in loadBitmapRegionDecoder()
[all …]
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
DMimeStreamParser.java83 public void parse(InputStream is) throws IOException { in parse() argument
84 rootStream = new RootInputStream(is); in parse()
136 private void parseEntity(InputStream is) throws IOException { in parseEntity() argument
137 BodyDescriptor bd = parseHeader(is); in parseEntity()
145 new MimeBoundaryInputStream(is, bd.getBoundary()); in parseEntity()
150 tempIs = new MimeBoundaryInputStream(is, bd.getBoundary()); in parseEntity()
165 handler.epilogue(new CloseShieldInputStream(is)); in parseEntity()
174 is = new EOLConvertingInputStream( in parseEntity()
175 new Base64InputStream(is)); in parseEntity()
178 is = new EOLConvertingInputStream( in parseEntity()
[all …]
DCloseShieldInputStream.java37 private InputStream is; field in CloseShieldInputStream
39 public CloseShieldInputStream(InputStream is) { in CloseShieldInputStream() argument
40 this.is = is; in CloseShieldInputStream()
44 return is; in getUnderlyingStream()
52 return is.read(); in read()
60 return is.available(); in available()
68 is = null; in close()
76 is.reset(); in reset()
83 if (is == null) in markSupported()
85 return is.markSupported(); in markSupported()
[all …]
/packages/apps/Email/tests/src/com/android/email/mail/store/imap/
DImapListTest.java67 assertFalse(list.is(0, "abc")); in testIs()
68 assertFalse(list.is(1, "ab")); in testIs()
69 assertTrue (list.is(1, "abc")); in testIs()
70 assertFalse(list.is(2, "abc")); in testIs()
71 assertFalse(list.is(3, "abc")); in testIs()
72 assertFalse(list.is(4, "abc")); in testIs()
74 assertFalse(list.is(0, "ab", false)); in testIs()
75 assertFalse(list.is(1, "ab", false)); in testIs()
76 assertTrue (list.is(1, "abc", false)); in testIs()
77 assertFalse(list.is(2, "ab", false)); in testIs()
[all …]
/packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/
DWallpaperCropActivity.java281 InputStream is = null; in getRotationFromExifHelper() local
287 is = context.getContentResolver().openInputStream(uri); in getRotationFromExifHelper()
288 bis = new BufferedInputStream(is); in getRotationFromExifHelper()
291 is = res.openRawResource(resId); in getRotationFromExifHelper()
292 bis = new BufferedInputStream(is); in getRotationFromExifHelper()
306 Utils.closeSilently(is); in getRotationFromExifHelper()
561 InputStream is = regenerateInputStream();
562 if (is != null) {
565 BitmapFactory.decodeStream(is, null, options);
566 Utils.closeSilently(is);
[all …]
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/
DMessage.java64 public Message(InputStream is) throws IOException { in Message() argument
67 parser.parse(is); in Message()
175 public void body(BodyDescriptor bd, InputStream is) throws IOException { in body() argument
180 is = new Base64InputStream(is); in body()
182 is = new QuotedPrintableInputStream(is); in body()
187 body = new MemoryTextBody(is, bd.getCharset()); in body()
189 body = new MemoryBinaryBody(is); in body()
224 public void epilogue(InputStream is) throws IOException { in epilogue() argument
228 while ((b = is.read()) != -1) { in epilogue()
237 public void preamble(InputStream is) throws IOException { in preamble() argument
[all …]
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/
DImageLoader.java133 InputStream is = null; in getMetadataOrientation() local
144 is = context.getContentResolver().openInputStream(uri); in getMetadataOrientation()
145 exif.readExif(is); in getMetadataOrientation()
152 if (is != null) { in getMetadataOrientation()
153 is.close(); in getMetadataOrientation()
257 InputStream is = null; in loadRegionBitmap() local
264 is = context.getContentResolver().openInputStream(uri); in loadRegionBitmap()
265 BitmapRegionDecoder decoder = BitmapRegionDecoder.newInstance(is, false); in loadRegionBitmap()
293 Utils.closeSilently(is); in loadRegionBitmap()
327 InputStream is = null; in loadBitmap() local
[all …]
/packages/apps/Camera2/src/com/android/camera/util/
DXmpUtil.java105 public static XMPMeta extractXMPMeta(InputStream is) { in extractXMPMeta() argument
106 List<Section> sections = parse(is, true); in extractXMPMeta()
338 private static List<Section> parse(InputStream is, boolean readMetaOnly) { in parse() argument
340 if (is.read() != 0xff || is.read() != M_SOI) { in parse()
345 while ((c = is.read()) != -1) { in parse()
350 while ((c = is.read()) == 0xff) { in parse()
363 section.data = new byte[is.available()]; in parse()
364 is.read(section.data, 0, section.data.length); in parse()
369 int lh = is.read(); in parse()
370 int ll = is.read(); in parse()
[all …]
/packages/inputmethods/OpenWnn/
DChangeLog.txt12 - Display style of the candidates view is changed.
15 - Layout of soft keyboard is changed.
16 - Layout of symbol list is changed.
17 - Layout of emoticon list is changed.
31 * Bug of Romaji-to-Kana conversion on phonetic text field is fixed.
37 * User Dictionary's bug on WVGA is fixed.
50 * Japanese input on E-mail address field is allowed.
55 * Emoji is disabled.
63 - Display style of the candidates view is changed.
64 - Simple tutorial is added.
[all …]
/packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
DImportProcessor.java158 InputStream is = null; in runInternal() local
163 is = mResolver.openInputStream(uri); in runInternal()
166 is = new ByteArrayInputStream(request.data); in runInternal()
169 if (is != null) { in runInternal()
170 successful = readOneVCard(is, estimatedVCardType, estimatedCharset, constructor, in runInternal()
176 if (is != null) { in runInternal()
178 is.close(); in runInternal()
215 private boolean readOneVCard(InputStream is, int vcardType, String charset, in readOneVCard() argument
242 mVCardParser.parse(is, interpreter); in readOneVCard()
268 if (is != null) { in readOneVCard()
[all …]
/packages/apps/Mms/src/com/android/mms/exif/
DExifInterface.java760 InputStream is = null; in readExif() local
762 is = new BufferedInputStream(new FileInputStream(inFileName)); in readExif()
763 readExif(is); in readExif()
765 closeSilently(is); in readExif()
768 is.close(); in readExif()
939 InputStream is = null; in writeExif() local
941 is = new FileInputStream(jpegFileName); in writeExif()
942 writeExif(is, exifOutFileName); in writeExif()
944 closeSilently(is); in writeExif()
947 is.close(); in writeExif()
[all …]
DExifModifier.java54 InputStream is = null; in ExifModifier() local
56 is = new ByteBufferInputStream(byteBuffer); in ExifModifier()
58 ExifParser parser = ExifParser.parse(is, mInterface); in ExifModifier()
63 ExifInterface.closeSilently(is); in ExifModifier()
72 InputStream is = null; in commit() local
74 is = new ByteBufferInputStream(mByteBuffer); in commit()
100 ExifParser parser = ExifParser.parse(is, flag, mInterface); in commit()
137 ExifInterface.closeSilently(is); in commit()
/packages/apps/Camera2/src/com/android/camera/exif/
DExifInterface.java760 InputStream is = null; in readExif() local
762 is = new BufferedInputStream(new FileInputStream(inFileName)); in readExif()
763 readExif(is); in readExif()
765 closeSilently(is); in readExif()
768 is.close(); in readExif()
939 InputStream is = null; in writeExif() local
941 is = new FileInputStream(jpegFileName); in writeExif()
942 writeExif(is, exifOutFileName); in writeExif()
944 closeSilently(is); in writeExif()
947 is.close(); in writeExif()
[all …]
DExifModifier.java52 InputStream is = null; in ExifModifier() local
54 is = new ByteBufferInputStream(byteBuffer); in ExifModifier()
56 ExifParser parser = ExifParser.parse(is, mInterface); in ExifModifier()
61 ExifInterface.closeSilently(is); in ExifModifier()
70 InputStream is = null; in commit() local
72 is = new ByteBufferInputStream(mByteBuffer); in commit()
98 ExifParser parser = ExifParser.parse(is, flag, mInterface); in commit()
135 ExifInterface.closeSilently(is); in commit()
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
DExifInterface.java760 InputStream is = null; in readExif() local
762 is = (InputStream) new BufferedInputStream(new FileInputStream(inFileName)); in readExif()
763 readExif(is); in readExif()
765 closeSilently(is); in readExif()
768 is.close(); in readExif()
939 InputStream is = null; in writeExif() local
941 is = new FileInputStream(jpegFileName); in writeExif()
942 writeExif(is, exifOutFileName); in writeExif()
944 closeSilently(is); in writeExif()
947 is.close(); in writeExif()
[all …]
DExifModifier.java53 InputStream is = null; in ExifModifier() local
55 is = new ByteBufferInputStream(byteBuffer); in ExifModifier()
57 ExifParser parser = ExifParser.parse(is, mInterface); in ExifModifier()
62 ExifInterface.closeSilently(is); in ExifModifier()
71 InputStream is = null; in commit() local
73 is = new ByteBufferInputStream(mByteBuffer); in commit()
99 ExifParser parser = ExifParser.parse(is, flag, mInterface); in commit()
136 ExifInterface.closeSilently(is); in commit()
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/exif/
DExifInterface.java760 InputStream is = null; in readExif() local
762 is = (InputStream) new BufferedInputStream(new FileInputStream(inFileName)); in readExif()
763 readExif(is); in readExif()
765 closeSilently(is); in readExif()
768 is.close(); in readExif()
939 InputStream is = null; in writeExif() local
941 is = new FileInputStream(jpegFileName); in writeExif()
942 writeExif(is, exifOutFileName); in writeExif()
944 closeSilently(is); in writeExif()
947 is.close(); in writeExif()
[all …]
DExifModifier.java52 InputStream is = null; in ExifModifier() local
54 is = new ByteBufferInputStream(byteBuffer); in ExifModifier()
56 ExifParser parser = ExifParser.parse(is, mInterface); in ExifModifier()
61 ExifInterface.closeSilently(is); in ExifModifier()
70 InputStream is = null; in commit() local
72 is = new ByteBufferInputStream(mByteBuffer); in commit()
98 ExifParser parser = ExifParser.parse(is, flag, mInterface); in commit()
135 ExifInterface.closeSilently(is); in commit()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/tools/
DXmpPresets.java62 InputStream is = null; in writeFilterXMP() local
65 is = context.getContentResolver().openInputStream(srcUri); in writeFilterXMP()
66 xmpMeta = XmpUtilHelper.extractXMPMeta(is); in writeFilterXMP()
70 Utils.closeSilently(is); in writeFilterXMP()
95 InputStream is = null; in extractXMPData() local
98 is = context.getContentResolver().openInputStream(uriToEdit); in extractXMPData()
99 xmpMeta = XmpUtilHelper.extractXMPMeta(is); in extractXMPData()
102 Utils.closeSilently(is); in extractXMPData()
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
DCharMatcher.java118 .or(is('\u1680'))
119 .or(is('\u180e'))
123 .or(is('\u205f'))
124 .or(is('\u3000'));
194 .or(is('\u00ad'))
201 .or(is('\u3000'))
214 .or(is('\u05be'))
216 .or(is('\u05f3'))
217 .or(is('\u05f4'))
379 public static CharMatcher is(final char match) { in is() method in CharMatcher
[all …]
/packages/apps/UnifiedEmail/src/com/android/mail/lib/base/
DCharMatcher.java118 .or(is('\u1680'))
119 .or(is('\u180e'))
123 .or(is('\u205f'))
124 .or(is('\u3000'));
194 .or(is('\u00ad'))
201 .or(is('\u3000'))
214 .or(is('\u05be'))
216 .or(is('\u05f3'))
217 .or(is('\u05f4'))
379 public static CharMatcher is(final char match) { in is() method in CharMatcher
[all …]

123456789