HomeSort by relevance Sort by last modified time
    Searched defs:Defs (Results 1 - 22 of 22) 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/
MachineCopyPropagation.cpp 68 const DestList& Defs = SI->second;
69 for (DestList::const_iterator I = Defs.begin(), E = Defs.end();
221 SmallVector<unsigned, 2> Defs;
238 Defs.push_back(Reg);
277 for (unsigned i = 0, e = Defs.size(); i != e; ++i) {
278 unsigned Reg = Defs[i];
292 // If MBB doesn't have successors, delete the copies whose defs are not used.
293 // If MBB does have successors, then conservative assume the defs are live-out
MachineInstrBundle.cpp 98 /// bundle, and it copies externally visible defs and uses to the BUNDLE
120 SmallVector<MachineOperand*, 4> Defs;
127 Defs.push_back(&MO);
152 for (unsigned i = 0, e = Defs.size(); i != e; ++i) {
153 MachineOperand &MO = *Defs[i];
181 Defs.clear();
264 // Both defs and uses can read virtual registers.
271 // Only defs can write.
LiveVariables.cpp 229 /// implicit defs to a machine instruction if there was an earlier def of its
444 SmallVector<unsigned, 4> &Defs) {
483 Defs.push_back(Reg); // Remember this def.
487 SmallVector<unsigned, 4> &Defs) {
488 while (!Defs.empty()) {
489 unsigned Reg = Defs.back();
490 Defs.pop_back();
537 SmallVector<unsigned, 4> Defs;
542 HandlePhysRegDef(*II, 0, Defs);
599 // Process all defs
    [all...]
RegisterPressure.cpp 306 /// Collect this instruction's unique uses and defs into SmallVectors for
307 /// processing defs and uses in order.
311 SmallVector<unsigned, 8> Defs;
326 if (findReg(MO.getReg(), isVReg, Defs, TRI) == Defs.end())
327 Defs.push_back(MO.getReg());
351 // Remove redundant physreg dead defs.
354 if (findRegAlias(Reg, PhysRegOpers.Defs, TRI) != PhysRegOpers.Defs.end())
456 // Boost pressure for all dead defs together
    [all...]
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.
625 SmallVector<std::pair<SlotIndex, unsigned>, 16> Defs;
627 // Collect all defs to be extended (Skipping undefs).
630 Defs.push_back(std::make_pair(I.start(), I.value()));
632 // Extend all defs, and possibly add new ones along the way.
633 for (unsigned i = 0; i != Defs.size(); ++i) {
634 SlotIndex Idx = Defs[i].first;
635 unsigned LocNo = Defs[i].second
    [all...]
IfConversion.cpp     [all...]
MachineLICM.cpp 458 // FIXME: For now, avoid instructions with multiple defs, unless
466 // register, then this is not safe. Two defs is indicated by setting a
503 // Walk the entire region, count number of defs for each register, and
801 // defs as well. This happens whenever the preheader is created by splitting
844 SmallVector<unsigned, 4> Defs;
855 Defs.push_back(Reg);
    [all...]
TwoAddressInstructionPass.cpp 376 // If there are multiple defs, we can't do a simple analysis, so just
760 SmallSet<unsigned, 2> Defs;
769 Defs.insert(MOReg);
780 while (To->isCopy() && Defs.count(To->getOperand(1).getReg())) {
781 Defs.insert(To->getOperand(0).getReg());
812 if (!MO.isDead() && Defs.count(MOReg))
818 if (Defs.count(MOReg))
854 /// instruction too close to the defs of its register dependencies.
    [all...]
  /frameworks/compile/mclinker/include/mcld/MC/
ZOption.h 28 Defs,
  /external/llvm/lib/Target/ARM/
Thumb2ITBlockPass.cpp 44 SmallSet<unsigned, 4> &Defs,
55 SmallSet<unsigned, 4> &Defs,
83 Defs.insert(Reg);
85 Defs.insert(*Subreg);
106 SmallSet<unsigned, 4> &Defs,
121 if (Uses.count(DstReg) || Defs.count(SrcReg))
163 SmallSet<unsigned, 4> Defs;
176 Defs.clear();
178 TrackDefUses(MI, Defs, Uses, TRI);
215 MoveCopyOutOfITBlock(NMI, CC, OCC, Defs, Uses))
    [all...]
  /external/llvm/utils/TableGen/
InstrInfoEmitter.cpp 201 // Emit all of the instruction's implicit uses and defs.
210 std::vector<Record*> Defs = Inst->getValueAsListOfDefs("Defs");
211 if (!Defs.empty()) {
212 unsigned &IL = EmittedLists[Defs];
213 if (!IL) PrintDefList(Defs, IL = ++ListNumber, OS);
358 // Emit the implicit uses and defs lists...
365 std::vector<Record*> DefList = Inst.TheDef->getValueAsListOfDefs("Defs");
  /external/llvm/include/llvm/CodeGen/
ScheduleDAGInstrs.h 181 /// Live Intervals provides reaching defs in preRA scheduling.
220 /// Defs, Uses - Remember where defs and uses of each register are as we
224 Reg2SUnitsMap Defs;
231 /// unknown store, as we iterate. As with Defs and Uses, this is here
  /external/llvm/include/llvm/TableGen/
Record.h 734 /// 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 549 milliseconds