Searched defs:source (Results 76 - 100 of 673) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/view/inputmethod/
H A DCorrectionInfo.java43 private CorrectionInfo(Parcel source) { argument
44 mOffset = source.readInt();
45 mOldText = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
46 mNewText = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
93 public CorrectionInfo createFromParcel(Parcel source) {
94 return new CorrectionInfo(source);
/frameworks/base/media/java/android/media/tv/
H A DDvbDeviceInfo.java35 public DvbDeviceInfo createFromParcel(Parcel source) {
37 return new DvbDeviceInfo(source);
53 private DvbDeviceInfo(Parcel source) { argument
54 mAdapterId = source.readInt();
55 mDeviceId = source.readInt();
/frameworks/base/media/jni/
H A Dandroid_media_MediaDataSource.cpp35 JMediaDataSource::JMediaDataSource(JNIEnv* env, jobject source) argument
37 mMediaDataSourceObj = env->NewGlobalRef(source);
/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/packages/VpnDialogs/src/com/android/vpndialogs/
H A DConfirmDialog.java112 public Drawable getDrawable(String source) { argument
/frameworks/base/services/core/java/com/android/server/
H A DHardwarePropertiesManagerService.java41 private static native float[] nativeGetDeviceTemperatures(int type, int source); argument
55 public float[] getDeviceTemperatures(String callingPackage, int type, int source) argument
59 return nativeGetDeviceTemperatures(type, source);
/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...]
H A DHdmiCecMessage.java26 * source and destination address, command (or opcode), and optional parameters.
40 public HdmiCecMessage(int source, int destination, int opcode, byte[] params) { argument
41 mSource = source;
48 * Return the source address field of the message. It is the logical address
51 * @return source address
H A DSetArcTransmissionStateAction.java42 * @param source {@link HdmiCecLocalDevice} instance
45 SetArcTransmissionStateAction(HdmiCecLocalDevice source, int avrAddress, argument
47 super(source);
H A DSystemAudioAutoInitiationAction.java33 SystemAudioAutoInitiationAction(HdmiCecLocalDevice source, int avrAddress) { argument
34 super(source);
/frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/presentation/
H A DCubeRenderer.java17 package com.android.accessorydisplay.source.presentation;
H A DDemoPresentation.java17 package com.android.accessorydisplay.source.presentation;
20 import com.android.accessorydisplay.source.R;
/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
H A DRunResult.java41 RunResult(Parcel source) { argument
42 name = source.readString();
43 fgLongName = source.readString();
44 bgLongName = source.readString();
45 fgTime = source.readLong();
46 fgOps = source.readLong();
47 bgTime = source.readLong();
48 bgOps = source.readLong();
/frameworks/base/tools/aapt/
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);
H A DSymbol.h52 SourcePos source; member in struct:SymbolDefinition
87 , source(src) {
91 return (symbol < rhs.symbol) || (config < rhs.config) || (source < rhs.source);
/frameworks/base/tools/aapt2/io/
H A DFileSystem.cpp32 RegularFile::RegularFile(const Source& source) : source_(source) {} argument
/frameworks/base/tools/aapt2/java/
H A DManifestClassGenerator.cpp32 const Source& source,
45 diag->Error(DiagMessage(source) << "empty symbol");
51 diag->Error(DiagMessage(source) << "invalid character '"
58 diag->Error(DiagMessage(source) << "symbol can not start with a digit");
65 static bool WriteSymbol(const Source& source, IDiagnostics* diag, argument
69 diag->Error(DiagMessage(source) << "<" << el->name
75 diag, source.WithLine(el->line_number), attr->value);
92 diag->Error(DiagMessage(res->file.source) << "no root tag defined");
97 diag->Error(DiagMessage(res->file.source)
112 error |= !WriteSymbol(res->file.source, dia
31 ExtractJavaIdentifier(IDiagnostics* diag, const Source& source, const StringPiece& value) argument
[all...]
/frameworks/base/wifi/java/android/net/wifi/
H A DWpsInfo.java72 public WpsInfo(WpsInfo source) { argument
73 if (source != null) {
74 setup = source.setup;
75 BSSID = source.BSSID;
76 pin = source.pin;
H A DWpsResult.java63 public WpsResult(WpsResult source) { argument
64 if (source != null) {
65 status = source.status;
66 pin = source.pin;
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pConfig.java123 public WifiP2pConfig(WifiP2pConfig source) { argument
124 if (source != null) {
125 deviceAddress = source.deviceAddress;
126 wps = new WpsInfo(source.wps);
127 groupOwnerIntent = source.groupOwnerIntent;
128 netId = source.netId;
/frameworks/opt/chips/src/com/android/ex/chips/
H A DCircularImageView.java26 private final RectF source; field in class:CircularImageView
43 source = new RectF();
79 source.set(0, 0, bitmap.getWidth(), bitmap.getHeight());
83 drawBitmapWithCircleOnCanvas(bitmap, canvas, source, destination);
87 * Given the source bitmap and a canvas, draws the bitmap through a circular
90 * @param bitmap The source bitmap to draw.
92 * @param source The source bound of the bitmap.
96 RectF source, RectF dest) {
103 matrix.setRectToRect(source, des
95 drawBitmapWithCircleOnCanvas(Bitmap bitmap, Canvas canvas, RectF source, RectF dest) argument
[all...]
/frameworks/opt/net/ims/src/java/com/android/ims/internal/
H A DVideoPauseTracker.java65 * Tracks a request to pause the video for a source (see {@link #SOURCE_DATA_ENABLED},
70 * to pause via any source and we're not already paused.
72 * @param source The source of the pause request.
76 public boolean shouldPauseVideoFor(int source) { argument
79 mPauseRequests.add(source);
82 Log.i(this, "shouldPauseVideoFor: source=%s, pendingRequests=%s - should pause",
83 sourceToString(source), sourcesToString(mPauseRequests));
87 Log.i(this, "shouldPauseVideoFor: source=%s, pendingRequests=%s - already paused",
88 sourceToString(source), sourcesToStrin
107 shouldResumeVideoFor(int source) argument
146 wasVideoPausedFromSource(int source) argument
167 sourceToString(int source) argument
[all...]
/frameworks/rs/tests/java_api/CannyLive/src/com/android/example/cannylive/
H A DMediaStoreSaver.java44 final Bitmap source = image;
47 source.compress(Bitmap.CompressFormat.JPEG, 50, imageOut);
55 StreamWriter source,
74 if (source != null) {
77 source.write(imageOut);
114 Bitmap source,
123 float scaleX = width / source.getWidth();
124 float scaleY = height / source.getHeight();
128 Bitmap thumb = Bitmap.createBitmap(source, 0, 0,
129 source
54 insertImage(ContentResolver cr, StreamWriter source, String title, String description) argument
112 storeThumbnail( ContentResolver cr, Bitmap source, long id, float width, float height, int kind) argument
[all...]
/frameworks/rs/tests/java_api/RsCameraDemo/src/com/android/example/rscamera/
H A DMediaStoreSaver.java44 final Bitmap source = image;
47 source.compress(Bitmap.CompressFormat.JPEG, 50, imageOut);
55 StreamWriter source,
74 if (source != null) {
77 source.write(imageOut);
114 Bitmap source,
123 float scaleX = width / source.getWidth();
124 float scaleY = height / source.getHeight();
128 Bitmap thumb = Bitmap.createBitmap(source, 0, 0,
129 source
54 insertImage(ContentResolver cr, StreamWriter source, String title, String description) argument
112 storeThumbnail( ContentResolver cr, Bitmap source, long id, float width, float height, int kind) argument
[all...]
/frameworks/av/cmds/stagefright/
H A Daudioloop.cpp43 fprintf(stderr, " -m use microphone for input, default sine source\n");
83 sp<MediaSource> source; local
87 source = new AudioSource(
93 // use a sine source at 500 hz.
94 source = new SineSource(kSampleRate, channels);
107 if (source->getFormat()->findInt32(kKeyMaxInputSize, &maxInputSize)) {
115 sp<IMediaSource> encoder = MediaCodecSource::Create(looper, meta, source);

Completed in 1721 milliseconds

1234567891011>>