Home
last modified time | relevance | path

Searched refs:II (Results 1 – 5 of 5) sorted by relevance

/frameworks/compile/slang/
Dslang_rs_context.cpp151 const clang::IdentifierInfo *II = mPP.getIdentifierInfo(Name); in processExportType() local
152 if (II == NULL) in processExportType()
157 clang::DeclContext::lookup_const_result R = TUDecl->lookup(II); in processExportType()
Dslang_rs_object_ref_count.cpp492 clang::IdentifierInfo& II = C.Idents.get("rsIntIter"); in ClearArrayRSObject() local
498 &II, in ClearArrayRSObject()
855 clang::IdentifierInfo& II = C.Idents.get("rsIntIter"); in CreateArrayRSSetObject() local
861 &II, in CreateArrayRSSetObject()
1499 clang::IdentifierInfo &II = mCtx.Idents.get(SR); in CreateStaticGlobalDtor() local
1500 clang::DeclarationName N(&II); in CreateStaticGlobalDtor()
/frameworks/compile/slang/BitWriter_2_9/
DBitcodeWriter.cpp1139 BranchInst &II = cast<BranchInst>(I); in WriteInstruction() local
1140 Vals.push_back(VE.getValueID(II.getSuccessor(0))); in WriteInstruction()
1141 if (II.isConditional()) { in WriteInstruction()
1142 Vals.push_back(VE.getValueID(II.getSuccessor(1))); in WriteInstruction()
1143 Vals.push_back(VE.getValueID(II.getCondition())); in WriteInstruction()
1161 const InvokeInst *II = cast<InvokeInst>(&I); in WriteInstruction() local
1162 const Value *Callee(II->getCalledValue()); in WriteInstruction()
1167 Vals.push_back(VE.getAttributeID(II->getAttributes())); in WriteInstruction()
1168 Vals.push_back(II->getCallingConv()); in WriteInstruction()
1169 Vals.push_back(VE.getValueID(II->getNormalDest())); in WriteInstruction()
[all …]
DValueEnumerator.cpp88 else if (const InvokeInst *II = dyn_cast<InvokeInst>(I)) in ValueEnumerator() local
89 EnumerateAttributes(II->getAttributes()); in ValueEnumerator()
/frameworks/base/core/java/android/content/pm/
DPackageParser.java3055 public static class Component<II extends IntentInfo> {
3057 public final ArrayList<II> intents;
3072 intents = new ArrayList<II>(0); in Component()
3137 public Component(Component<II> clone) { in Component()