HomeSort by relevance Sort by last modified time
    Searched defs:Table (Results 1 - 25 of 39) sorted by null

1 2

  /external/chromium/chrome/browser/ui/cocoa/
table_row_nsimage_cache.h 20 // Interface this cache expects for its table model.
21 class Table {
23 // Returns the number of rows in the table.
30 virtual ~Table() {}
34 explicit TableRowNSImageCache(Table* model);
40 // Call these functions every time the table changes, to update the cache.
47 // The table model we query for row count and icons.
48 Table* model_; // weak
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/asm/ARMV5E/
pred_lt4_1_opt.s 47 LDR r6, Table
453 Table:
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVM_Mixer_TimeConstant.c 70 LVM_UINT32 Table[] = {ALPHA_0, /* Log spaced look-up table */
132 /* Normalize to get the table index and interpolation factor */
151 Diff = (LVM_INT32)(Table[Shift] - Table[Shift+1]);
153 Product = Table[Shift+1] + (LVM_UINT32)Diff;
  /frameworks/compile/mclinker/include/mcld/LD/
NamePool.h 42 typedef HashTable<ResolveInfo, StringHash<ELF>, ResolveInfoFactory> Table;
85 /// @return the StringRef points to the hash table
102 Table m_Table;
  /hardware/ti/omap4xxx/camera/inc/OMXCameraAdapter/
OMXSceneModeTables.h 44 const SceneModesEntry* Table;
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
Entry.java 37 public @interface Table {
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
armVCM4P10_DecodeCoeffsToPair.c 30 /* 4x4 DeZigZag table */
49 * [in] nTable Table number (0 to 4) according to the five columns
50 * of Table 9-5 in the H.264 spec
202 int Table = ZerosLeft;
203 if (Table > 6)
205 Table = 7;
207 Run = armUnPackVLC32(ppBitStream, pOffset, armVCM4P10_CAVLCRunBeforeTables[Table-1]);
  /external/guava/guava/src/com/google/common/collect/
Table.java 31 * column key, with a single value. A table may be sparse, with only a small
41 * underlying table. Updating the table can change the contents of those
42 * collections, and updating the collections will change the table.
44 * <p>All methods that modify the table are optional, and the views returned by
45 * the table may or may not be modifiable. When modification isn't supported,
49 * @param <R> the type of the table row keys
50 * @param <C> the type of the table column keys
56 public interface Table<R, C, V> {
62 * Returns {@code true} if the table contains a mapping with the specifie
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
IntrusiveDOMWrapperMap.h 211 typedef ChunkedTable<v8::Persistent<v8::Object>, numberOfEntries, ChunkedTableTraits> Table;
212 Table m_table;
  /tools/motodev/src/plugins/android.codeutils/src/com/motorola/studio/android/db/wizards/model/
Table.java 26 * An abstraction of a database table.
28 public class Table
96 * Add {@code field} to the table.
106 * Remove {@code field} from the table.
115 * @return If this table has some error in its fields, like unnamed columns, a string describing the error is returned.
168 * The table name
169 * @return True is a valid table name, false otherwise
191 "SET", "TABLE", "TEMP", "TEMPORARY", "THEN", "TO", "TRANSACTION",
  /external/v8/src/
stub-cache.h 45 // The design of the table uses the inline cache stubs used for
246 // Clear the lookup table (@ mark compact collection).
255 // Generate code for probing the stub cache table.
267 enum Table {
273 SCTableReference key_reference(StubCache::Table table) {
275 reinterpret_cast<Address>(&first_entry(table)->key));
279 SCTableReference map_reference(StubCache::Table table) {
281 reinterpret_cast<Address>(&first_entry(table)->map))
    [all...]
  /hardware/ti/omap4xxx/camera/inc/
General3A_Settings.h 46 const userToOMX_LUT *Table;
  /external/clang/lib/Basic/
IdentifierTable.cpp 1 //===--- IdentifierTable.cpp - Hash table for identifier lookup -----------===//
79 // Populate the identifier table with info about keywords for the current
123 const LangOptions &LangOpts, IdentifierTable &Table) {
150 Table.get(Keyword, AddResult == 3 ? tok::identifier : TokenCode);
159 IdentifierTable &Table) {
160 IdentifierInfo &Info = Table.get(Keyword, TokenCode);
168 IdentifierTable &Table) {
169 Table.get(Name).setObjCKeywordID(ObjCID);
172 /// AddKeywords - Add all keywords to the symbol table.
254 /// PrintStats - Print statistics about how well the identifier table is doin
    [all...]
  /external/clang/test/SemaCXX/
cxx98-compat.cpp 295 void *Table[] = {&&DirectJump, &&Later};
296 goto *Table[n]; // expected-warning {{indirect goto might cross protected scopes in C++98}}
  /external/llvm/utils/TableGen/
FixedLenDecoderEmitter.cpp 71 DecoderTable Table;
99 // Emit the decoder state machine table.
100 void emitTable(formatted_raw_ostream &o, DecoderTable &Table,
269 // Emit table entries to decode instructions given a segment or segments of
315 // Lookup table for the operand decoding of instructions.
449 // Emits table entries to decode the singleton.
609 static void resolveTableFixups(DecoderTable &Table, const FixupList &Fixups,
622 // Our NumToSkip entries are 16-bits. Make sure our table isn't too
624 assert(Delta < 65536U && "disassembler decoding table too large!");
625 Table[FixupIdx] = (uint8_t)Delta
    [all...]
  /external/llvm/lib/Object/
MachOObjectFile.cpp 791 static const char *const Table[] = {
802 res = Table[r_type];
806 static const char *const Table[] = {
821 res = Table[r_type];
825 static const char *const Table[] = {
840 res = Table[r_type];
844 static const char *const Table[] = {
862 res = Table[r_type];
918 // generating pretty output, scan through the symbol table looking for a
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonISelLowering.cpp 46 cl::desc("Control jump table emission on Hexagon target"));
722 SDValue Table = Op.getOperand(1);
725 JumpTableSDNode *JT = cast<JumpTableSDNode>(Table);
731 // Mark all jump table targets as address taken.
    [all...]
  /external/javassist/src/main/javassist/bytecode/
CodeIterator.java 303 * Branch offsets and the exception table are also updated.
325 * Branch offsets and the exception table are also updated.
350 * Branch offsets and the exception table are also updated.
376 * Branch offsets and the exception table are also updated.
398 * Branch offsets and the exception table are also updated.
423 * Branch offsets and the exception table are also updated.
470 * Branch offsets and the exception table are also updated.
487 * Branch offsets and the exception table are also updated.
509 * Branch offsets and the exception table are also updated.
526 * Branch offsets and the exception table are also updated
711 ExceptionTable table = codeAttr.getExceptionTable(); local
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 332 SDValue Table = Op.getOperand(1);
335 JumpTableSDNode *JT = cast<JumpTableSDNode>(Table);
    [all...]
  /external/llvm/lib/VMCore/
Verifier.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp 748 // Now the lookup table.
758 Error("Expected visible lookup table block");
797 /// \brief Read the line table in the source manager block.
    [all...]
ASTWriter.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp 260 // RTABI chapter 4.1.2, Table 2
271 // RTABI chapter 4.1.2, Table 3
298 // RTABI chapter 4.1.2, Table 4
309 // RTABI chapter 4.1.2, Table 5
336 // RTABI chapter 4.1.2, Table 6
355 // RTABI chapter 4.1.2, Table 7
362 // RTABI chapter 4.1.2, Table 8
381 // RTABI chapter 4.2, Table 9
    [all...]
  /external/sqlite/dist/orig/
sqlite3.c 100 ** limits the size of a row in a table or index.
112 ** * Columns in a table
122 ** not have more than a dozen or so columns in any table. And if
184 ** table and for temporary tables. The SQLITE_DEFAULT_CACHE_SIZE
11217 char *table; \/* The table or view to which the trigger applies *\/ member in struct:Trigger
    [all...]

Completed in 4060 milliseconds

1 2