/frameworks/media/libvideoeditor/vss/common/inc/ |
H A D | M4VD_Tools.h | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 33 M4OSA_MemAddr8 in; member in struct:__anon1469
|
/frameworks/base/core/java/android/content/ |
H A D | ContentInsertHandler.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 34 * @param in InputStream 38 public void insert(ContentResolver contentResolver, InputStream in) argument 44 * @param in input string 47 public void insert(ContentResolver contentResolver, String in) argument
|
H A D | SyncStats.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 31 * that was specified in the request. The user needs to take some action to resolve 48 * increment this value although it may still do so in order to record that it had to 108 public SyncStats(Parcel in) { argument 109 numAuthExceptions = in.readLong(); 110 numIoExceptions = in.readLong(); 111 numParseExceptions = in.readLong(); 112 numConflictDetectedExceptions = in.readLong(); 113 numInserts = in [all...] |
/frameworks/base/media/libstagefright/codecs/aacdec/ |
H A D | shellsort.cpp | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 87 ; Declare functions defined elsewhere and referenced in this module 92 ; Declare variables used in this module but defined elsewhere 100 void shellsort(Int32 in[], Int32 n) argument 119 v = in[i-1]; 121 while (in[j-inc-1] > v) 123 in[j-1] = in[j-inc-1]; 130 in[ [all...] |
/frameworks/base/core/java/android/gesture/ |
H A D | GesturePoint.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 38 static GesturePoint deserialize(DataInputStream in) throws IOException { argument 40 final float x = in.readFloat(); 41 final float y = in.readFloat(); 43 final long timeStamp = in.readLong();
|
/frameworks/base/tools/localize/ |
H A D | Configuration.cpp | 50 split_locale(const string& in, string* language, string* region) argument 52 const int len = in.length(); 54 if (isalpha(in[0]) && isalpha(in[1])) { 55 *language = in; 63 if (isalpha(in[0]) && isalpha(in[1]) && (in[2] == '_' || in[2] == '-') 64 && isalpha(in[ [all...] |
/frameworks/support/v4/honeycomb_mr2/android/support/v4/os/ |
H A D | ParcelableCompatCreatorCallbacks.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 33 * @param in The Parcel to read the object's data from. 34 * @param loader The ClassLoader that this object is being created in. 37 public T createFromParcel(Parcel in, ClassLoader loader); argument
|
H A D | ParcelableCompatHoneycombMR2.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 35 public T createFromParcel(Parcel in) { argument 36 return mCallbacks.createFromParcel(in, null); 39 public T createFromParcel(Parcel in, ClassLoader loader) { argument 40 return mCallbacks.createFromParcel(in, loader);
|
/frameworks/base/core/java/android/accounts/ |
H A D | Account.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 24 * Value type that represents an Account in the {@link AccountManager}. This object is 57 public Account(Parcel in) { argument 58 this.name = in.readString(); 59 this.type = in.readString();
|
/frameworks/base/core/java/android/app/backup/ |
H A D | RestoreSet.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 73 public RestoreSet createFromParcel(Parcel in) { 74 return new RestoreSet(in); 82 private RestoreSet(Parcel in) { argument 83 name = in.readString(); 84 device = in.readString(); 85 token = in.readLong();
|
/frameworks/base/core/java/android/net/ |
H A D | NetworkState.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 48 public NetworkState(Parcel in) { argument 49 networkInfo = in.readParcelable(null); 50 linkProperties = in.readParcelable(null); 51 linkCapabilities = in.readParcelable(null); 52 subscriberId = in.readString(); 69 public NetworkState createFromParcel(Parcel in) { 70 return new NetworkState(in);
|
H A D | NetworkQuotaInfo.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 42 public NetworkQuotaInfo(Parcel in) { argument 43 mEstimatedBytes = in.readLong(); 44 mSoftLimitBytes = in.readLong(); 45 mHardLimitBytes = in.readLong(); 73 public NetworkQuotaInfo createFromParcel(Parcel in) { 74 return new NetworkQuotaInfo(in);
|
/frameworks/base/core/java/android/nfc/ |
H A D | ApduList.java | 30 public ApduList createFromParcel(Parcel in) { 31 return new ApduList(in); 40 private ApduList(Parcel in) { argument 41 int count = in.readInt(); 45 int length = in.readInt(); 47 in.readByteArray(cmd);
|
/frameworks/base/services/java/com/android/server/net/ |
H A D | NetworkIdentitySet.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 40 public NetworkIdentitySet(DataInputStream in) throws IOException { argument 41 final int version = in.readInt(); 44 final int size = in.readInt(); 46 final int ignoredVersion = in.readInt(); 47 final int type = in.readInt(); 48 final int subType = in.readInt(); 49 final String subscriberId = readOptionalString(in); 55 final int size = in 91 readOptionalString(DataInputStream in) argument [all...] |
/frameworks/base/telephony/java/com/android/internal/telephony/cat/ |
H A D | Item.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 42 public Item(Parcel in) { argument 43 id = in.readInt(); 44 text = in.readString(); 45 icon = in.readParcelable(null); 59 public Item createFromParcel(Parcel in) { 60 return new Item(in);
|
H A D | ToneSettings.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 37 private ToneSettings(Parcel in) { argument 38 duration = in.readParcelable(null); 39 tone = in.readParcelable(null); 40 vibrate = in.readInt() == 1; 54 public ToneSettings createFromParcel(Parcel in) { 55 return new ToneSettings(in);
|
H A D | Duration.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 56 private Duration(Parcel in) { argument 57 timeInterval = in.readInt(); 58 timeUnit = TimeUnit.values()[in.readInt()]; 71 public Duration createFromParcel(Parcel in) { 72 return new Duration(in);
|
/frameworks/base/core/java/android/app/ |
H A D | ResultInfo.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 67 public ResultInfo createFromParcel(Parcel in) { 68 return new ResultInfo(in); 76 public ResultInfo(Parcel in) { argument 77 mResultWho = in.readString(); 78 mRequestCode = in.readInt(); 79 mResultCode = in.readInt(); 80 if (in.readInt() != 0) { 81 mData = Intent.CREATOR.createFromParcel(in); [all...] |
/frameworks/base/core/java/android/os/ |
H A D | Messenger.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 22 * processes, by creating a Messenger pointing to a Handler in one process, 30 * objects sent through this Messenger will appear in the Handler as if 93 public Messenger createFromParcel(Parcel in) { 94 IBinder target = in.readStrongBinder(); 122 * @param in The Parcel containing the written Messenger. 127 public static Messenger readMessengerOrNullFromParcel(Parcel in) { argument 128 IBinder b = in.readStrongBinder();
|
/frameworks/base/core/java/com/android/internal/statusbar/ |
H A D | StatusBarIcon.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 57 public StatusBarIcon(Parcel in) { argument 58 readFromParcel(in); 61 public void readFromParcel(Parcel in) { argument 62 this.iconPackage = in.readString(); 63 this.iconId = in.readInt(); 64 this.iconLevel = in.readInt(); 65 this.visible = in.readInt() != 0; 66 this.number = in [all...] |
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/ |
H A D | AccessPointParserHelper.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 45 * Help class to process configurations of access points saved in an XML file. 46 * The configurations of an access point is included in tag 49 * in which each is included in the corresponding tags. Static IP setting is also supported. 51 * have to be enclosed in tags of <resources></resources>. 351 * Process the InputStream in 352 * @param in is the InputStream that can be used for XML parsing 355 public AccessPointParserHelper(InputStream in) throw argument [all...] |
/frameworks/base/graphics/java/android/graphics/ |
H A D | PointF.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 111 * Return a new point from the data in the specified parcel. 113 public PointF createFromParcel(Parcel in) { 115 r.readFromParcel(in); 128 * Set the point's coordinates from the data stored in the specified 131 * @param in The parcel to read the point's coordinates from 133 public void readFromParcel(Parcel in) { argument 134 x = in.readFloat(); 135 y = in [all...] |
/frameworks/base/include/private/media/ |
H A D | VideoFrame.h | 6 ** you may not use this file except in compliance with the License. 11 ** Unless required by applicable law or agreed to in writing, software 37 FILE *in = fopen(url, "r"); local 38 if (!in) { 41 fseek(in, 0, SEEK_END); 42 mSize = ftell(in); // Allocating buffer of size equals to the external file size. 44 fclose(in); 50 rewind(in); 51 if (fread(mData, 1, mSize, in) != mSize) { // Read failed. 57 fclose(in); [all...] |
/frameworks/base/nfc-extras/java/com/android/nfc_extras/ |
H A D | NfcExecutionEnvironment.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 48 * Mandatory byte array extra field in {@link #ACTION_AID_SELECTED}. 71 * Mandatory byte array extra field in {@link #ACTION_APDU_RECEIVED}. 103 * Optional integer extra field in {@link #ACTION_MIFARE_ACCESS_DETECTED}. 167 public byte[] transceive(byte[] in) throws IOException { argument 170 b = mExtras.getService().transceive(mExtras.mPackageName, in);
|
/frameworks/base/services/java/com/android/server/ |
H A D | RandomBlock.java | 5 * you may not use this file except in compliance with the License. 10 * Unless required by applicable law or agreed to in writing, software 52 private static RandomBlock fromStream(InputStream in) throws IOException { argument 56 int result = in.read(retval.block, total, BLOCK_SIZE - total);
|