Searched defs:prototype (Results 1 - 7 of 7) sorted by relevance

/frameworks/compile/mclinker/lib/LD/
H A DStubFactory.cpp32 /// addPrototype - register a stub prototype
44 // find if there is a prototype stub for the input relocation
46 Stub* prototype = findPrototype(pReloc, pReloc.place(), pTargetSymValue); local
47 if (prototype != NULL) {
59 stub = islands.second->findStub(prototype, pReloc);
67 stub = islands.first->findStub(prototype, pReloc);
72 // create a stub from the prototype
73 stub = prototype->clone();
109 islands.first->addStub(prototype, pReloc, *stub);
119 /// findPrototype - find if there is a registered stub prototype fo
[all...]
/frameworks/base/core/java/android/print/
H A DPrintDocumentInfo.java121 private PrintDocumentInfo(PrintDocumentInfo prototype) { argument
122 mName = prototype.mName;
123 mPageCount = prototype.mPageCount;
124 mContentType = prototype.mContentType;
125 mDataSize = prototype.mDataSize;
H A DPrinterCapabilitiesInfo.java72 public PrinterCapabilitiesInfo(PrinterCapabilitiesInfo prototype) { argument
73 copyFrom(prototype);
H A DPrinterInfo.java56 private PrinterInfo(PrinterInfo prototype) { argument
57 copyFrom(prototype);
H A DPrintJobInfo.java677 * @param prototype Prototype to use as a starting point.
680 public Builder(PrintJobInfo prototype) { argument
681 mPrototype = (prototype != null)
682 ? new PrintJobInfo(prototype)
/frameworks/compile/mclinker/include/mcld/LD/
H A DBranchIsland.h90 /// findStub - return true if there is a stub built from the given prototype
115 const Stub* prototype() const { return m_pPrototype; } function in class:mcld::BranchIsland::Key
127 return (size_t((uintptr_t)KEY.prototype())) ^
138 if ((KEY1.prototype() == KEY2.prototype()) &&
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DTouchExplorer.java869 * @param prototype The prototype from which to create the injected events.
872 private void sendDownForAllNotInjectedPointers(MotionEvent prototype, int policyFlags) { argument
877 final int pointerCount = prototype.getPointerCount();
879 final int pointerId = prototype.getPointerId(i);
884 sendMotionEvent(prototype, action, pointerIdBits, policyFlags);
925 * @param prototype The prototype from which to create the injected events.
928 private void sendUpForInjectedDownPointers(MotionEvent prototype, int policyFlags) { argument
931 final int pointerCount = prototype
951 sendActionDownAndUp(MotionEvent prototype, int policyFlags, boolean targetAccessibilityFocus) argument
970 sendMotionEvent(MotionEvent prototype, int action, int pointerIdBits, int policyFlags) argument
1302 post(MotionEvent prototype, int policyFlags) argument
1443 post(MotionEvent prototype, int pointerIdBits, int policyFlags) argument
[all...]

Completed in 430 milliseconds