Searched refs:source (Results 201 - 225 of 916) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/security/net/config/
H A DManifestConfigSource.java63 ConfigSource source;
71 source = new XmlConfigSource(mContext, mConfigResourceId, debugBuild,
79 source = new DefaultConfigSource(usesCleartextTraffic, mTargetSdkVersion);
81 mConfigSource = source;
/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
H A DAbstractStatementRetriever.java65 * Returns the statements made by the {@code source} asset with ttl.
69 public abstract Result retrieveStatements(AbstractAsset source) argument
/frameworks/base/tools/aapt/
H A DSymbol.h52 SourcePos source; member in struct:SymbolDefinition
87 , source(src) {
91 return (symbol < rhs.symbol) || (config < rhs.config) || (source < rhs.source);
H A DCacheUpdater.h24 * mirror cache where the source tree is duplicated and filled with processed
41 // Process an image from source out to dest
42 virtual void processImage(String8 source, String8 dest) = 0;
100 // Process an image from source out to dest
101 virtual void processImage(String8 source, String8 dest) argument
106 preProcessImageToCache(bundle, source, dest);
/frameworks/base/tools/aapt/tests/
H A DMockCacheUpdater.h29 // Process an image from source out to dest
30 virtual void processImage(String8 source, String8 dest) { argument
/frameworks/opt/setupwizard/tools/gradle/
H A Ddocs.gradle19 source variant.javaCompile.source
/frameworks/rs/java/tests/SampleTest/src/com/android/rs/sample/
H A Dsample.rs25 void setSampleData(rs_allocation dest, rs_allocation source, rs_sampler sampler) {
27 sourceAlloc = source;
/frameworks/support/percent/src/android/support/percent/
H A DPercentRelativeLayout.java130 public LayoutParams(ViewGroup.LayoutParams source) { argument
131 super(source);
134 public LayoutParams(MarginLayoutParams source) { argument
135 super(source);
/frameworks/av/drm/mediadrm/plugins/clearkey/
H A DAesCtrDecryptor.cpp30 const Iv iv, const uint8_t* source,
49 memcpy(destination + offset, source + offset,
55 AES_ctr128_encrypt(source + offset, destination + offset,
29 decrypt(const android::Vector<uint8_t>& key, const Iv iv, const uint8_t* source, uint8_t* destination, const SubSample* subSamples, size_t numSubSamples, size_t* bytesDecryptedOut) argument
/frameworks/av/media/libstagefright/include/
H A DID3.h38 ID3(const sp<DataSource> &source, bool ignoreV1 = false, off64_t offset = 0);
88 bool parseV1(const sp<DataSource> &source);
89 bool parseV2(const sp<DataSource> &source, off64_t offset);
/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
H A DSessionRoute.h36 // source argument
42 audio_source_t source,
52 mSource(source)
103 // source argument.
108 audio_source_t source,
40 SessionRoute(audio_session_t session, audio_stream_type_t streamType, audio_source_t source, sp<DeviceDescriptor> deviceDescriptor, uid_t uid) argument
/frameworks/base/core/java/android/hardware/location/
H A DActivityChangedEvent.java52 public ActivityChangedEvent createFromParcel(Parcel source) {
53 int activityRecognitionEventsLength = source.readInt();
56 source.readTypedArray(activityRecognitionEvents, ActivityRecognitionEvent.CREATOR);
/frameworks/base/core/java/android/os/
H A DHardwarePropertiesManager.java105 * @param source source of requested device temperature, one of {@link #TEMPERATURE_CURRENT},
116 @TemperatureSource int source) {
122 switch (source) {
129 source);
134 Log.w(TAG, "Unknown device temperature source.");
115 getDeviceTemperatures(@eviceTemperatureType int type, @TemperatureSource int source) argument
H A DMessage.java525 public Message createFromParcel(Parcel source) {
527 msg.readFromParcel(source);
566 private void readFromParcel(Parcel source) { argument
567 what = source.readInt();
568 arg1 = source.readInt();
569 arg2 = source.readInt();
570 if (source.readInt() != 0) {
571 obj = source.readParcelable(getClass().getClassLoader());
573 when = source.readLong();
574 data = source
[all...]
H A DParcelUuid.java112 public ParcelUuid createFromParcel(Parcel source) {
113 long mostSigBits = source.readLong();
114 long leastSigBits = source.readLong();
/frameworks/base/core/java/android/printservice/
H A DPrintDocument.java76 ParcelFileDescriptor source = null;
80 source = fds[0];
83 return source;
/frameworks/base/core/java/android/service/carrier/
H A DMessagePdu.java78 public MessagePdu createFromParcel(Parcel source) {
79 int size = source.readInt();
86 pduList.add(source.createByteArray());
/frameworks/base/core/java/android/text/style/
H A DEasyEditSpan.java82 public EasyEditSpan(Parcel source) { argument
83 mPendingIntent = source.readParcelable(null);
84 mDeleteEnabled = (source.readByte() == 1);
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiCecMessageCache.java23 * Cache for incoming message. It caches {@link HdmiCecMessage} with source address and opcode
48 * @param address a logical address of source device
65 * @param address a logical address of source device
90 int source = message.getSource();
91 SparseArray<HdmiCecMessage> messages = mCache.get(source);
94 mCache.put(source, messages);
/frameworks/base/wifi/java/android/net/wifi/
H A DBatchedScanResult.java44 public BatchedScanResult(BatchedScanResult source) { argument
45 truncated = source.truncated;
46 for (ScanResult s : source.scanResults) scanResults.add(new ScanResult(s));
H A DScanSettings.java41 public ScanSettings(ScanSettings source) { argument
42 if (source.channelSet != null)
43 channelSet = new ArrayList<WifiChannel>(source.channelSet);
H A DWifiNetworkConnectionStatistics.java53 public WifiNetworkConnectionStatistics(WifiNetworkConnectionStatistics source) { argument
54 numConnection = source.numConnection;
55 numUsage = source.numUsage;
/frameworks/base/core/java/android/view/inputmethod/
H A DCursorAnchorInfo.java131 public CursorAnchorInfo(final Parcel source) { argument
132 mHashCode = source.readInt();
133 mSelectionStart = source.readInt();
134 mSelectionEnd = source.readInt();
135 mComposingTextStart = source.readInt();
136 mComposingText = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
137 mInsertionMarkerFlags = source.readInt();
138 mInsertionMarkerHorizontal = source.readFloat();
139 mInsertionMarkerTop = source.readFloat();
140 mInsertionMarkerBaseline = source
[all...]
/frameworks/base/core/java/android/content/
H A DContentProviderOperation.java74 private ContentProviderOperation(Parcel source) { argument
75 mType = source.readInt();
76 mUri = Uri.CREATOR.createFromParcel(source);
77 mValues = source.readInt() != 0 ? ContentValues.CREATOR.createFromParcel(source) : null;
78 mSelection = source.readInt() != 0 ? source.readString() : null;
79 mSelectionArgs = source.readInt() != 0 ? source.readStringArray() : null;
80 mExpectedCount = source
[all...]
/frameworks/base/core/java/android/text/method/
H A DDigitsKeyListener.java138 public CharSequence filter(CharSequence source, int start, int end, argument
140 CharSequence out = super.filter(source, start, end, dest, dstart, dend);
147 source = out;
180 * If it does, we must strip them out from the source.
189 char c = source.charAt(i);
214 stripped = new SpannableStringBuilder(source, start, end);

Completed in 5219 milliseconds

1234567891011>>