Searched defs:from (Results 1 - 25 of 159) sorted by relevance

1234567

/frameworks/av/include/media/stagefright/foundation/
H A DALookup.h30 bool lookup(const T& from, U *to) const;
31 bool rlookup(const U& from, T *to) const;
34 inline bool map(const T& from, V *to) const { return lookup(from, to); } argument
37 inline bool map(const V& from, T *to) const { return rlookup(from, to); } argument
49 bool ALookup<T, U>::lookup(const T& from, U *to) const { argument
51 if (elem.first == from) {
60 bool ALookup<T, U>::rlookup(const U& from, T *to) const { argument
62 if (elem.second == from) {
[all...]
H A DMutexed.h97 * unlock() or lock() from different threads; they must be called from the thread
106 inline Locked(Locked &&from) : argument
107 mLock(from.mLock),
108 mTreasure(from.mTreasure),
109 mLocked(from.mLocked) {}
/frameworks/av/media/libstagefright/foundation/include/media/stagefright/foundation/
H A DALookup.h30 bool lookup(const T& from, U *to) const;
31 bool rlookup(const U& from, T *to) const;
34 inline bool map(const T& from, V *to) const { return lookup(from, to); } argument
37 inline bool map(const V& from, T *to) const { return rlookup(from, to); } argument
49 bool ALookup<T, U>::lookup(const T& from, U *to) const { argument
51 if (elem.first == from) {
60 bool ALookup<T, U>::rlookup(const U& from, T *to) const { argument
62 if (elem.second == from) {
[all...]
H A DMutexed.h97 * unlock() or lock() from different threads; they must be called from the thread
106 inline Locked(Locked &&from) : argument
107 mLock(from.mLock),
108 mTreasure(from.mTreasure),
109 mLocked(from.mLocked) {}
/frameworks/av/media/libstagefright/include/media/stagefright/foundation/
H A DALookup.h30 bool lookup(const T& from, U *to) const;
31 bool rlookup(const U& from, T *to) const;
34 inline bool map(const T& from, V *to) const { return lookup(from, to); } argument
37 inline bool map(const V& from, T *to) const { return rlookup(from, to); } argument
49 bool ALookup<T, U>::lookup(const T& from, U *to) const { argument
51 if (elem.first == from) {
60 bool ALookup<T, U>::rlookup(const U& from, T *to) const { argument
62 if (elem.second == from) {
[all...]
H A DMutexed.h97 * unlock() or lock() from different threads; they must be called from the thread
106 inline Locked(Locked &&from) : argument
107 mLock(from.mLock),
108 mTreasure(from.mTreasure),
109 mLocked(from.mLocked) {}
/frameworks/base/core/tests/hosttests/test-apps/MultiDexLegacyTestServices/src/com/android/framework/multidexlegacytestservices/
H A DReflectIntermediateClass.java28 public static int get(int from, int to, int sleepMillis) throws ClassNotFoundException, argument
32 for (int i = from; i <= to; i++) {
/frameworks/base/packages/services/Proxy/src/com/android/proxyhandler/
H A DSocketConnect.java13 private InputStream from; field in class:SocketConnect
16 public SocketConnect(Socket from, Socket to) throws IOException { argument
17 this.from = from.getInputStream();
28 int r = from.read(buffer);
34 from.close();
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageManagerException.java48 public static PackageManagerException from(PackageParserException e) method in class:PackageManagerException
53 public static PackageManagerException from(InstallerException e) method in class:PackageManagerException
/frameworks/base/core/java/android/os/health/
H A DSystemHealthManager.java66 public static SystemHealthManager from(Context context) { method in class:SystemHealthManager
81 * application. The keys for this HealthStats object will be from the {@link UidHealthStats}
100 * for this HealthStats object will be from the {@link UidHealthStats} class.
117 * the requested uids. The keys for this HealthStats object will be from the
/frameworks/base/core/java/com/android/internal/app/procstats/
H A DDurationsTable.java29 * Add all of the durations from the other table into this one.
33 public void addDurations(DurationsTable from) { argument
34 final int N = from.getKeyCount();
36 final int key = from.getKeyAt(i);
37 this.addDuration(SparseMappingTable.getIdFromKey(key), from.getValue(key));
/frameworks/base/media/java/android/media/session/
H A DParcelableVolumeInfo.java45 public ParcelableVolumeInfo(Parcel from) { argument
46 volumeType = from.readInt();
47 controlType = from.readInt();
48 maxVolume = from.readInt();
49 currentVolume = from.readInt();
50 audioAttrs = AudioAttributes.CREATOR.createFromParcel(from);
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityResult.java28 public ActivityResult(ActivityRecord from, String resultWho, argument
31 mFrom = from;
/frameworks/compile/mclinker/lib/Target/
H A DELFEmulation.cpp19 const char* from; ///< the prefix of the input string. (match FROM*) member in struct:mcld::NameMap
78 pScript.sectionMap().insert(map[i].from, map[i].to, map[i].policy);
/frameworks/native/cmds/lshal/
H A Dutils.cpp43 void replaceAll(std::string *s, char from, char to) { argument
45 if (s->at(i) == from) {
/frameworks/base/core/java/android/content/pm/
H A DParceledListSlice.java67 protected Parcelable.Creator<?> readParcelableCreator(Parcel from, ClassLoader loader) { argument
68 return from.readParcelableCreator(loader);
H A DStringParceledListSlice.java62 protected Parcelable.Creator<?> readParcelableCreator(Parcel from, ClassLoader loader) { argument
/frameworks/opt/bitmap/src/com/android/bitmap/
H A DResourceRequestKey.java25 * Simple RequestKey for decoding from a resource id.
36 public static ResourceRequestKey from(Resources res, int resId) { method in class:ResourceRequestKey
/frameworks/opt/net/wifi/service/jni/
H A Djni_helper.cpp64 void JNIHelper::setByteArrayRegion(jbyteArray array, int from, int to, const jbyte *bytes) { argument
65 mEnv->SetByteArrayRegion(array, from, to, bytes);
/frameworks/support/media-compat/java/android/support/v4/media/session/
H A DParcelableVolumeInfo.java42 public ParcelableVolumeInfo(Parcel from) { argument
43 volumeType = from.readInt();
44 controlType = from.readInt();
45 maxVolume = from.readInt();
46 currentVolume = from.readInt();
47 audioStream = from.readInt();
/frameworks/av/media/libstagefright/rtsp/
H A DARTPAssembler.cpp61 void ARTPAssembler::CopyTimes(const sp<ABuffer> &to, const sp<ABuffer> &from) { argument
63 CHECK(from->meta()->findInt32("rtp-time", (int32_t *)&rtpTime));
68 to->setInt32Data(from->int32Data());
/frameworks/base/core/java/android/speech/tts/
H A DUtteranceProgressListener.java13 * The callbacks specified in this method can be called from multiple threads.
58 * @param errorCode one of the ERROR_* codes from {@link TextToSpeech}
65 * Called when an utterance has been stopped while in progress or flushed from the
129 * that this is different from {@link #onAudioAvailable} which is called as soon as the audio is
157 static UtteranceProgressListener from( method in class:UtteranceProgressListener
/frameworks/base/core/java/android/transition/
H A DTransitionInflater.java40 * This class inflates scenes and transitions from resource files.
61 * Obtains the TransitionInflater from the given context.
63 public static TransitionInflater from(Context context) { method in class:TransitionInflater
68 * Loads a {@link Transition} object from a resource
96 * Loads a {@link TransitionManager} object from a resource
/frameworks/base/libs/hwui/
H A DPropertyValuesHolder.cpp52 const PathData& from, const PathData& to, float fraction) const {
53 VectorDrawableUtils::interpolatePaths(out, from, to, fraction);
51 evaluate(PathData* out, const PathData& from, const PathData& to, float fraction) const argument
/frameworks/base/lowpan/java/android/net/lowpan/
H A DLowpanManager.java58 * from this Map without leaking memory.
69 public static LowpanManager from(Context context) { method in class:LowpanManager
132 /* Make sure we remove the object from the

Completed in 3065 milliseconds

1234567