HomeSort by relevance Sort by last modified time
    Searched defs:mPrototype (Results 1 - 5 of 5) sorted by null

  /packages/services/BuiltInPrintService/src/com/android/bips/ipp/
JobStatus.java 117 final JobStatus mPrototype;
120 mPrototype = new JobStatus();
124 mPrototype = new JobStatus(from);
128 mPrototype.mId = id;
133 mPrototype.mJobState = jobState;
138 mPrototype.mJobResult = jobResult;
143 mPrototype.mBlockedReasons.clear();
148 mPrototype.mBlockedReasons.add(blockedReason);
153 return new JobStatus(mPrototype);
  /frameworks/base/core/java/android/print/
PrintJobInfo.java 771 private final PrintJobInfo mPrototype;
780 mPrototype = (prototype != null)
791 mPrototype.mCopies = copies;
800 mPrototype.mAttributes = attributes;
809 mPrototype.mPageRanges = pages;
821 mPrototype.mProgress = progress;
831 mPrototype.mStatus = status;
843 if (mPrototype.mAdvancedOptions == null) {
844 mPrototype.mAdvancedOptions = new Bundle();
846 mPrototype.mAdvancedOptions.putString(key, value)
    [all...]
PrintDocumentInfo.java 294 private final PrintDocumentInfo mPrototype;
313 mPrototype = new PrintDocumentInfo();
314 mPrototype.mName = name;
333 mPrototype.mPageCount = pageCount;
350 mPrototype.mContentType = type;
363 if (mPrototype.mPageCount == 0) {
364 mPrototype.mPageCount = PAGE_COUNT_UNKNOWN;
366 return new PrintDocumentInfo(mPrototype);
PrinterCapabilitiesInfo.java 446 private final PrinterCapabilitiesInfo mPrototype;
459 mPrototype = new PrinterCapabilitiesInfo();
477 if (mPrototype.mMediaSizes == null) {
478 mPrototype.mMediaSizes = new ArrayList<MediaSize>();
480 final int insertionIndex = mPrototype.mMediaSizes.size();
481 mPrototype.mMediaSizes.add(mediaSize);
484 mPrototype.mDefaults[PROPERTY_MEDIA_SIZE] = insertionIndex;
505 if (mPrototype.mResolutions == null) {
506 mPrototype.mResolutions = new ArrayList<Resolution>();
508 final int insertionIndex = mPrototype.mResolutions.size()
    [all...]
  /frameworks/base/services/accessibility/java/com/android/server/accessibility/
TouchExplorer.java     [all...]

Completed in 67 milliseconds