/frameworks/base/core/tests/coretests/src/android/widget/listview/ |
H A D | ListManagedCursorTest.java | 59 Instrumentation inst = getInstrumentation(); 61 int firstVisiblePosition = arrowScroll(inst); 63 inst.sendCharacterSync(KeyEvent.KEYCODE_BACK); 64 inst.waitForIdleSync(); 77 Instrumentation inst = getInstrumentation(); 79 int firstVisiblePosition = arrowScroll(inst); 82 inst.sendCharacterSync(KeyEvent.KEYCODE_BACK); 83 inst.waitForIdleSync(); 90 public int arrowScroll(Instrumentation inst) { argument 94 inst [all...] |
/frameworks/base/media/mca/tests/src/android/camera/mediaeffects/tests/functional/ |
H A D | EffectsVideoCapture.java | 42 private void captureVideos(String reportTag, Instrumentation inst) throws Exception{ argument 50 inst.sendCharacterSync(KeyEvent.KEYCODE_CAMERA); 52 inst.sendCharacterSync(KeyEvent.KEYCODE_CAMERA); 58 Instrumentation inst = getInstrumentation(); 66 Activity act = inst.startActivitySync(intent); 67 captureVideos("Back Camera Video Capture\n", inst);
|
/frameworks/base/tools/locked_region_code_injection/src/lockedregioncodeinjection/ |
H A D | LockTargetStateAnalysis.java | 38 public BasicValue naryOperation(AbstractInsnNode inst, @SuppressWarnings("rawtypes") List args) argument 43 BasicValue base = super.naryOperation(inst, args); 44 if (!(inst instanceof MethodInsnNode)) { 48 MethodInsnNode invoke = (MethodInsnNode) inst;
|
/frameworks/rs/rsov/compiler/spirit/ |
H A D | instructions.cpp | 26 IdRef::IdRef(Instruction *inst) : mId(inst->getId()), mInstruction(inst) {} argument
|
H A D | transformer.cpp | 65 void Transformer::insert(Instruction *inst) { argument 66 // TODO: warn on nullptr inst 67 inst->Serialize(*mStream);
|
H A D | visitor.cpp | 43 void DoNothingVisitor::visit(Instruction *inst) { inst->accept(this); } argument
|
H A D | core_defs.h | 41 IdRef(Instruction *inst); 51 IdResultType(Instruction *inst) : IdRef(inst) {} argument
|
H A D | module.h | 78 void registerId(uint32_t id, Instruction *inst) { argument 79 mIdTable.insert(std::make_pair(id, inst)); 189 size_t getSize(Instruction *inst); 354 for (auto inst : mAnnotations) { 355 v->visit(inst); 390 for (auto inst : mGlobalDefs) { 391 v->visit(inst); 476 for (auto inst : mInsts) { 477 v->visit(inst); 481 Block *addInstruction(Instruction *inst) { argument [all...] |
H A D | module.cpp | 63 CreateInstructionVisitor([&table](Instruction *inst) { 64 if (inst->hasResult()) { 65 table.insert(std::make_pair(inst->getId(), inst)); 74 CreateInstructionVisitor([&table, &err](Instruction *inst) { 75 for (auto ref : inst->getAllIdRefs()) { 362 size_t Module::getSize(Instruction *inst) { argument 363 switch (inst->getOpCode()) { 365 return getSize(static_cast<TypeVoidInst *>(inst)); 367 return getSize(static_cast<TypeIntInst *>(inst)); 402 FunctionInst *inst = static_cast<FunctionInst *>(lookupByName(name)); local 529 SourceExtensionInst *inst = mBuilder->MakeSourceExtension(ext); local [all...] |
/frameworks/rs/rsov/compiler/ |
H A D | Builtin.cpp | 287 Instruction *transform(CapabilityInst *inst) override { 289 if (inst->mOperand1 == Capability::Addresses || 290 inst->mOperand1 == Capability::Linkage || 291 inst->mOperand1 == Capability::Kernel) { 294 return inst; 297 Instruction *transform(ExtInstImportInst *inst) override { 298 if (inst->mOperand1.compare("OpenCL.std") == 0) { 301 return inst; 304 Instruction *transform(InBoundsPtrAccessChainInst *inst) override { 308 auto newInst = mBuilder.MakeInBoundsAccessChain(inst 349 Instruction *inst = fpTranslate(name, call, this, &mBuilder, getModule()); local [all...] |
H A D | GlobalAllocSPIRITPass.cpp | 149 Instruction *inst = nullptr; local 165 inst = mBuilder.MakeLoad(UInt32Ty, LoadPtr); 166 inst->setId(call->getId()); 168 inst = call; 170 return inst;
|
H A D | Wrapper.cpp | 234 Instruction *inst = m->lookupByName("__GPUBlock"); local 235 if (inst == nullptr) { 239 VariableInst *bufferVar = static_cast<VariableInst *>(inst); 319 Instruction *inst = m->lookupByName(A.VarName.c_str()); local 320 if (inst == nullptr) { 323 VariableInst *bufferVar = static_cast<VariableInst *>(inst); 346 void visit(TypePointerInst *inst) override { 347 matchAndReplace(inst->mOperand1); 350 void visit(TypeForwardPointerInst *inst) override { 351 matchAndReplace(inst [all...] |
/frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/ |
H A D | TouchUtils.java | 30 public static void tapView(Instrumentation inst, RecyclerView recyclerView, argument 46 inst.sendPointerSync(event); 47 inst.waitForIdleSync(); 53 inst.sendPointerSync(event); 54 inst.waitForIdleSync(); 58 inst.sendPointerSync(event); 59 inst.waitForIdleSync(); 62 public static void touchAndCancelView(Instrumentation inst, View v) { argument 77 inst.sendPointerSync(event); 78 inst 89 clickView(Instrumentation inst, View v) argument 126 longClickView(Instrumentation inst, View v) argument 168 dragViewToTop(Instrumentation inst, View v) argument 172 dragViewToTop(Instrumentation inst, View v, int stepCount) argument 219 dragViewTo(Instrumentation inst, View v, int gravity, int toX, int toY) argument 237 dragViewToX(Instrumentation inst, View v, int gravity, int toX) argument 252 dragViewToY(Instrumentation inst, View v, int gravity, int toY) argument 268 drag(Instrumentation inst, float fromX, float toX, float fromY, float toY, int stepCount) argument [all...] |
/frameworks/base/services/core/java/com/android/server/pm/ |
H A D | PackageSettingBase.java | 305 void setInstalled(boolean inst, int userId) { argument 306 modifyUserState(userId).installed = inst;
|