OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:photobytes
(Results
1 - 4
of
4
) sorted by null
/packages/apps/Contacts/src/com/android/contacts/ui/widget/
PhotoEditorView.java
88
final byte[]
photoBytes
= values.getAsByteArray(Photo.PHOTO);
89
if (
photoBytes
!= null) {
90
final Bitmap photo = BitmapFactory.decodeByteArray(
photoBytes
, 0,
91
photoBytes
.length);
/frameworks/base/core/java/android/pim/vcard/
VCardEntry.java
359
public final byte[]
photoBytes
;
362
public PhotoData(int type, String formatName, byte[]
photoBytes
, boolean isPrimary) {
365
this.
photoBytes
=
photoBytes
;
378
(Arrays.equals(
photoBytes
, photoData.
photoBytes
)) &&
385
type, formatName,
photoBytes
.length, isPrimary);
685
private void addPhotoBytes(String formatName, byte[]
photoBytes
, boolean isPrimary) {
689
final PhotoData photoData = new PhotoData(0, null,
photoBytes
, isPrimary);
[
all
...]
/packages/apps/Tag/src/com/android/vcard/
VCardEntry.java
357
public final byte[]
photoBytes
;
360
public PhotoData(int type, String formatName, byte[]
photoBytes
, boolean isPrimary) {
363
this.
photoBytes
=
photoBytes
;
376
(Arrays.equals(
photoBytes
, photoData.
photoBytes
)) &&
383
type, formatName,
photoBytes
.length, isPrimary);
684
private void addPhotoBytes(String formatName, byte[]
photoBytes
, boolean isPrimary) {
688
final PhotoData photoData = new PhotoData(0, null,
photoBytes
, isPrimary);
[
all
...]
/packages/apps/Tag/src/com/android/apps/tag/record/
VCardRecord.java
295
byte[] rawData = photoList.get(0).
photoBytes
;
Completed in 46 milliseconds