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

1234567891011>>

/frameworks/base/core/java/android/hardware/camera2/utils/
H A DParamsUtils.java161 * Convert an integral rectangle ({@code source}) to a floating point rectangle
164 * @param source the originating integer rectangle will be read from here
169 public static void convertRectF(Rect source, RectF destination) { argument
170 checkNotNull(source, "source must not be null");
173 destination.left = source.left;
174 destination.right = source.right;
175 destination.bottom = source.bottom;
176 destination.top = source.top;
/frameworks/base/media/java/android/media/tv/
H A DTvStreamConfig.java48 public TvStreamConfig createFromParcel(Parcel source) {
51 streamId(source.readInt()).
52 type(source.readInt()).
53 maxWidth(source.readInt()).
54 maxHeight(source.readInt()).
55 generation(source.readInt()).build();
/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
H A DStatementParser.java41 static ParsedStatement parseStatementList(String statementList, AbstractAsset source) argument
53 result = parseStatement(reader, source);
69 static ParsedStatement parseStatement(String statementString, AbstractAsset source) argument
73 return parseStatement(reader, source);
80 static ParsedStatement parseStatement(JsonReader reader, AbstractAsset source) argument
105 .create(source, target, Relation.create(relations.getString(i))));
/frameworks/base/wifi/java/android/net/wifi/
H A DScanResult.java397 public ScanResult(ScanResult source) { argument
398 if (source != null) {
399 wifiSsid = source.wifiSsid;
400 SSID = source.SSID;
401 BSSID = source.BSSID;
402 capabilities = source.capabilities;
403 level = source.level;
404 frequency = source.frequency;
405 channelWidth = source.channelWidth;
406 centerFreq0 = source
[all...]
/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;
H A DWifiP2pWfdInfo.java160 public WifiP2pWfdInfo(WifiP2pWfdInfo source) { argument
161 if (source != null) {
162 mWfdEnabled = source.mWfdEnabled;
163 mDeviceInfo = source.mDeviceInfo;
164 mCtrlPort = source.mCtrlPort;
165 mMaxThroughput = source.mMaxThroughput;
/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/base/core/java/android/view/
H A DFocusFinder.java271 * direction from a source rect? This is the core routine that determines
274 * @param source The source we are searching from
279 boolean isBetterCandidate(int direction, Rect source, Rect rect1, Rect rect2) { argument
283 if (!isCandidate(source, rect1, direction)) {
289 if (!isCandidate(source, rect2, direction)) {
294 if (beamBeats(direction, source, rect1, rect2)) {
299 if (beamBeats(direction, source, rect2, rect1)) {
305 majorAxisDistance(direction, source, rect1),
306 minorAxisDistance(direction, source, rect
318 beamBeats(int direction, Rect source, Rect rect1, Rect rect2) argument
431 majorAxisDistance(int direction, Rect source, Rect dest) argument
435 majorAxisDistanceRaw(int direction, Rect source, Rect dest) argument
456 majorAxisDistanceToFarEdge(int direction, Rect source, Rect dest) argument
460 majorAxisDistanceToFarEdgeRaw(int direction, Rect source, Rect dest) argument
483 minorAxisDistance(int direction, Rect source, Rect dest) argument
[all...]
/frameworks/base/core/tests/coretests/src/android/net/
H A DLinkPropertiesTest.java50 public void assertLinkPropertiesEqual(LinkProperties source, LinkProperties target) { argument
52 assertTrue(source.isIdenticalInterfaceName(target));
53 assertTrue(target.isIdenticalInterfaceName(source));
55 assertTrue(source.isIdenticalAddresses(target));
56 assertTrue(target.isIdenticalAddresses(source));
58 assertTrue(source.isIdenticalDnses(target));
59 assertTrue(target.isIdenticalDnses(source));
61 assertTrue(source.isIdenticalRoutes(target));
62 assertTrue(target.isIdenticalRoutes(source));
64 assertTrue(source
[all...]
/frameworks/av/media/libstagefright/
H A DThrottledSource.cpp25 const sp<DataSource> &source,
27 : mSource(source),
24 ThrottledSource( const sp<DataSource> &source, int32_t bandwidthLimitBytesPerSecond) argument
/frameworks/av/media/libstagefright/include/
H A DAACExtractor.h32 AACExtractor(const sp<DataSource> &source, const sp<AMessage> &meta);
56 const sp<DataSource> &source, String8 *mimeType, float *confidence,
H A DAMRExtractor.h32 AMRExtractor(const sp<DataSource> &source);
57 const sp<DataSource> &source, String8 *mimeType, float *confidence,
H A DDRMExtractor.h34 DRMExtractor(const sp<DataSource> &source, const char *mime);
56 const sp<DataSource> &source, String8 *mimeType, float *confidence,
H A DFLACExtractor.h31 // Extractor assumes ownership of source
32 FLACExtractor(const sp<DataSource> &source);
59 bool SniffFLAC(const sp<DataSource> &source, String8 *mimeType,
H A DMP3Extractor.h33 // Extractor assumes ownership of "source".
34 MP3Extractor(const sp<DataSource> &source, const sp<AMessage> &meta);
56 const sp<DataSource> &source, String8 *mimeType, float *confidence,
H A DOggExtractor.h34 OggExtractor(const sp<DataSource> &source);
58 const sp<DataSource> &source, String8 *mimeType, float *confidence,
/frameworks/av/media/libstagefright/rtsp/
H A DAAVCAssembler.h37 virtual AssemblyStatus assembleMore(const sp<ARTPSource> &source);
50 AssemblyStatus addNALUnit(const sp<ARTPSource> &source);
H A DAMPEG4AudioAssembler.h39 virtual AssemblyStatus assembleMore(const sp<ARTPSource> &source);
59 AssemblyStatus addPacket(const sp<ARTPSource> &source);
H A DAMPEG4ElementaryAssembler.h43 virtual AssemblyStatus assembleMore(const sp<ARTPSource> &source);
71 AssemblyStatus addPacket(const sp<ARTPSource> &source);
H A DARTPAssembler.h40 void onPacketReceived(const sp<ARTPSource> &source);
44 virtual AssemblyStatus assembleMore(const sp<ARTPSource> &source) = 0;
/frameworks/base/core/java/android/accounts/
H A DAccountManagerResponse.java71 public AccountManagerResponse createFromParcel(Parcel source) {
72 return new AccountManagerResponse(source);
/frameworks/base/core/java/android/content/pm/
H A DFeatureGroupInfo.java54 public FeatureGroupInfo createFromParcel(Parcel source) {
56 group.features = source.createTypedArray(FeatureInfo.CREATOR);
H A DPathPermission.java60 public PathPermission createFromParcel(Parcel source) {
61 return new PathPermission(source);
/frameworks/base/core/java/android/hardware/input/
H A DInputDeviceIdentifier.java72 public InputDeviceIdentifier createFromParcel(Parcel source) {
73 return new InputDeviceIdentifier(source);
/frameworks/base/core/java/android/net/
H A DDhcpResults.java47 public DhcpResults(StaticIpConfiguration source) { argument
48 super(source);
52 public DhcpResults(DhcpResults source) { argument
53 super(source);
55 if (source != null) {
57 serverAddress = source.serverAddress;
58 vendorInfo = source.vendorInfo;
59 leaseDuration = source.leaseDuration;

Completed in 1417 milliseconds

1234567891011>>