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

  /frameworks/base/core/java/android/app/
AppOpsManager.java 797 private final List<OpEntry> mEntries;
799 public PackageOps(String packageName, int uid, List<OpEntry> entries) {
813 public List<OpEntry> getOps() {
835 mEntries = new ArrayList<OpEntry>();
838 mEntries.add(OpEntry.CREATOR.createFromParcel(source));
857 public static class OpEntry implements Parcelable {
864 public OpEntry(int op, int mode, long time, long rejectTime, int duration) {
910 OpEntry(Parcel source) {
918 public static final Creator<OpEntry> CREATOR = new Creator<OpEntry>() {
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.cpp 740 SDValue &OpEntry = PromotedIntegers[Op];
741 assert(!OpEntry.getNode() && "Node is already promoted!");
742 OpEntry = Result;
751 SDValue &OpEntry = SoftenedFloats[Op];
752 assert(!OpEntry.getNode() && "Node is already converted to integer!");
753 OpEntry = Result;
765 SDValue &OpEntry = ScalarizedVectors[Op];
766 assert(!OpEntry.getNode() && "Node is already scalarized!");
767 OpEntry = Result;
    [all...]
  /external/llvm/lib/Target/X86/
X86FastISel.cpp     [all...]

Completed in 314 milliseconds