Searched refs:args (Results 226 - 250 of 357) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/view/
H A DViewRootImpl.java2832 SomeArgs args = (SomeArgs) msg.obj;
2833 if (mWinFrame.equals(args.arg1)
2834 && mPendingContentInsets.equals(args.arg2)
2835 && mPendingVisibleInsets.equals(args.arg3)
2836 && args.arg4 == null) {
2842 SomeArgs args = (SomeArgs) msg.obj;
2844 Configuration config = (Configuration) args.arg4;
2849 mWinFrame.set((Rect) args.arg1);
2850 mPendingContentInsets.set((Rect) args.arg2);
2851 mPendingVisibleInsets.set((Rect) args
3875 handleDispatchSystemUiVisibilityChanged(SystemUiVisibilityInfo args) argument
[all...]
H A DLayoutInflater.java584 Object[] args = mConstructorArgs;
585 args[1] = attrs;
587 final View view = constructor.newInstance(args);
H A DWindowManagerPolicy.java1136 * @param args additional arguments to the dump request.
1138 public void dump(String prefix, PrintWriter writer, String[] args); argument
/frameworks/base/core/java/android/app/
H A DActivityThread.java407 Intent args; field in class:ActivityThread.ServiceArgsData
410 + " args=" + args + "}";
504 String[] args; field in class:ActivityThread.DumpComponentInfo
706 int flags ,Intent args) {
712 s.args = args;
791 public void dumpService(FileDescriptor fd, IBinder servicetoken, String[] args) { argument
796 data.args = args;
705 scheduleServiceArgs(IBinder token, boolean taskRemoved, int startId, int flags ,Intent args) argument
860 dumpActivity(FileDescriptor fd, IBinder activitytoken, String prefix, String[] args) argument
874 dumpProvider(FileDescriptor fd, IBinder providertoken, String[] args) argument
888 dumpMemInfo(FileDescriptor fd, boolean checkin, boolean all, String[] args) argument
1092 dumpGfxInfo(FileDescriptor fd, String[] args) argument
1098 dumpDbInfo(FileDescriptor fd, String[] args) argument
5008 main(String[] args) argument
[all...]
H A DActivity.java975 private Dialog createDialog(Integer dialogId, Bundle state, Bundle args) { argument
976 final Dialog dialog = onCreateDialog(dialogId, args);
2955 * @param args The dialog arguments provided to {@link #showDialog(int, Bundle)}.
2968 protected Dialog onCreateDialog(int id, Bundle args) { argument
2995 * @param args The dialog arguments provided to {@link #showDialog(int, Bundle)}.
3006 protected void onPrepareDialog(int id, Dialog dialog, Bundle args) { argument
3036 * @param args Arguments to pass through to the dialog. These will be saved
3055 public final boolean showDialog(int id, Bundle args) { argument
3062 md.mDialog = createDialog(id, null, args);
3069 md.mArgs = args;
4762 dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) argument
4766 dumpInner(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) argument
[all...]
/frameworks/base/services/input/
H A DInputReader.cpp186 NotifyKeyArgs args(when, deviceId, source, policyFlags,
188 context->getListener()->notifyKey(&args);
489 NotifyConfigurationChangedArgs args(when);
490 mQueuedListener->notifyConfigurationChanged(&args);
1090 NotifyDeviceResetArgs args(when, mId);
1091 mContext->getListener()->notifyDeviceReset(&args);
1838 NotifySwitchArgs args(when, 0, mUpdatedSwitchValues, mUpdatedSwitchMask);
1839 getListener()->notifySwitch(&args);
2164 NotifyKeyArgs args(when, getDeviceId(), mSource, policyFlags,
2167 getListener()->notifyKey(&args);
[all...]
/frameworks/base/core/java/android/widget/
H A DActivityChooserModel.java1053 public Void doInBackground(Object... args) { argument
1054 List<HistoricalRecord> historicalRecords = (List<HistoricalRecord>) args[0];
1055 String hostoryFileName = (String) args[1];
/frameworks/support/v4/java/android/support/v4/app/
H A DFragmentActivity.java643 * @param args additional arguments to the dump request.
645 public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) { argument
648 //ActivityCompatHoneycomb.dump(this, prefix, fd, writer, args);
665 mLoaderManager.dump(prefix + " ", fd, writer, args);
667 mFragments.dump(prefix, fd, writer, args);
/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorPlayer.cpp560 status_t VideoEditorPlayer::VeAudioOutput::dump(int fd, const Vector<String16>& args) const
575 mTrack->dump(fd, args);
H A DVideoEditorPlayer.h65 virtual status_t dump(int fd,const Vector<String16>& args) const;
/frameworks/base/core/java/android/service/dreams/
H A DDreamService.java733 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
734 super.dump(fd, pw, args);
/frameworks/base/services/java/com/android/server/
H A DAppWidgetService.java312 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
322 service.dump(fd, ipw, args);
H A DCommonTimeManagementService.java185 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DRenameClassAdapter.java178 Type[] args = Type.getArgumentTypes(desc);
181 for (Type arg : args) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPanelView.java36 public final void LOG(String fmt, Object... args) { argument
38 Slog.v(TAG, (mViewName != null ? (mViewName + ": ") : "") + String.format(fmt, args));
/frameworks/base/core/java/android/accounts/
H A DAccountManagerService.java2052 * @param args array of argument strings
2056 private static boolean scanArgs(String[] args, String value) { argument
2057 if (args != null) {
2058 for (String arg : args) {
2068 protected void dump(FileDescriptor fd, PrintWriter fout, String[] args) { argument
2076 final boolean isCheckinRequest = scanArgs(args, "--checkin") || scanArgs(args, "-c");
2083 dumpUser(getUserAccounts(user.id), fd, ipw, args, isCheckinRequest);
2090 String[] args, boolean isCheckinRequest) {
2125 mAuthenticatorCache.dump(fd, fout, args, userAccount
2089 dumpUser(UserAccounts userAccounts, FileDescriptor fd, PrintWriter fout, String[] args, boolean isCheckinRequest) argument
[all...]
/frameworks/av/include/media/
H A DAudioTrack.h452 status_t dump(int fd, const Vector<String16>& args) const;
H A DMediaPlayerInterface.h197 virtual status_t dump(int fd, const Vector<String16> &args) const {
/frameworks/av/media/libmediaplayerservice/
H A DMetadataRetrieverClient.cpp59 status_t MetadataRetrieverClient::dump(int fd, const Vector<String16>& args) const
H A DStagefrightRecorder.h66 virtual status_t dump(int fd, const Vector<String16>& args) const;
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerDriver.cpp332 status_t NuPlayerDriver::dump(int fd, const Vector<String16> &args) const {
/frameworks/av/services/camera/libcameraservice/
H A DCamera2Client.h83 virtual status_t dump(int fd, const Vector<String16>& args);
/frameworks/av/services/camera/libcameraservice/camera2/
H A DCallbackProcessor.cpp147 void CallbackProcessor::dump(int fd, const Vector<String16>& args) const {
/frameworks/base/services/java/com/android/server/location/
H A DLocationFudger.java340 public void dump(FileDescriptor fd, PrintWriter pw, String[] args) { argument
/frameworks/base/tools/aidl/
H A DType.h409 const vector<Type*>& args);
450 const vector<Type*>& args);
478 // args is the number of template types (what is this called?)
479 void AddGenericType(const string& package, const string& name, int args);
495 int args; member in struct:Namespace::Generic

Completed in 489 milliseconds

1234567891011>>