Searched defs:source (Results 226 - 250 of 617) sorted by relevance

1234567891011>>

/frameworks/base/services/core/java/com/android/server/hdmi/
H A DNewDeviceAction.java59 * @param source {@link HdmiCecLocalDevice} instance
64 NewDeviceAction(HdmiCecLocalDevice source, int deviceLogicalAddress, argument
66 super(source);
H A DSystemAudioAction.java59 * @param source {@link HdmiCecLocalDevice} instance
65 SystemAudioAction(HdmiCecLocalDevice source, int avrAddress, boolean targetStatus, argument
67 super(source);
111 // <System Audio Mode Request> takes the physical address of the source device
113 // 1) physical address of the active source
H A DVolumeControlAction.java73 VolumeControlAction(HdmiCecLocalDevice source, int avrAddress, boolean isVolumeUp) { argument
74 super(source);
/frameworks/base/services/core/java/com/android/server/location/
H A DPassiveProvider.java95 public void setRequest(ProviderRequest request, WorkSource source) { argument
/frameworks/base/services/core/jni/
H A Dcom_android_server_HardwarePropertiesManagerService.cpp34 // These values must be kept in sync with the temperature source constants in
93 int source) {
109 switch (source) {
92 nativeGetDeviceTemperatures(JNIEnv *env, jclass , int type, int source) argument
/frameworks/base/telephony/java/com/android/ims/internal/uce/common/
H A DStatusCode.java107 public StatusCode createFromParcel(Parcel source) {
109 return new StatusCode(source);
119 private StatusCode(Parcel source) { argument
120 readFromParcel(source);
124 public void readFromParcel(Parcel source) { argument
125 mStatusCode = source.readInt();
/frameworks/base/telephony/java/com/android/ims/internal/uce/options/
H A DOptionsCmdStatus.java127 public OptionsCmdStatus createFromParcel(Parcel source) {
128 return new OptionsCmdStatus(source);
136 private OptionsCmdStatus(Parcel source) { argument
137 readFromParcel(source);
141 public void readFromParcel(Parcel source) { argument
142 mUserData = source.readInt();
143 mCmdId = source.readParcelable(OptionsCmdId.class.getClassLoader());
144 mStatus = source.readParcelable(StatusCode.class.getClassLoader());
145 mCapInfo = source.readParcelable(CapInfo.class.getClassLoader());
H A DOptionsSipResponse.java138 public OptionsSipResponse createFromParcel(Parcel source) {
139 return new OptionsSipResponse(source);
148 private OptionsSipResponse(Parcel source) { argument
149 readFromParcel(source);
153 public void readFromParcel(Parcel source) { argument
154 mRequestId = source.readInt();
155 mSipResponseCode = source.readInt();
156 mReasonPhrase = source.readString();
157 mCmdId = source.readParcelable(OptionsCmdId.class.getClassLoader());
158 mRetryAfter = source
[all...]
/frameworks/base/telephony/java/com/android/ims/internal/uce/presence/
H A DPresCmdStatus.java122 public PresCmdStatus createFromParcel(Parcel source) {
124 return new PresCmdStatus(source);
134 private PresCmdStatus(Parcel source) { argument
135 readFromParcel(source);
139 public void readFromParcel(Parcel source) { argument
140 mUserData = source.readInt();
141 mRequestId = source.readInt();
142 mCmdId = source.readParcelable(PresCmdId.class.getClassLoader());
143 mStatus = source.readParcelable(StatusCode.class.getClassLoader());
H A DPresResInstanceInfo.java161 public PresResInstanceInfo createFromParcel(Parcel source) {
163 return new PresResInstanceInfo(source);
173 private PresResInstanceInfo(Parcel source) { argument
174 readFromParcel(source);
178 public void readFromParcel(Parcel source) { argument
179 mId = source.readString();
180 mReason = source.readString();
181 mResInstanceState = source.readInt();
182 mPresentityUri = source.readString();
183 Parcelable[] tempParcelableArray = source
[all...]
H A DPresServiceInfo.java131 public PresServiceInfo createFromParcel(Parcel source) {
132 return new PresServiceInfo(source);
141 private PresServiceInfo(Parcel source) { argument
142 readFromParcel(source);
146 public void readFromParcel(Parcel source) { argument
147 mServiceID = source.readString();
148 mServiceDesc = source.readString();
149 mServiceVer = source.readString();
150 mMediaCap = source.readInt();
H A DPresSipResponse.java137 public PresSipResponse createFromParcel(Parcel source) {
138 return new PresSipResponse(source);
147 private PresSipResponse(Parcel source) { argument
148 readFromParcel(source);
152 public void readFromParcel(Parcel source) { argument
153 mRequestId = source.readInt();
154 mSipResponseCode = source.readInt();
155 mReasonPhrase = source.readString();
156 mCmdId = source.readParcelable(PresCmdId.class.getClassLoader());
157 mRetryAfter = source
[all...]
/frameworks/base/test-runner/src/android/test/
H A DClassPathPackageInfoSource.java137 private void scanForApkFiles(File source, String packageName, argument
139 if (source.getPath().endsWith(".apk")) {
140 findClassesInApk(source.getPath(), packageName, classNames, subpackageNames);
142 File[] files = source.listFiles();
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/
H A DTestSuiteBuilderTest.java144 private void assertContentsInOrder(List<String> actual, String... source) { argument
145 String[] clonedSource = source.clone();
/frameworks/base/tools/aapt2/
H A DResourceTable.h49 Source source; member in struct:aapt::Symbol
207 const Source& source,
213 const Source& source,
286 const Source& source,
/frameworks/base/tools/aapt2/io/
H A DZipArchive.cpp27 ZipFile::ZipFile(ZipArchiveHandle handle, const ZipEntry& entry, const Source& source) : argument
28 mZipHandle(handle), mZipEntry(entry), mSource(source) {
/frameworks/base/tools/aapt2/java/
H A DProguardRules.cpp29 BaseVisitor(const Source& source, KeepSet* keepSet) : mSource(source), mKeepSet(keepSet) { argument
75 LayoutVisitor(const Source& source, KeepSet* keepSet) : BaseVisitor(source, keepSet) { argument
104 XmlResourceVisitor(const Source& source, KeepSet* keepSet) : BaseVisitor(source, keepSet) { argument
125 TransitionVisitor(const Source& source, KeepSet* keepSet) : BaseVisitor(source, keepSet) { argument
143 ManifestVisitor(const Source& source, KeepSet* keepSet) : BaseVisitor(source, keepSe argument
187 collectProguardRulesForManifest(const Source& source, xml::XmlResource* res, KeepSet* keepSet) argument
197 collectProguardRules(const Source& source, xml::XmlResource* res, KeepSet* keepSet) argument
230 *out << "# Referenced at " << source << "\\n"; local
237 *out << "# Referenced at " << source << "\\n"; local
[all...]
/frameworks/base/tools/aapt2/process/
H A DSymbolTable.cpp28 void SymbolTable::appendSource(std::unique_ptr<ISymbolSource> source) { argument
29 mSources.push_back(std::move(source));
34 void SymbolTable::prependSource(std::unique_ptr<ISymbolSource> source) { argument
35 mSources.insert(mSources.begin(), std::move(source));
/frameworks/base/tools/aapt2/proto/
H A DProtoHelpers.cpp35 void serializeSourceToPb(const Source& source, StringPool* srcPool, pb::Source* outPbSource) { argument
36 StringPool::Ref ref = srcPool->makeRef(util::utf8ToUtf16(source.path));
38 if (source.line) {
39 outPbSource->set_line_no(static_cast<uint32_t>(source.line.value()));
/frameworks/base/tools/layoutlib/bridge/src/android/view/
H A DShadowPainter.java38 * If shadowSize is less or equals to 1, no shadow will be painted and the source image will be
41 * @param source the source image
45 * @return an image with the shadow painted in or the source image if shadowSize <= 1
48 public static BufferedImage createDropShadow(BufferedImage source, int shadowSize) { argument
51 return createDropShadow(source, shadowSize, 0.7f, 0);
61 * @param source the source image to be shadowed
66 * @return a new image with the source image on top of its shadow when shadowSize > 0 or the
67 * source imag
70 createDropShadow(BufferedImage source, int shadowSize, float shadowOpacity, int shadowRgb) argument
183 createRectangularDropShadow(BufferedImage source) argument
210 createSmallRectangularDropShadow(BufferedImage source) argument
[all...]
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DClassHasNativeVisitor.java98 public void visitSource(String source, String debug) { argument
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pDeviceList.java43 public WifiP2pDeviceList(WifiP2pDeviceList source) { argument
44 if (source != null) {
45 for (WifiP2pDevice d : source.getDeviceList()) {
H A DWifiP2pGroupList.java51 public WifiP2pGroupList(WifiP2pGroupList source, GroupDeleteListener listener) { argument
63 if (source != null) {
64 for (Map.Entry<Integer, WifiP2pGroup> item : source.mGroups.snapshot().entrySet()) {
/frameworks/native/libs/input/
H A DInputDevice.cpp163 int32_t axis, uint32_t source) const {
167 if (range.axis == axis && range.source == source) {
174 void InputDeviceInfo::addSource(uint32_t source) { argument
175 mSources |= source;
178 void InputDeviceInfo::addMotionRange(int32_t axis, uint32_t source, float min, float max, argument
180 MotionRange range = { axis, source, min, max, flat, fuzz, resolution };
/frameworks/support/percent/src/android/support/percent/
H A DPercentFrameLayout.java134 public LayoutParams(ViewGroup.LayoutParams source) { argument
135 super(source);
138 public LayoutParams(MarginLayoutParams source) { argument
139 super(source);
142 public LayoutParams(FrameLayout.LayoutParams source) { argument
143 super((MarginLayoutParams) source);
144 gravity = source.gravity;
147 public LayoutParams(LayoutParams source) { argument
148 this((FrameLayout.LayoutParams) source);
149 mPercentLayoutInfo = source
[all...]

Completed in 388 milliseconds

1234567891011>>