Searched defs:source (Results 251 - 275 of 673) sorted by relevance

<<11121314151617181920>>

/frameworks/base/services/core/java/com/android/server/hdmi/
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.cpp45 // These values must be kept in sync with the temperature source constants in
111 int source) {
135 switch (source) {
110 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.h52 Source source; member in struct:aapt::Symbol
206 const Source& source, const android::StringPiece& path, IDiagnostics* diag);
209 const Source& source, const android::StringPiece& path,
291 const Source& source, const android::StringPiece& path, io::IFile* file,
/frameworks/base/tools/aapt2/cmd/
H A DDump.cpp35 const Source& source, IAaptContext* context) {
37 DeserializeCompiledFileFromPb(pb_file, source, context->GetDiagnostics());
45 << "Source: " << file->source << "\n";
34 DumpCompiledFile(const pb::CompiledFile& pb_file, const void* data, size_t len, const Source& source, IAaptContext* context) argument
/frameworks/base/tools/aapt2/io/
H A DZipArchive.cpp31 const Source& source)
32 : zip_handle_(handle), zip_entry_(entry), source_(source) {}
30 ZipFile(ZipArchiveHandle handle, const ZipEntry& entry, const Source& source) argument
/frameworks/base/tools/aapt2/java/
H A DProguardRules.cpp32 BaseVisitor(const Source& source, KeepSet* keep_set) argument
33 : source_(source), keep_set_(keep_set) {}
81 LayoutVisitor(const Source& source, KeepSet* keep_set) argument
82 : BaseVisitor(source, keep_set) {}
115 XmlResourceVisitor(const Source& source, KeepSet* keep_set) argument
116 : BaseVisitor(source, keep_set) {}
142 TransitionVisitor(const Source& source, KeepSet* keep_set) argument
143 : BaseVisitor(source, keep_set) {}
165 ManifestVisitor(const Source& source, KeepSet* keep_set, bool main_dex_only) argument
166 : BaseVisitor(source, keep_se
234 CollectProguardRulesForManifest(const Source& source, xml::XmlResource* res, KeepSet* keep_set, bool main_dex_only) argument
245 CollectProguardRules(const Source& source, xml::XmlResource* res, KeepSet* keep_set) argument
279 *out << "# Referenced at " << source << "\\n"; local
286 *out << "# Referenced at " << source << "\\n"; local
[all...]
/frameworks/base/tools/aapt2/proto/
H A DProtoHelpers.cpp37 void SerializeSourceToPb(const Source& source, StringPool* src_pool, argument
39 StringPool::Ref ref = src_pool->MakeRef(source.path);
41 if (source.line) {
42 out_pb_source->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.cpp170 int32_t axis, uint32_t source) const {
174 if (range.axis == axis && range.source == source) {
181 void InputDeviceInfo::addSource(uint32_t source) { argument
182 mSources |= source;
185 void InputDeviceInfo::addMotionRange(int32_t axis, uint32_t source, float min, float max, argument
187 MotionRange range = { axis, source, min, max, flat, fuzz, resolution };
/frameworks/support/compat/java/android/support/v4/view/
H A DViewParentCompat.java95 View source, int changeType) {
104 View source, int changeType) {
105 parent.notifySubtreeAccessibilityStateChanged(child, source, changeType);
524 * @param source The descendant view that changed.
535 View source, int changeType) {
536 IMPL.notifySubtreeAccessibilityStateChanged(parent, child, source, changeType);
94 notifySubtreeAccessibilityStateChanged(ViewParent parent, View child, View source, int changeType) argument
103 notifySubtreeAccessibilityStateChanged(ViewParent parent, View child, View source, int changeType) argument
534 notifySubtreeAccessibilityStateChanged(ViewParent parent, View child, View source, int changeType) argument
/frameworks/support/percent/src/android/support/percent/
H A DPercentFrameLayout.java192 public LayoutParams(ViewGroup.LayoutParams source) { argument
193 super(source);
196 public LayoutParams(MarginLayoutParams source) { argument
197 super(source);
200 public LayoutParams(FrameLayout.LayoutParams source) { argument
201 super((MarginLayoutParams) source);
202 gravity = source.gravity;
206 public LayoutParams(LayoutParams source) { argument
208 this((FrameLayout.LayoutParams) source);
209 mPercentLayoutInfo = source
[all...]

Completed in 7017 milliseconds

<<11121314151617181920>>