Searched refs:is (Results 276 - 300 of 336) sorted by path

<<11121314

/frameworks/opt/chips/
H A DAndroid.mk10 # distributed under the License is distributed on an "AS IS" BASIS,
/frameworks/opt/chips/sample/
H A DAndroid.mk10 # distributed under the License is distributed on an "AS IS" BASIS,
/frameworks/opt/chips/src/com/android/ex/chips/
H A DDefaultPhotoManager.java11 * distributed under the License is distributed on an "AS IS" BASIS,
42 * For reading photos for directory contacts, this is the chunk size for
108 InputStream is = mContentResolver.openInputStream(
110 if (is != null) {
115 while ((size = is.read(buffer)) != -1) {
119 is.close();
/frameworks/opt/chips/tests/
H A DAndroid.mk10 # distributed under the License is distributed on an "AS IS" BASIS,
/frameworks/opt/colorpicker/
H A DAndroid.mk10 # distributed under the License is distributed on an "AS IS" BASIS,
/frameworks/opt/datetimepicker/
H A DAndroid.mk10 # distributed under the License is distributed on an "AS IS" BASIS,
/frameworks/opt/emoji/
H A DAndroid.mk10 # distributed under the License is distributed on an "AS IS" BASIS,
/frameworks/opt/inputmethodcommon/
H A DAndroid.mk10 # distributed under the License is distributed on an "AS IS" BASIS,
/frameworks/opt/mms/
H A DAndroid.mk10 # distributed under the License is distributed on an "AS IS" BASIS,
/frameworks/opt/net/ethernet/
H A DAndroid.mk10 # distributed under the License is distributed on an "AS IS" BASIS,
/frameworks/opt/net/ims/
H A DAndroid.mk10 # distributed under the License is distributed on an "AS IS" BASIS,
/frameworks/opt/net/voip/
H A DAndroid.mk10 # distributed under the License is distributed on an "AS IS" BASIS,
/frameworks/opt/net/wifi/service/
H A DAndroid.mk10 # distributed under the License is distributed on an "AS IS" BASIS,
48 # this is commented because none of the nexus devices
52 # this is commented because none of the nexus devices
/frameworks/opt/photoviewer/
H A DAndroid.mk10 # distributed under the License is distributed on an "AS IS" BASIS,
19 # This is to allow the library to be loaded dynamically in a context where
/frameworks/opt/photoviewer/sample/
H A DAndroid.mk10 # distributed under the License is distributed on an "AS IS" BASIS,
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/
H A DImageUtils.java12 * distributed under the License is distributed on an "AS IS" BASIS,
82 * @return true if the MimeType type is image
134 * no bitmap is returned (null) then padding is
137 * image should be completely decoded, or just is size returned.
139 * decoded, or, if opts is non-null, if opts requested only the
144 InputStream is = null;
147 is = factory.createInputStream();
148 final int orientation = Exif.getOrientation(is, -1);
149 if (is !
[all...]
/frameworks/opt/telephony/
H A DAndroid.mk10 # distributed under the License is distributed on an "AS IS" BASIS,
15 # enable this build only when platform library is available
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DRIL.java11 * distributed under the License is distributed on an "AS IS" BASIS,
388 // The timer of WAKE_LOCK_TIMEOUT is reset with each
418 * The final message (length header omitted) is read into
420 * is returned. A return value of -1 indicates end-of-stream.
422 * @param is non-null; Stream to read from
428 private static int readRilMessage(InputStream is, byte[] buffer) argument
439 countRead = is.read(buffer, offset, remaining);
459 countRead = is.read(buffer, offset, remaining);
542 InputStream is = mSocket.getInputStream();
547 length = readRilMessage(is, buffe
[all...]
H A DTelephonyTester.java11 * distributed under the License is distributed on an "AS IS" BASIS,
37 * Telephony tester receives the following intents where {name} is the phone name
58 // is running on the same thread as Dcc.
135 final FileInputStream is;
137 is = new FileInputStream(packageFile);
143 TestConferenceEventPackageParser parser = new TestConferenceEventPackageParser(is);
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
H A DPduPersister.java12 * distributed under the License is distributed on an "AS IS" BASIS,
68 * This class is the high-level manager of PDU storage.
435 InputStream is = null;
449 is = mContentResolver.openInputStream(partURI);
452 int len = is.read(buffer);
455 len = is.read(buffer);
462 if (is != null) {
464 is.close();
550 // is currently being updated.
608 // For PDU which type is M_retriev
[all...]
/frameworks/opt/timezonepicker/
H A DAndroid.mk10 # distributed under the License is distributed on an "AS IS" BASIS,
/frameworks/opt/timezonepicker/src/com/android/timezonepicker/
H A DTimeZoneData.java11 * distributed under the License is distributed on an "AS IS" BASIS,
317 InputStream is = null;
324 is = am.open("backward");
325 BufferedReader reader = new BufferedReader(new InputStreamReader(is));
360 if (is != null) {
361 is.close();
375 is = am.open("zone.tab");
376 BufferedReader reader = new BufferedReader(new InputStreamReader(is));
444 // Add to the list of time zones if the time zone is unique
468 if (is !
[all...]
/frameworks/opt/vcard/
H A DAndroid.mk10 # distributed under the License is distributed on an "AS IS" BASIS,
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardParser.java11 * distributed under the License is distributed on an "AS IS" BASIS,
40 * @param is The source to parse.
43 public abstract void parse(InputStream is) throws IOException, VCardException; argument
55 * <p>This happens when the first entry contains nested vCards, which is allowed in vCard 2.1.
71 * @param is The source to parse.
74 public abstract void parseOne(InputStream is) throws IOException, VCardException; argument
81 public void parse(InputStream is, VCardInterpreter interpreter) argument
84 parse(is);
92 * Actual cancel is done after parsing the current vcard.
H A DVCardParserImpl_V21.java11 * distributed under the License is distributed on an "AS IS" BASIS,
109 * The encoding type for deconding byte streams. This member variable is
113 * "Encoding" in vCard is different from "Charset". It is mainly used for
135 * Set for storing unkonwn TYPE attributes, which is not acceptable in vCard
146 * Set for storing unkonwn VALUE attributes, which is not acceptable in
165 * @return true when a given property name is a valid property name.
374 // This loop is developed so that we don't have to take care of bottle neck here.
385 } else if (ch == '.') { // Each group is followed by the dot.
510 // Update encoding right away, as this is neede
1000 parse(InputStream is) argument
1031 parseOne(InputStream is) argument
[all...]

Completed in 1215 milliseconds

<<11121314