Searched refs:cards (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/demo/applets/CardTest/
H A DCardTest.java120 CardPanel cards; field in class:CardTest
125 add("Center", cards = new CardPanel(this));
159 ((CardLayout) cards.getLayout()).show(cards,
168 ((CardLayout) cards.getLayout()).first(cards);
170 ((CardLayout) cards.getLayout()).next(cards);
172 ((CardLayout) cards.getLayout()).previous(cards);
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DsparsePRT.hpp36 // indices of other regions to short sequences of cards in the other region
62 // The number of cards should be a multiple of 4, because that's our current
68 // Set the region_ind to the given value, and delete all cards.
95 // Copy the current entry's cards into "cards".
96 inline void copy_cards(CardIdx_t* cards) const;
97 // Copy the current entry's cards into the "_card" array of "e."
153 bool get_cards(RegionIdx_t region_id, CardIdx_t* cards);
265 // cards into "cards", whic
[all...]
H A DsparsePRT.cpp47 assert((cards_num() & (UnrollFactor - 1)) == 0, "Invalid number of cards in the entry");
62 assert((cards_num() & (UnrollFactor - 1)) == 0, "Invalid number of cards in the entry");
81 assert((cards_num() & (UnrollFactor - 1)) == 0, "Invalid number of cards in the entry");
99 assert((cards_num() & (UnrollFactor - 1)) == 0, "Invalid number of cards in the entry");
126 void SparsePRTEntry::copy_cards(CardIdx_t* cards) const {
128 assert((cards_num() & (UnrollFactor - 1)) == 0, "Invalid number of cards in the entry");
130 cards[i] = _cards[i];
131 cards[i + 1] = _cards[i + 1];
132 cards[i + 2] = _cards[i + 2];
133 cards[
200 get_cards(RegionIdx_t region_ind, CardIdx_t* cards) argument
493 get_cards(RegionIdx_t region_id, CardIdx_t* cards) argument
[all...]
/openjdk7/jdk/src/share/demo/applets/GraphicsTest/
H A DGraphicsTest.java53 public GraphicsCards cards; field in class:GraphicsPanel
61 add("Center", cards = new GraphicsCards());
120 ((CardLayout) mainPanel.cards.getLayout()).next(mainPanel.cards);
122 ((CardLayout) mainPanel.cards.getLayout()).previous(mainPanel.cards);
128 ((CardLayout) mainPanel.cards.getLayout()).show(mainPanel.cards,

Completed in 25 milliseconds