Searched defs:table (Results 76 - 100 of 701) sorted by relevance

1234567891011>>

/external/smack/src/org/xbill/DNS/
H A DCompression.java23 private Entry [] table; field in class:Compression
31 table = new Entry[TABLE_SIZE];
47 entry.next = table[row];
48 table[row] = entry;
56 * @param name The name to find in the compression table.
63 for (Entry entry = table[row]; entry != null; entry = entry.next) {
H A DOptions.java27 private static Map table; field in class:Options
62 table = null;
68 if (table == null)
69 table = new HashMap();
70 table.put(option.toLowerCase(), "true");
76 if (table == null)
77 table = new HashMap();
78 table.put(option.toLowerCase(), value.toLowerCase());
84 if (table == null)
86 table
[all...]
/external/srec/srec/clib/
H A Dlog_add.c56 logtab->table = logtab__table;
58 prdata* table = (prdata *) CALLOC(logtab->add_log_limit + 2, sizeof(prdata), "clib.logadd"); local
59 logtab->table = table;
66 table[ii] = (prdata)(logtab->scale * mul_scale * log(1
69 PRINT_SOME_CODE(" %d,", table[ii]);
74 PLogMessage("L: log table scale is %f\n", (float)logtab->scale);
75 PLogMessage("L: log table has %d entries\n", (int)logtab->add_log_limit);
79 log_report("T: %d %f\n", ii, (float)logtab->table[ii]);
90 ASSERT(logtab->table);
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
H A DPropertyTableTooltipHelper.java11 package org.eclipse.wb.internal.core.model.property.table;
28 * @coverage core.model.property.table
39 public PropertyTableTooltipHelper(PropertyTable table) { argument
40 m_table = table;
H A DPropertyTooltipTextProvider.java11 package org.eclipse.wb.internal.core.model.property.table;
22 * @coverage core.model.property.table
/external/protobuf/editors/
H A Dprotobuf-mode.el170 ;; 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...]
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DSecurity2Test.java58 // to the allSupported table then increment the count of the
127 * @param table
130 private void addOrIncrementTable(Hashtable table, String key) { argument
131 if (table.containsKey(key)) {
132 Integer before = (Integer) table.get(key);
133 table.put(key, new Integer(before.intValue() + 1));
135 table.put(key, new Integer(1));
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DDERUniversalString.java15 private static final char[] table = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' }; field in class:DERUniversalString
99 buf.append(table[(string[i] >>> 4) & 0xf]);
100 buf.append(table[string[i] & 0xf]);
/external/chromium_org/chrome/renderer/pepper/
H A Dpepper_flash_font_file_host.cc54 uint32_t table) {
60 if (content::GetFontTable(fd_, table, 0 /* offset */, NULL, &length)) {
64 if (content::GetFontTable(fd_, table, 0 /* offset */,
52 OnGetFontTable( ppapi::host::HostMessageContext* context, uint32_t table) argument
/external/chromium_org/components/webdata/common/
H A Dweb_data_service_backend.cc28 void WebDataServiceBackend::AddTable(scoped_ptr<WebDatabaseTable> table) { argument
30 tables_.push_back(table.release());
/external/chromium_org/content/renderer/pepper/
H A Dpepper_truetype_font_host.cc79 uint32_t table,
90 font_->GetTable(table, offset, max_data_length, &data));
78 OnHostMsgGetTable(HostMessageContext* context, uint32_t table, int32_t offset, int32_t max_data_length) argument
/external/chromium_org/ppapi/proxy/
H A Dflash_font_file_resource.cc34 PP_Bool FlashFontFileResource::GetFontTable(uint32_t table, argument
45 std::string* contents = GetFontTable(table);
49 RENDERER, PpapiHostMsg_FlashFontFile_GetFontTable(table),
54 contents = AddFontTable(table, out_contents);
67 std::string* FlashFontFileResource::GetFontTable(uint32_t table) const {
68 FontTableMap::const_iterator found = font_tables_.find(table);
74 std::string* FlashFontFileResource::AddFontTable(uint32_t table, argument
77 font_tables_[table] = heap_string;
/external/chromium_org/third_party/WebKit/Source/core/accessibility/
H A DAccessibilityTableRow.cpp71 AccessibilityObject* table = parentTable(); local
72 if (!table || !table->isAccessibilityTable())
80 // This allows the table to be the one who sends notifications about tables.
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dlatebindingsymboltable.cc79 void **table)
81 table_(table),
78 LateBindingSymbolTable(const TableInfo *info, void **table) argument
/external/chromium_org/third_party/lzma_sdk/
H A D7zCrc.c15 typedef UInt32 (MY_FAST_CALL *CRC_FUNC)(UInt32 v, const void *data, size_t size, const UInt32 *table);
22 #define CRC_UPDATE_BYTE_2(crc, b) (table[((crc) ^ (b)) & 0xFF] ^ ((crc) >> 8))
24 static UInt32 MY_FAST_CALL CrcUpdateT1(UInt32 v, const void *data, size_t size, const UInt32 *table) argument
34 UInt32 MY_FAST_CALL CrcUpdateT4(UInt32 v, const void *data, size_t size, const UInt32 *table);
35 UInt32 MY_FAST_CALL CrcUpdateT8(UInt32 v, const void *data, size_t size, const UInt32 *table);
/external/chromium_org/third_party/skia/src/core/
H A DSkFilterProc.h21 inline SkFilterProc SkGetBilinearFilterProc(const SkFilterProc* table, argument
24 SkASSERT(table);
29 return table[(y << 2) | x];
32 inline SkFilterProc SkGetBilinearFilterProc22(const SkFilterProc* table, argument
35 SkASSERT(table);
40 return table[(y << 2) | x];
43 inline const SkFilterProc* SkGetBilinearFilterProc22Row(const SkFilterProc* table, argument
46 SkASSERT(table);
48 return &table[y << 30 >> 28];
66 inline SkFilter32Proc SkGetFilter32Proc22(const SkFilter32Proc* table, argument
77 SkGetFilter32Proc22Row(const SkFilter32Proc* table, unsigned y) argument
101 SkGetBilinearFilterPtrProc(const SkFilterPtrProc* table, SkFixed x, SkFixed y) argument
115 SkGetBilinearFilterPtrProcYTable(const SkFilterPtrProc* table, SkFixed y) argument
126 SkGetBilinearFilterPtrXProc(const SkFilterPtrProc* table, SkFixed x) argument
[all...]
/external/chromium_org/third_party/skia/src/images/
H A Dtransform_scanline.h89 const SkUnPreMultiply::Scale* SK_RESTRICT table = local
100 SkUnPreMultiply::Scale scale = table[a];
119 const SkUnPreMultiply::Scale* SK_RESTRICT table = local
130 SkUnPreMultiply::Scale scale = table[a];
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dstack_trace_table_test.cc14 static void CheckTracesAndReset(tcmalloc::StackTraceTable* table, argument
16 void** entries = table->ReadStackTracesAndClear();
23 static void AddTrace(tcmalloc::StackTraceTable* table, argument
31 table->AddTrace(t);
35 tcmalloc::StackTraceTable table; local
37 // Empty table
38 CHECK_EQ(table.depth_total(), 0);
39 CHECK_EQ(table.bucket_total(), 0);
41 CheckTracesAndReset(&table, k1, ARRAYSIZE(k1));
57 AddTrace(&table, t
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dstack_trace_table_test.cc14 static void CheckTracesAndReset(tcmalloc::StackTraceTable* table, argument
16 void** entries = table->ReadStackTracesAndClear();
23 static void AddTrace(tcmalloc::StackTraceTable* table, argument
31 table->AddTrace(t);
35 tcmalloc::StackTraceTable table; local
37 // Empty table
38 CHECK_EQ(table.depth_total(), 0);
39 CHECK_EQ(table.bucket_total(), 0);
41 CheckTracesAndReset(&table, k1, ARRAYSIZE(k1));
57 AddTrace(&table, t
[all...]
/external/chromium_org/ui/base/cursor/
H A Dcursors_aura.cc75 bool SearchTable(const CursorData* table, argument
85 if (table[i].id == id) {
86 *resource_id = table[i].resource_id;
88 gfx::Point(table[i].hot_1x.x, table[i].hot_1x.y) :
89 gfx::Point(table[i].hot_2x.x, table[i].hot_2x.y);
/external/e2fsprogs/lib/ss/
H A Dlist_rqs.c31 ss_request_table **table; local
53 for (table = ss_info(sci_idx)->rqt_tables; *table; table++) {
54 entry = (*table)->requests;
/external/flac/libFLAC/
H A Dfloat.c278 const FLAC__uint32 *table = log2_lookup[fracbits >> 2]; local
297 y += table[k];
/external/guava/guava-tests/test/com/google/common/collect/
H A DAbstractTableTest.java35 Table<String, Integer, Character> table, Object... data) {
38 table.put(
52 table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
54 table.clear();
55 assertEquals(0, table.size());
56 assertFalse(table.containsRow("foo"));
59 table.clear();
66 assertNull(table.put("foo", 1, 'a'));
67 assertNull(table.put("bar", 1, 'b'));
68 assertNull(table
34 populate( Table<String, Integer, Character> table, Object... data) argument
[all...]
/external/icu4c/layout/
H A DContextualGlyphSubstProc.cpp48 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/iproute2/netem/
H A Dparetonormal.c2 * 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);

Completed in 1260 milliseconds

1234567891011>>