HomeSort by relevance Sort by last modified time
    Searched defs:table (Results 51 - 75 of 358) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/guava/src/com/google/common/collect/
RegularImmutableSet.java 32 @VisibleForTesting final transient Object[] table; field in class:RegularImmutableSet
33 // 'and' with an int to get a valid table index.
38 Object[] elements, int hashCode, Object[] table, int mask) {
40 this.table = table;
50 Object candidate = table[i & mask];
  /external/icu4c/layout/
ContextualGlyphSubstProc.cpp 48 const le_int16 *table = (const le_int16 *) ((char *) &stateTableHeader->stHeader + markOffset * 2); local
50 TTGlyphID newGlyph = SWAPW(table[LE_GET_GLYPH(mGlyph)]);
56 const le_int16 *table = (const le_int16 *) ((char *) &stateTableHeader->stHeader + currOffset * 2); local
58 TTGlyphID newGlyph = SWAPW(table[LE_GET_GLYPH(thisGlyph)]);
  /external/icu4c/samples/layout/
FontTableCache.cpp 18 const void *table; member in struct:FontTableCacheEntry
33 fTableCache[i].table = NULL;
40 freeFontTable(fTableCache[i].table);
43 fTableCache[i].table = NULL;
52 void FontTableCache::freeFontTable(const void *table) const
54 LE_DELETE_ARRAY(table);
61 return fTableCache[i].table;
65 const void *table = readFontTable(tableTag); local
67 ((FontTableCache *) this)->add(tableTag, table);
69 return table;
    [all...]
  /external/icu4c/test/letest/
FontTableCache.cpp 19 const void *table; member in struct:FontTableCacheEntry
34 fTableCache[i].table = NULL;
41 DELETE_ARRAY(fTableCache[i].table);
44 fTableCache[i].table = NULL;
52 void FontTableCache::freeFontTable(const void *table) const
54 DELETE_ARRAY(table);
61 return fTableCache[i].table;
65 const void *table = readFontTable(tableTag); local
67 ((FontTableCache *) this)->add(tableTag, table);
69 return table;
    [all...]
  /external/iproute2/netem/
paretonormal.c 2 * Paretoormal distribution table generator
54 double table[TABLESIZE+1]; local
58 table[i] = x;
61 "# This is the distribution table for the paretonormal distribution.\n"
67 normvalue = (int) rint(table[i]*TABLEFACTOR);
  /external/qemu/
qdict.h 32 QLIST_HEAD(,QDictEntry) table[QDICT_BUCKET_MAX]; member in struct:QDict
  /external/skia/src/opts/
SkBitmapProcState_opts_arm.cpp 39 const uint16_t* SK_RESTRICT table = s.fBitmap->getColorTable()->lock16BitCache(); local
52 uint16_t dstValue = table[src];
85 "ldrh r4, [%[table], r4] \n\t" // load pixel 0 RGB565 from colmap
87 "ldrh r5, [%[table], r5] \n\t" // load pixel 1 RGB565 from colmap
89 "ldrh r6, [%[table], r6] \n\t" // load pixel 2 RGB565 from colmap
91 "ldrh r7, [%[table], r7] \n\t" // load pixel 3 RGB565 from colmap
93 "ldrh r8, [%[table], r8] \n\t" // load pixel 4 RGB565 from colmap
94 "ldrh r9, [%[table], r9] \n\t" // load pixel 5 RGB565 from colmap
95 "ldrh r10, [%[table], r10] \n\t" // load pixel 6 RGB565 from colmap
96 "ldrh r11, [%[table], r11] \n\t" // load pixel 7 RGB565 from colma
130 const SkPMColor* SK_RESTRICT table = s.fBitmap->getColorTable()->lockColors(); local
    [all...]
  /external/srec/srec/cfront/
log_tabl.c 54 for (ii = 0; ii < num_bits; ii++) /* one less than the table size in
63 logtab->table = logtab__table;
65 int* table = (int *) CALLOC(logtab->size + 1, sizeof(int), "cfront.logtable"); local
66 logtab->table = table;
73 table[ii] = (int)(val + 0.5);
75 log_report("log table: %d %d\n", ii, table[ii]);
77 PRINT_SOME_CODE(" %i,", table[ii]);
103 (int)((shift) *(logtab->shift) + logtab->table[operand]))
    [all...]
  /external/webkit/Source/WebCore/accessibility/
AccessibilityTableRow.cpp 70 AccessibilityObject* table = parentTable(); local
71 if (!table || !table->isAccessibilityTable())
97 return axObjectCache()->get(toRenderTableRow(m_renderer)->table());
AccessibilityTableCell.cpp 77 // by javascript, and creating a table element may try to access the render tree while in a bad state.
79 // always be the case when AT clients access a table.
81 return axObjectCache()->get(toRenderTableCell(m_renderer)->table());
86 AccessibilityObject* table = parentTable(); local
87 if (!table || !table->isAccessibilityTable())
110 // since our table might have multiple sections, we have to offset our row appropriately
112 RenderTable* table = renderCell->table(); local
113 if (!table || !section
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLTableRowElement.cpp 59 ContainerNode* table = parentNode(); local
60 if (!table)
62 table = table->parentNode();
63 if (!table || !table->hasTagName(tableTag))
73 if (HTMLTableSectionElement* head = static_cast<HTMLTableElement*>(table)->tHead()) {
82 for (Node *node = table->firstChild(); node; node = node->nextSibling()) {
94 if (HTMLTableSectionElement* foot = static_cast<HTMLTableElement*>(table)->tFoot()) {
  /external/webkit/Source/WebCore/platform/graphics/cairo/
OpenGLShims.cpp 79 static OpenGLFunctionTable table; local
80 return &table;
  /external/webkit/Source/WebCore/rendering/
RenderTableCol.cpp 68 // with libraries.uc.edu, which makes a <p> be a table-column.
74 // For now, just repaint the whole table.
79 RenderTable* parentTable = table();
99 RenderTable* RenderTableCol::table() const function in class:WebCore::RenderTableCol
101 RenderObject* table = parent(); local
102 if (table && !table->isTable())
103 table = table->parent();
104 return table && table->isTable() ? toRenderTable(table) : 0
    [all...]
RenderTableRow.h 40 RenderTable* table() const { return toRenderTable(parent()->parent()); } function in class:WebCore::RenderTableRow
  /external/webkit/Source/WebKit2/Shared/
VisitedLinkTable.cpp 81 LinkHash* table = m_table; local
88 entry = table + i;
94 // Check if the same link hash is in the table already.
113 LinkHash* table = m_table; local
120 entry = table + i;
122 // Check if we've reached the end of the table.
  /libcore/luni/src/main/java/java/util/
ListResourceBundle.java 29 HashMap<String, Object> table; field in class:ListResourceBundle
52 Iterator<String> local = table.keySet().iterator();
64 if (!table.containsKey(next)) {
94 Iterator<String> it = table.keySet().iterator();
113 return table.get(key);
117 if (table == null) {
119 table = new HashMap<String, Object>(contents.length / 3 * 4 + 3);
124 table.put((String) content[0], content[1]);
137 return table.keySet();
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/
SdkTargetSelector.java 38 import org.eclipse.swt.widgets.Table;
47 * The SDK target selector is a table that is added to the given parent composite.
59 private Table mTable;
71 * Targets can be null or an empty array, in which case the table is disabled.
82 * Targets can be null or an empty array, in which case the table is disabled.
97 mTable = new Table(mInnerGroup, style);
111 // create the table columns
167 * The listener will be called <em>after</em> this table processed its selection
244 private void adjustColumnsWidth(final Table table,
    [all...]
  /external/protobuf/editors/
protobuf-mode.el 170 ;; Our syntax table is auto-generated from the keyword classes we defined
172 (defvar protobuf-mode-syntax-table nil
173 "Syntax table used in protobuf-mode buffers.")
174 (or protobuf-mode-syntax-table
175 (setq protobuf-mode-syntax-table
176 (funcall (c-lang-const c-make-mode-syntax-table protobuf))))
178 (defvar protobuf-mode-abbrev-table nil
179 "Abbreviation table used in protobuf-mode buffers.")
203 (set-syntax-table protobuf-mode-syntax-table)
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
LevenshteinSuggestionFormatter.java 83 final LevenshteinDistance table = new LevenshteinDistance(source, target); local
84 table.calculate();
87 LevenshteinDistance.EditOperation[] ops = table.getTargetOperations();
  /external/chromium/base/metrics/
stats_counters.cc 40 StatsTable* table = StatsTable::current(); local
41 if (!table)
46 counter_id_ = table->FindCounter(name_);
47 if (table->GetSlot() == 0) {
48 if (!table->RegisterThread("")) {
59 return table->GetLocation(counter_id_, table->GetSlot());
61 // counter_id_ was zero, which means the table is full.
  /external/icu4c/common/
locresdata.cpp 30 * Lookup a resource bundle table item with fallback on the table level.
33 * This function takes the name of a top-level table and of an item in that table
34 * and performs a lookup of both, falling back until a bundle contains a table
50 UResourceBundle *rb=NULL, table, subTable; local
74 ures_initStackObject(&table);
76 ures_getByKeyWithFallback(rb, tableKey, &table, &errorCode);
80 ures_getByKeyWithFallback(&table,subTableKey, &subTable, &errorCode);
88 ures_getByKeyWithFallback(&table,subTableKey, &table, &errorCode)
    [all...]
  /external/jpeg/
rdswitch.c 12 * -qslots N[,N,...] Set component quantization table selectors
81 * table 0 for luminance (or primary) components, 1 for chrominance components.
82 * You must use -qslots if you want a different component->table mapping.
88 unsigned int table[DCTSIZE2]; local
91 fprintf(stderr, "Can't open table file %s\n", filename);
96 while (read_text_integer(fp, &val, &termchar)) { /* read 1st element of table */
102 table[0] = (unsigned int) val;
105 fprintf(stderr, "Invalid table data in file %s\n", filename);
109 table[i] = (unsigned int) val;
111 jpeg_add_quant_table(cinfo, tblno, table, scale_factor, force_baseline)
    [all...]
  /external/skia/src/effects/
SkTableMaskFilter.cpp 25 SkTableMaskFilter::SkTableMaskFilter(const uint8_t table[256]) {
26 this->setTable(table);
31 void SkTableMaskFilter::setTable(const uint8_t table[256]) {
32 memcpy(fTable, table, 256);
51 const uint8_t* table = fTable; local
57 dstP[x] = table[srcP[x]];
101 void SkTableMaskFilter::MakeGammaTable(uint8_t table[256], SkScalar gamma) {
105 table[i] = SkPin32(SkScalarRound(powf(x, gamma) * 255), 0, 255);
110 void SkTableMaskFilter::MakeClipTable(uint8_t table[256], uint8_t min,
121 memset(table, 0, min + 1)
    [all...]
  /external/webp/src/enc/
cost.c 21 // Boolean-cost cost table
55 // For each given level, the following table given the pattern of contexts
363 uint16_t* const table = proba->level_cost_[ctype][band][ctx]; local
366 table[0] = VP8BitCost(0, p[1]);
368 table[v] = cost_base + VariableLevelCost(v, p);
  /frameworks/base/core/tests/coretests/src/android/widget/layout/table/
AddColumnTest.java 17 package android.widget.layout.table;
19 import android.widget.layout.table.AddColumn;
30 * {@link android.widget.layout.table.AddColumn} is
31 * setup to exercise the case of adding row programmatically in a table.
47 mTable = (TableLayout) activity.findViewById(R.id.table);

Completed in 1557 milliseconds

1 23 4 5 6 7 8 91011>>