Searched defs:Cell (Results 1 - 25 of 32) sorted by relevance

12

/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/libchrome/sandbox/linux/bpf_dsl/
H A Dcons.h57 class Cell;
63 using List = scoped_refptr<const Cell<T>>;
68 return List<T>(new const Cell<T>(head, tail));
71 // Cell represents an individual "cons cell" within a cons list.
73 class Cell : public base::RefCounted<Cell<T>> { class in namespace:sandbox::cons
75 Cell(const T& head, const List<T>& tail) : head_(head), tail_(tail) {} function in class:sandbox::cons::Cell
84 virtual ~Cell() {}
89 friend class base::RefCounted<Cell<T>>;
90 DISALLOW_COPY_AND_ASSIGN(Cell);
[all...]
/external/opencv3/modules/videostab/include/opencv2/videostab/
H A Doutlier_rejection.hpp92 typedef std::vector<int> Cell; typedef in class:cv::videostab::TranslationBasedLocalOutlierRejector
93 std::vector<Cell> grid_;
/external/ceres-solver/internal/ceres/
H A Dblock_structure.h58 struct Cell { struct in namespace:ceres::internal
59 Cell() : block_id(-1), position(-1) {} function in struct:ceres::internal::Cell
60 Cell(int block_id_, int position_) function in struct:ceres::internal::Cell
70 bool CellLessThan(const Cell& lhs, const Cell& rhs);
74 vector<Cell> cells;
/external/gemmlowp/internal/
H A Dkernel.h144 typedef tCellFormat Cell; typedef in struct:gemmlowp::KernelSideFormat
146 static const int kWidth = kCells * Cell::kWidth;
147 static const int kDepth = Cell::kDepth;
157 static_assert(Lhs::Cell::kDepth == Rhs::Cell::kDepth, "");
158 static const int kDepth = Lhs::Cell::kDepth;
159 static const int kRows = Lhs::Cell::kWidth * Lhs::kCells;
160 static const int kCols = Rhs::Cell::kWidth * Rhs::kCells;
/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/guava/guava/src/com/google/common/collect/
H A DTable.java202 Set<Cell<R, C, V>> cellSet();
264 interface Cell<R, C, V> { interface in interface:Table
/external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/
H A DTiledMapTileLayer.java30 private Cell[][] cells;
64 this.cells = new Cell[width][height];
69 * @return {@link Cell} at (x, y) */
70 public Cell getCell (int x, int y) {
76 /** Sets the {@link Cell} at the given coordinates.
80 * @param cell the {@link Cell} to set at the given coordinates. */
81 public void setCell (int x, int y, Cell cell) {
88 public static class Cell { class in class:TiledMapTileLayer
107 public Cell setTile (TiledMapTile tile) {
121 public Cell setFlipHorizontall
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_addrhashmap.h46 struct Cell { struct in class:__sanitizer::AddrHashMap
54 Cell cells[1]; // variable len
62 Cell cells[kBucketSize];
83 Cell *cell_;
175 Cell *c = &b->cells[i];
188 Cell *c = &add->cells[i];
204 Cell *c = &b->cells[i];
220 Cell *c = &add->cells[i];
244 Cell *c = &b->cells[i];
277 Cell *
[all...]
/external/guava/guava/src/com/google/common/cache/
H A DStriped64.java31 * Table entries are of class Cell; a variant of AtomicLong padded
62 * available, a new Cell is created. Otherwise, if the slot
78 * It is possible for a Cell to become unused when threads that
95 static final class Cell { class in class:Striped64
101 Cell(long x) { value = x; } method in class:Striped64.Cell
107 private static final AtomicLongFieldUpdater<Cell> valueUpdater =
108 AtomicLongFieldUpdater.newUpdater(Cell.class, "value");
130 transient volatile Cell[] cells;
196 Cell[] as; Cell
[all...]
/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletSoftBody/
H A DbtSparseSDF.h55 struct Cell struct in struct:btSparseSdf
62 Cell* next;
68 btAlignedObjectArray<Cell*> cells;
94 Cell* pc=cells[i];
98 Cell* pn=pc->next;
115 Cell*& root=cells[i];
116 Cell* pp=0;
117 Cell* pc=root;
120 Cell* pn=pc->next;
141 Cell*
[all...]
/external/libgdx/extensions/gdx-bullet/jni/swig-src/softbody/com/badlogic/gdx/physics/bullet/softbody/
H A DbtSparseSdf3.java136 static public class Cell extends BulletBase { class in class:btSparseSdf3
139 protected Cell(final String className, long cPtr, boolean cMemoryOwn) { method in class:btSparseSdf3.Cell
144 /** Construct a new Cell, normally you should not need this constructor it's intended for low-level usage. */
145 public Cell(long cPtr, boolean cMemoryOwn) { method in class:btSparseSdf3.Cell
146 this("Cell", cPtr, cMemoryOwn);
157 public static long getCPtr(Cell obj) {
221 public void setNext(btSparseSdf3.Cell value) {
222 SoftbodyJNI.btSparseSdf3_Cell_next_set(swigCPtr, this, btSparseSdf3.Cell.getCPtr(value), value);
225 public btSparseSdf3.Cell getNext() {
227 return (cPtr == 0) ? null : new btSparseSdf3.Cell(cPt
230 public Cell() { method in class:btSparseSdf3.Cell
[all...]
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
H A DCell.java13 public class Cell<T extends Actor> implements Poolable { class in inherits:Poolable
20 static private Cell defaults;
43 public Cell () { method in class:Cell
52 public <A extends Actor> Cell<A> setActor (A newActor) {
58 return (Cell<A>)this;
62 public Cell<T> clearActor () {
78 public Cell<T> size (Value size) {
90 public Cell<T> size (Value width, Value height) {
103 public Cell<T> size (float size) {
109 public Cell<
[all...]
/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/clang/lib/CodeGen/
H A DTargetInfo.cpp65 llvm::Value *Cell = local
67 Builder.CreateAlignedStore(Value, Cell, CharUnits::One());
/external/v8/src/
H A Dfactory.cc974 Handle<Cell> Factory::NewCell(Handle<Object> value) {
979 Cell); local
/external/clang/test/SemaCXX/
H A Dwarn-thread-safety-analysis.cpp1891 class Cell { class in namespace:TestTemplateAttributeInstantiation
1934 Cell<int> cell;
3540 struct Cell { struct in namespace:TemplateFunctionParamRemapTest
3548 void elr(Cell<T>* c) __attribute__((exclusive_locks_required(c->mu_)));
3554 void Foo::elr(Cell<T>* c1) { }
3557 Cell<int> cell;
3564 void globalELR(Cell<T>* c) __attribute__((exclusive_locks_required(c->mu_)));
3567 void globalELR(Cell<T>* c1) { }
3570 Cell<int> cell;
3577 void globalELR2(Cell<
3872 class Cell { class in namespace:GuardedNonPrimitive_MemberAccess
4230 class Cell { class in namespace:PtGuardedByTest
[all...]
/external/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/owasp/sanitizer/tools/emma/lib/
H A Demma.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/vladium/ com/vladium/app/ com/vladium/app/IAppVersion ...
/external/libgdx/backends/gdx-backends-gwt/libs/
H A Dgwt-user.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gwt/ com/google/gwt/activity/ ...
/external/guice/lib/
H A Dguava-16.0.1.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META-INF/maven/com. ...
/external/owasp/sanitizer/distrib/lib/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/owasp/sanitizer/lib/guava-libraries/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/collect/ ...
/external/libgdx/backends/gdx-backend-moe/libs/
H A Dintel-moe-ios.jarMETA-INF/ META-INF/MANIFEST.MF LICENSE com/ com/intel/ com/intel/moe/ com/intel/moe/ ...
/external/dagger2/lib/
H A Dgoogle-java-format-0.1-20151017.042846-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/googlejavaformat/ com/google/googlejavaformat/CloseOp ...

Completed in 1812 milliseconds

12