Home
last modified time | relevance | path

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

12345678

/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/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/Gallery2/jni_mosaic/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_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/Gallery2/jni_mosaic/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/Email/src/org/apache/james/mime4j/
DMimeStreamParser.java86 public void parse(InputStream is) throws IOException { in parse() argument
88 is = new LoggingInputStream(is, "MIME", true); in parse()
90 rootStream = new RootInputStream(is); in parse()
142 private void parseEntity(InputStream is) throws IOException { in parseEntity() argument
143 BodyDescriptor bd = parseHeader(is); in parseEntity()
151 new MimeBoundaryInputStream(is, bd.getBoundary()); in parseEntity()
156 tempIs = new MimeBoundaryInputStream(is, bd.getBoundary()); in parseEntity()
170 handler.epilogue(new CloseShieldInputStream(is)); in parseEntity()
179 is = new EOLConvertingInputStream( in parseEntity()
180 new Base64InputStream(is)); 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 …]
DRootInputStream.java36 private InputStream is = null; field in RootInputStream
46 public RootInputStream(InputStream is) { in RootInputStream() argument
47 this.is = is; in RootInputStream()
78 int b = is.read(); in read()
95 int n = is.read(b, off, len); in read()
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/
DImageLoader.java162 InputStream is = null; in getOrientation() local
269 InputStream is = null; in loadRegionBitmap() local
271 is = mContext.getContentResolver().openInputStream(uri); in loadRegionBitmap()
272 BitmapRegionDecoder decoder = BitmapRegionDecoder.newInstance(is, false); in loadRegionBitmap()
284 Utils.closeSilently(is); in loadRegionBitmap()
294 InputStream is = null; in loadScaledBitmap() local
296 is = mContext.getContentResolver().openInputStream(uri); in loadScaledBitmap()
298 + is); in loadScaledBitmap()
301 BitmapFactory.decodeStream(is, null, o); in loadScaledBitmap()
330 Utils.closeSilently(is); in loadScaledBitmap()
[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 …]
DImapStringTest.java53 assertTrue(ImapString.EMPTY.is("")); in testEmpty()
55 assertFalse(ImapString.EMPTY.is("a")); in testEmpty()
70 assertFalse(s.is(null)); in testBasics()
71 assertFalse(s.is("")); in testBasics()
72 assertTrue(s.is("abcd")); in testBasics()
73 assertFalse(s.is("abc")); in testBasics()
/packages/apps/Email/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/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 …]
DNfcImportVCardActivity.java92 ByteArrayInputStream is = new ByteArrayInputStream(mRecord.getPayload()); in createImportRequest() local
93 is.mark(0); in createImportRequest()
100 parser.parse(is); in createImportRequest()
102 is.reset(); in createImportRequest()
110 parser.parse(is); in createImportRequest()
116 if (is != null) is.close(); in createImportRequest()
/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/Gallery2/src/com/android/gallery3d/filtershow/crop/
DCropLoader.java119 InputStream is = null; in getConstrainedBitmap() local
122 is = context.getContentResolver().openInputStream(uri); in getConstrainedBitmap()
125 BitmapFactory.decodeStream(is, null, options); in getConstrainedBitmap()
154 is.close(); in getConstrainedBitmap()
155 is = context.getContentResolver().openInputStream(uri); in getConstrainedBitmap()
156 return BitmapFactory.decodeStream(is, null, options); in getConstrainedBitmap()
162 Utils.closeSilently(is); in getConstrainedBitmap()
179 InputStream is = null; in getBitmap() local
181 is = context.getContentResolver().openInputStream(uri); in getBitmap()
185 return BitmapFactory.decodeStream(is, null, options); in getBitmap()
[all …]
/packages/apps/VideoEditor/src/com/android/videoeditor/util/
DFileUtils.java105 InputStream is = null; in getMaskFilename() local
107 is = context.getResources().openRawResource(maskRawResourceId); in getMaskFilename()
108 bitmap = BitmapFactory.decodeStream(is); in getMaskFilename()
118 if (is != null) { in getMaskFilename()
119 is.close(); in getMaskFilename()
196 InputStream is = null; in getAudioTrackFilename() local
198 is = context.getResources().openRawResource(rawResourceId); in getAudioTrackFilename()
202 while ((bytesRead = is.read(buffer)) > 0) { in getAudioTrackFilename()
206 if (is != null) { in getAudioTrackFilename()
207 is.close(); in getAudioTrackFilename()
/packages/apps/Exchange/exchange2/src/com/android/exchange/
DEasSyncService.java509 InputStream is = resp.getInputStream(); in validateAccount() local
513 new FolderSyncParser(is, new AccountSyncAdapter(this), true).parse(); in validateAccount()
748 InputStream is = resp.getInputStream(); in tryAutodiscover()
753 parser.setInput(is, "UTF-8"); in tryAutodiscover()
943 InputStream is = resp.getInputStream(); in searchGal() local
945 GalParser gp = new GalParser(is, svc); in searchGal()
950 is.close(); in searchGal()
1073 InputStream is = resp.getInputStream(); in messageMoveRequest() local
1074 MoveItemsParser p = new MoveItemsParser(is, this); in messageMoveRequest()
1137 InputStream is = resp.getInputStream(); in sendMeetingResponse() local
[all …]
DEasResponse.java107 InputStream is = null; in getInputStream() local
110 is = mEntity.getContent(); in getInputStream()
116 is = new GZIPInputStream(is); in getInputStream()
122 mInputStream = is; in getInputStream()
123 return is; in getInputStream()
/packages/inputmethods/LatinIME/dictionaries/
Dsample.combined1 # This is a sample wordlist that can be converted to a binary dictionary
3 # The file is essentially a CSV file, with indent level denoting nesting.
6 # the content, these are included as is in the binary file. The first attribute
13 # As a special case, a weight of 0 is taken to mean profanity - words that
17 # into the dictionary is to add shortcut targets and maybe a whitelist
23 # 15, which is then taken to be the whitelist target of this word.
27 # override the unigram frequency when following the word this bigram is
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DBluetoothOppSendFileInfo.java145 FileInputStream is = null; in generateFileInfo() local
163 is = fd.createInputStream(); in generateFileInfo()
175 if (is == null) { in generateFileInfo()
177 is = (FileInputStream) contentResolver.openInputStream(uri); in generateFileInfo()
186 length = is.available(); in generateFileInfo()
194 return new BluetoothOppSendFileInfo(fileName, contentType, length, is, 0); in generateFileInfo()
/packages/apps/Email/src/com/android/email/mail/store/imap/
DImapList.java70 public final boolean is(int index, String s) { in is() method in ImapList
71 return is(index, s, false); in is()
77 public final boolean is(int index, String s, boolean prefixMatch) { in is() method in ImapList
79 return getStringOrEmpty(index).is(s); in is()
117 if (is(i-1, key, prefixMatch)) { in getKeyedElementOrNull()
163 if (getStringOrEmpty(i).is(s)) { in contains()

12345678