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

  /dalvik/tests/065-mismatched-implements/src/
Defs.java 3 public interface Defs {
  /dalvik/tests/066-mismatched-super/src2/
Defs.java 3 public interface Defs {
  /dalvik/tests/065-mismatched-implements/src2/
Defs.java 3 public abstract class Defs {
  /dalvik/tests/066-mismatched-super/src/
Defs.java 3 public abstract class Defs {
  /packages/apps/Music/tests/src/com/android/music/functional/
TestSongs.java 72 inst.invokeContextMenuAction(getActivity(), MusicUtils.Defs.NEW_PLAYLIST, 0);
155 inst.invokeContextMenuAction(getActivity(), MusicUtils.Defs.USE_AS_RINGTONE, 0);
192 inst.invokeContextMenuAction(getActivity(), MusicUtils.Defs.DELETE_ITEM, 0);
TestPlaylist.java 75 inst.invokeContextMenuAction(getActivity(), MusicUtils.Defs.CHILD_MENU_BASE + 1, 0);
95 inst.invokeContextMenuAction(trackBrowserActivity, MusicUtils.Defs.NEW_PLAYLIST, 0);
116 inst.invokeContextMenuAction(getActivity(), MusicUtils.Defs.CHILD_MENU_BASE + 3, 0);
  /packages/apps/Music/tests/src/com/android/music/stress/
MusicPlaybackStress.java 61 inst.invokeMenuActionSync(getActivity(), MusicUtils.Defs.CHILD_MENU_BASE + 3, 0);
  /external/llvm/lib/CodeGen/
ScheduleDAGInstrs.h 107 /// Defs, Uses - Remember where defs and uses of each physical register
111 std::vector<std::vector<SUnit *> > Defs;
115 /// unknown store, as we iterate. As with Defs and Uses, this is here
LiveVariables.cpp 226 /// implicit defs to a machine instruction if there was an earlier def of its
423 SmallVector<unsigned, 4> &Defs) {
462 Defs.push_back(Reg); // Remember this def.
466 SmallVector<unsigned, 4> &Defs) {
467 while (!Defs.empty()) {
468 unsigned Reg = Defs.back();
469 Defs.pop_back();
510 SmallVector<unsigned, 4> Defs;
515 HandlePhysRegDef(*II, 0, Defs);
562 // Process all defs
    [all...]
StackSlotColoring.cpp 143 SmallSet<unsigned, 4> &Defs,
429 SmallSet<unsigned, 4> &Defs = NewDefs[MBBId];
430 UnfoldAndRewriteInstruction(RefMIs[i], SS, NewFI, RC, Defs, MF);
613 SmallSet<unsigned, 4> &Defs,
627 if (!Defs.count(Reg)) {
631 Defs.insert(Reg);
645 Defs.insert(Reg);
656 if (!Defs.count(Reg))
660 Defs.insert(Reg);
LiveDebugVariables.cpp 233 /// points, and add defs if possible.
237 /// @param NewDefs Append (Idx, LocNo) of inserted defs here.
595 // Try to add defs of the copied values for each kill point.
624 SmallVector<std::pair<SlotIndex, unsigned>, 16> Defs;
626 // Collect all defs to be extended (Skipping undefs).
629 Defs.push_back(std::make_pair(I.start(), I.value()));
631 // Extend all defs, and possibly add new ones along the way.
632 for (unsigned i = 0; i != Defs.size(); ++i) {
633 SlotIndex Idx = Defs[i].first;
634 unsigned LocNo = Defs[i].second
    [all...]
IfConversion.cpp     [all...]
MachineLICM.cpp 433 // FIXME: For now, avoid instructions with multiple defs, unless
471 // Walk the entire region, count number of defs for each register, and
690 // defs as well. This happens whenever the preheader is created by splitting
733 SmallVector<unsigned, 4> Defs;
744 Defs.push_back(Reg);
756 while (!Defs.empty()) {
757 unsigned Reg = Defs.pop_back_val();
822 // If the physreg has no defs anywhere, it's just an ambient register
    [all...]
  /external/llvm/utils/TableGen/
InstrInfoEmitter.cpp 183 // Emit all of the instruction's implicit uses and defs.
192 std::vector<Record*> Defs = Inst->getValueAsListOfDefs("Defs");
193 if (!Defs.empty()) {
194 unsigned &IL = EmittedLists[Defs];
195 if (!IL) PrintDefList(Defs, IL = ++ListNumber, OS);
313 // Emit the implicit uses and defs lists...
320 std::vector<Record*> DefList = Inst.TheDef->getValueAsListOfDefs("Defs");
  /external/llvm/lib/Target/ARM/
Thumb2ITBlockPass.cpp 45 SmallSet<unsigned, 4> &Defs,
56 SmallSet<unsigned, 4> &Defs,
85 Defs.insert(Reg);
88 Defs.insert(*Subreg);
109 SmallSet<unsigned, 4> &Defs,
124 if (Uses.count(DstReg) || Defs.count(SrcReg))
166 SmallSet<unsigned, 4> Defs;
179 Defs.clear();
181 TrackDefUses(MI, Defs, Uses, TRI);
218 MoveCopyOutOfITBlock(NMI, CC, OCC, Defs, Uses))
    [all...]
  /external/llvm/include/llvm/TableGen/
Record.h 808 /// ListInit - [AL, AH, CL] - Represent a list of defs
    [all...]
  /external/llvm/lib/TableGen/
Record.cpp     [all...]
  /packages/apps/Music/src/com/android/music/
MusicUtils.java 76 public interface Defs {
280 MenuItem item = menu.findItem(Defs.PARTY_SHUFFLE);
427 sub.add(1, Defs.QUEUE, 0, R.string.queue);
428 sub.add(1, Defs.NEW_PLAYLIST, 0, R.string.new_playlist);
438 sub.add(1, Defs.PLAYLIST_SELECTED, 0, cur.getString(1)).setIntent(intent);
694 a.startActivityForResult(intent, Defs.SCAN_DONE);
    [all...]

Completed in 442 milliseconds