Searched refs:Cell (Results 1 - 25 of 40) sorted by relevance

12

/external/v8/src/
H A Dcircular-queue.h69 typedef AtomicWord Cell; typedef in class:v8::internal::SamplingCircularQueue
71 static const Cell kClear = 0; // Marks clean (processed) chunks.
72 static const Cell kEnd = -1; // Marks the end of the buffer.
76 Cell* enqueue_pos;
79 Cell* dequeue_chunk_pos;
80 Cell* dequeue_chunk_poll_pos;
81 Cell* dequeue_pos;
82 Cell* dequeue_end_pos;
85 INLINE(void WrapPositionIfNeeded(Cell** pos));
92 Cell* buffer
[all...]
H A Dcircular-queue-inl.h46 SamplingCircularQueue::Cell** pos) {
H A Dcircular-queue.cc39 : record_size_(record_size_in_bytes / sizeof(Cell)),
42 chunk_size_(chunk_size_in_bytes_ / sizeof(Cell)),
48 buffer_(NewArray<Cell>(buffer_size_ + 1)) {
/external/v8/tools/
H A Dconsarray.js40 this.tail_ = new ConsArray.Cell(null, null);
56 this.tail_ = this.tail_.next = new ConsArray.Cell(null, null);
89 ConsArray.Cell = function(data, next) {
/external/guava/guava-tests/test/com/google/common/collect/
H A DTablesTest.java21 import com.google.common.collect.Table.Cell;
37 Cell<String, Integer, Character> entry
43 Cell<String, Integer, Character> entry
47 Cell<String, Integer, Character> nullEntry
53 Cell<String, Integer, Character> entry
66 Cell<String, Integer, Character> entry
H A DTableCollectionTest.java27 import com.google.common.collect.Table.Cell;
416 @Override public SampleElements<Cell<String, Integer, Character>>
418 return new SampleElements<Cell<String, Integer, Character>>(
425 @Override public Set<Cell<String, Integer, Character>> create(
430 Cell<String, Integer, Character> cell
431 = (Cell<String, Integer, Character>) element;
438 Cell<String, Integer, Character> cell
439 = (Cell<String, Integer, Character>) element;
492 public Set<Cell<String, Integer, Character>> create(
497 Cell<Strin
[all...]
H A DRegularImmutableTableTest.java23 import com.google.common.collect.Table.Cell;
29 private static final ImmutableSet<Cell<Character, Integer, String>> CELLS =
H A DArrayTableTest.java23 import com.google.common.collect.Table.Cell;
409 Cell<String, Integer, Character> cell = table.cellSet().iterator().next();
/external/guava/guava/src/com/google/common/collect/
H A DImmutableTable.java84 Cell<? extends R, ? extends C, ? extends V> onlyCell
89 ImmutableSet.Builder<Cell<R, C, V>> cellSetBuilder
91 for (Cell<? extends R, ? extends C, ? extends V> cell :
94 * Must cast to be able to create a Cell<R, C, V> rather than a
95 * Cell<? extends R, ? extends C, ? extends V>
117 static <R, C, V> Cell<R, C, V> cellOf(R rowKey, C columnKey, V value) {
149 private final List<Cell<R, C, V>> cells = Lists.newArrayList();
192 Cell<? extends R, ? extends C, ? extends V> cell) {
198 Cell<R, C, V> immutableCell = (Cell<
[all...]
H A DTables.java28 import com.google.common.collect.Table.Cell;
62 public static <R, C, V> Cell<R, C, V> immutableCell(
96 abstract static class AbstractCell<R, C, V> implements Cell<R, C, V> {
104 if (obj instanceof Cell) {
105 Cell<?, ?, ?> other = (Cell<?, ?, ?>) obj;
260 private static final Function<Cell<?, ?, ?>, Cell<?, ?, ?>> TRANSPOSE_CELL =
261 new Function<Cell<?, ?, ?>, Cell<
[all...]
H A DRegularImmutableTable.java43 private final ImmutableSet<Cell<R, C, V>> cellSet;
45 private RegularImmutableTable(ImmutableSet<Cell<R, C, V>> cellSet) {
49 private static final Function<Cell<Object, Object, Object>, Object>
51 new Function<Cell<Object, Object, Object>, Object>() {
52 @Override public Object apply(Cell<Object, Object, Object> from) {
58 private Function<Cell<R, C, V>, V> getValueFunction() {
85 @Override public final ImmutableSet<Cell<R, C, V>> cellSet() {
90 List<Cell<R, C, V>> cells,
103 Comparator<Cell<R, C, V>> comparator = new Comparator<Cell<
[all...]
H A DTable.java200 Set<Cell<R, C, V>> cellSet();
263 interface Cell<R, C, V> { interface in interface:Table
H A DSingletonImmutableTable.java45 SingletonImmutableTable(Cell<R, C, V> cell) {
49 @Override public ImmutableSet<Cell<R, C, V>> cellSet() {
125 Cell<?, ?, ?> thatCell = that.cellSet().iterator().next();
H A DArrayTable.java386 for (Cell<? extends R, ? extends C, ? extends V> cell : table.cellSet()) {
466 public Set<Cell<R, C, V>> cellSet() {
471 private class CellSet extends AbstractSet<Cell<R, C, V>> {
473 @Override public Iterator<Cell<R, C, V>> iterator() {
474 return new AbstractIndexedListIterator<Cell<R, C, V>>(size()) {
475 @Override protected Cell<R, C, V> get(final int index) {
501 if (obj instanceof Cell) {
502 Cell<?, ?, ?> cell = (Cell<?, ?, ?>) obj;
H A DEmptyImmutableTable.java68 @Override public ImmutableSet<Cell<Object, Object, Object>> cellSet() {
H A DStandardTable.java179 for (Cell<? extends R, ? extends C, ? extends V> cell : table.cellSet()) {
273 @Override public Set<Cell<R, C, V>> cellSet() {
278 private class CellSet extends TableSet<Cell<R, C, V>> {
279 @Override public Iterator<Cell<R, C, V>> iterator() {
288 if (obj instanceof Cell) {
289 Cell<?, ?, ?> cell = (Cell<?, ?, ?>) obj;
297 if (obj instanceof Cell) {
298 Cell<?, ?, ?> cell = (Cell<
[all...]
H A DForwardingTable.java45 public Set<Cell<R, C, V>> cellSet() {
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DHTMLTable.java87 private static class Cell extends IElement.Factory.ElementImpl class in class:HTMLTable
97 Cell (Tag tag) method in class:HTMLTable.Cell
110 final ICell cell = new Cell (m_th ? Tag.TH : Tag.TD);
/external/webkit/Source/JavaScriptCore/jit/
H A DJITStubCall.h40 , m_returnType(Cell)
48 , m_returnType(Cell)
194 ASSERT(m_returnType == Value || m_returnType == Cell);
205 ASSERT(m_returnType == VoidPtr || m_returnType == Cell);
215 ASSERT(m_returnType == Value || m_returnType == VoidPtr || m_returnType == Int || m_returnType == Cell);
217 ASSERT(m_returnType == VoidPtr || m_returnType == Int || m_returnType == Cell);
230 enum { Void, VoidPtr, Int, Value, Cell } m_returnType; enumerator in enum:JSC::JITStubCall::__anon14371
/external/bzip2/
H A Dbzip2.c1699 Cell; typedef in typeref:struct:zzzz
1716 Cell *mkCell ( void )
1718 Cell *c;
1720 c = (Cell*) myMalloc ( sizeof ( Cell ) );
1729 Cell *snocString ( Cell *root, Char *name )
1732 Cell *tmp = mkCell();
1737 Cell *tmp = root;
1747 void addFlagsFromEnvVar ( Cell** argLis
[all...]
/external/webkit/Source/WebCore/platform/
H A DCursor.cpp114 case Cursor::Cell:
209 case Cursor::Cell:
210 return "Cell";
298 DEFINE_STATIC_LOCAL(Cursor, c, (Cursor::Cell));
H A DCursor.h139 Cell, enumerator in enum:WebCore::Cursor::Type
/external/v8/test/cctest/
H A Dtest-circular-queue.cc13 typedef SamplingCircularQueue::Cell Record;
83 typedef SamplingCircularQueue::Cell Record;
/external/webkit/Source/WebCore/platform/qt/
H A DCursorQt.cpp177 case Cell:
/external/webkit/Source/WebCore/platform/mac/
H A DCursorMac.mm157 case Cursor::Cell:

Completed in 278 milliseconds

12