Searched refs:source (Results 126 - 150 of 916) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/text/method/
H A DAllCapsTransformationMethod.java27 * Transforms source text into an ALL CAPS string, locale-aware.
42 public CharSequence getTransformation(CharSequence source, View view) { argument
45 return source;
48 if (source == null) {
59 return source.toString().toUpperCase(locale);
H A DTransformationMethod.java30 * Returns a CharSequence that is a transformation of the source text --
33 * the source text, and that if the source text is Editable, the returned
36 public CharSequence getTransformation(CharSequence source, View view); argument
/frameworks/base/core/java/android/view/
H A DAbsSavedState.java53 * @param source parcel to read from
55 protected AbsSavedState(Parcel source) { argument
56 this(source, null);
63 * @param source parcel to read from
66 protected AbsSavedState(Parcel source, ClassLoader loader) { argument
67 Parcelable superState = source.readParcelable(loader);
H A DInputEvent.java70 * Gets the source of the event.
72 * @return The event source or {@link InputDevice#SOURCE_UNKNOWN} if unknown.
78 * Modifies the source of the event.
80 * @param source The new source.
83 public abstract void setSource(int source); argument
86 * Determines whether the event is from the given source.
88 * @param source The input source to check against. This can be a specific device type, such as
91 * @return Whether the event is from the given source
93 isFromSource(int source) argument
[all...]
/frameworks/base/core/java/android/view/inputmethod/
H A DEditorInfo.java456 public EditorInfo createFromParcel(Parcel source) {
458 res.inputType = source.readInt();
459 res.imeOptions = source.readInt();
460 res.privateImeOptions = source.readString();
461 res.actionLabel = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
462 res.actionId = source.readInt();
463 res.initialSelStart = source.readInt();
464 res.initialSelEnd = source.readInt();
465 res.initialCapsMode = source.readInt();
466 res.hintText = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
[all...]
/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
H A DStatement.java22 * An immutable value type representing a statement, consisting of a source, target, and relation.
23 * This reflects an assertion that the relation holds for the source, target pair. For example, if a
53 private Statement(AbstractAsset source, AbstractAsset target, Relation relation) { argument
54 mSource = source;
60 * Returns the source asset of the statement.
92 public static Statement create(@NonNull AbstractAsset source, @NonNull AbstractAsset target, argument
94 return new Statement(source, target, relation);
/frameworks/base/telecomm/java/android/telecom/
H A DGatewayInfo.java51 * This can be used to identify the gateway address source and to load an appropriate icon when
87 public GatewayInfo createFromParcel(Parcel source) {
88 String gatewayPackageName = source.readString();
89 Uri gatewayUri = Uri.CREATOR.createFromParcel(source);
90 Uri originalAddress = Uri.CREATOR.createFromParcel(source);
H A DConferenceParticipant.java74 public ConferenceParticipant createFromParcel(Parcel source) {
76 Uri handle = source.readParcelable(classLoader);
77 String displayName = source.readString();
78 Uri endpoint = source.readParcelable(classLoader);
79 int state = source.readInt();
/frameworks/base/tools/aapt2/
H A DSource.h53 inline ::std::ostream& operator<<(::std::ostream& out, const Source& source) { argument
54 out << source.path;
55 if (source.line) {
56 out << ":" << source.line.value();
/frameworks/base/tools/aapt2/compile/
H A DPng.h38 bool process(const Source& source, std::istream* input, BigBuffer* outBuffer,
/frameworks/base/wifi/java/android/net/wifi/
H A DWpsResult.java63 public WpsResult(WpsResult source) { argument
64 if (source != null) {
65 status = source.status;
66 pin = source.pin;
H A DWifiConfiguration.java493 public Visibility(Visibility source) { argument
494 rssi5 = source.rssi5;
495 rssi24 = source.rssi24;
496 age24 = source.age24;
497 age5 = source.age5;
498 num24 = source.num24;
499 num5 = source.num5;
500 BSSID5 = source.BSSID5;
501 BSSID24 = source.BSSID24;
1247 public void copy(NetworkSelectionStatus source) { argument
1830 WifiConfiguration(WifiConfiguration source) argument
[all...]
H A DScanResult.java432 public ScanResult(ScanResult source) { argument
433 if (source != null) {
434 wifiSsid = source.wifiSsid;
435 SSID = source.SSID;
436 BSSID = source.BSSID;
437 hessid = source.hessid;
438 anqpDomainId = source.anqpDomainId;
439 informationElements = source.informationElements;
440 anqpElements = source.anqpElements;
441 capabilities = source
[all...]
/frameworks/support/v4/java/android/support/v4/view/
H A DAbsSavedState.java55 * @param source parcel to read from
57 protected AbsSavedState(Parcel source) { argument
58 this(source, null);
64 * @param source parcel to read from
67 protected AbsSavedState(Parcel source, ClassLoader loader) { argument
68 Parcelable superState = source.readParcelable(loader);
/frameworks/base/core/java/android/hardware/hdmi/
H A DHdmiPortInfo.java132 public HdmiPortInfo createFromParcel(Parcel source) {
133 int id = source.readInt();
134 int type = source.readInt();
135 int address = source.readInt();
136 boolean cec = (source.readInt() == 1);
137 boolean arc = (source.readInt() == 1);
138 boolean mhl = (source.readInt() == 1);
/frameworks/base/packages/FusedLocation/src/com/android/location/fused/
H A DFusedLocationProvider.java56 public WorkSource source; field in class:FusedLocationProvider.RequestWrapper
57 public RequestWrapper(ProviderRequestUnbundled request, WorkSource source) { argument
59 this.source = source;
98 mEngine.setRequest(wrapper.request, wrapper.source);
116 public void onSetRequest(ProviderRequestUnbundled request, WorkSource source) { argument
117 mHandler.obtainMessage(MSG_SET_REQUEST, new RequestWrapper(request, source)).sendToTarget();
/frameworks/av/media/libstagefright/
H A DDataConverter.cpp30 status_t DataConverter::convert(const sp<ABuffer> &source, sp<ABuffer> &target) { argument
31 CHECK(source->base() != target->base());
32 size_t size = targetSize(source->size());
40 err = safeConvert(source, target);
46 status_t DataConverter::safeConvert(const sp<ABuffer> &source, sp<ABuffer> &target) { argument
47 memcpy(target->base(), source->data(), source->size());
65 ALOGW("limiting source size due to overflow (%zu*%zu/%zu)",
95 AudioConverter* AudioConverter::Create(AudioEncoding source, AudioEncoding target) { argument
96 uint32_t sourceSampleSize = getAudioSampleSize(source);
[all...]
H A DXINGSeeker.cpp80 const sp<DataSource> &source, off64_t first_frame_pos) {
87 if (source->readAt(offset, &buffer, 4) < 4) { // get header
116 if (source->readAt(offset, &buffer, 4) < 4) { // XING header ID
129 if (source->readAt(offset, &buffer, 4) < 4) { // flags
136 if (source->readAt(offset, buffer, 4) < 4) {
150 if (source->readAt(offset, buffer, 4) < 4) {
157 if (source->readAt(offset + 1, seeker->mTOC, 99) < 99) {
166 if (source->readAt(offset, buffer, 4) < 4) {
173 if (source->readAt(xingbase + 0xaf - 0x24, &buffer, 1) < 1) { // encoding flags
182 if (source
79 CreateFromSource( const sp<DataSource> &source, off64_t first_frame_pos) argument
[all...]
/frameworks/base/core/java/android/app/
H A DAutomaticZenRule.java70 public AutomaticZenRule(Parcel source) { argument
71 enabled = source.readInt() == 1;
72 if (source.readInt() == 1) {
73 name = source.readString();
75 interruptionFilter = source.readInt();
76 conditionId = source.readParcelable(null);
77 owner = source.readParcelable(null);
78 creationTime = source.readLong();
205 public AutomaticZenRule createFromParcel(Parcel source) {
206 return new AutomaticZenRule(source);
[all...]
/frameworks/base/core/java/android/content/
H A DSyncAdapterType.java206 public SyncAdapterType(Parcel source) { argument
208 source.readString(),
209 source.readString(),
210 source.readInt() != 0,
211 source.readInt() != 0,
212 source.readInt() != 0,
213 source.readInt() != 0,
214 source.readString());
218 public SyncAdapterType createFromParcel(Parcel source) {
219 return new SyncAdapterType(source);
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DVerifyCredentialResponse.java43 public VerifyCredentialResponse createFromParcel(Parcel source) {
44 int responseCode = source.readInt();
47 response.setTimeout(source.readInt());
49 int size = source.readInt();
52 source.readByteArray(payload);
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DActiveSourceHandler.java42 static ActiveSourceHandler create(HdmiCecLocalDeviceTv source, IHdmiControlCallback callback) { argument
43 if (source == null) {
47 return new ActiveSourceHandler(source, callback);
50 private ActiveSourceHandler(HdmiCecLocalDeviceTv source, IHdmiControlCallback callback) { argument
51 mSource = source;
57 * Handles the incoming active source command.
59 * @param newActive new active source information
60 * @param deviceType device type of the new active source
80 // TV is in a mode that should keep its current source/input from
81 // being changed for its operation. Reclaim the active source
[all...]
/frameworks/base/core/java/android/net/
H A DNetworkInfo.java142 public NetworkInfo(NetworkInfo source) { argument
143 if (source != null) {
144 synchronized (source) {
145 mNetworkType = source.mNetworkType;
146 mSubtype = source.mSubtype;
147 mTypeName = source.mTypeName;
148 mSubtypeName = source.mSubtypeName;
149 mState = source.mState;
150 mDetailedState = source.mDetailedState;
151 mReason = source
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DSubscriptionInfo.java72 * The source of the name, NAME_SOURCE_UNDEFINED, NAME_SOURCE_DEFAULT_SOURCE,
194 * @return the source of the name, eg NAME_SOURCE_UNDEFINED, NAME_SOURCE_DEFAULT_SOURCE,
309 public SubscriptionInfo createFromParcel(Parcel source) {
310 int id = source.readInt();
311 String iccId = source.readString();
312 int simSlotIndex = source.readInt();
313 CharSequence displayName = source.readCharSequence();
314 CharSequence carrierName = source.readCharSequence();
315 int nameSource = source.readInt();
316 int iconTint = source
[all...]
/frameworks/base/media/java/android/media/
H A DThumbnailUtils.java196 * @param source original bitmap source
201 Bitmap source, int width, int height) {
202 return extractThumbnail(source, width, height, OPTIONS_NONE);
208 * @param source original bitmap source
214 Bitmap source, int width, int height, int options) {
215 if (source == null) {
220 if (source.getWidth() < source
200 extractThumbnail( Bitmap source, int width, int height) argument
213 extractThumbnail( Bitmap source, int width, int height, int options) argument
357 transform(Matrix scaler, Bitmap source, int targetWidth, int targetHeight, int options) argument
[all...]

Completed in 478 milliseconds

1234567891011>>