HomeSort by relevance Sort by last modified time
    Searched defs:table (Results 251 - 275 of 553) sorted by null

<<11121314151617181920>>

  /external/javassist/src/main/javassist/bytecode/analysis/
Analyzer.java 35 * variable table at every reachable instruction in a method. During analysis,
216 ExceptionTable table = method.getCodeAttribute().getExceptionTable(); local
217 ExceptionInfo[] exceptions = new ExceptionInfo[table.size()];
218 for (int i = 0; i < table.size(); i++) {
219 int index = table.catchType(i);
227 exceptions[i] = new ExceptionInfo(table.startPc(i), table.endPc(i), table.handlerPc(i), type);
409 // Offset table
  /external/kernel-headers/original/linux/netfilter/
x_tables.h 126 /* Which table. */
190 char *table; member in struct:xt_match
238 char *table; member in struct:xt_target
273 /* The table itself */
276 /* Size per table */
297 unsigned int size, const char *table, unsigned int hook,
300 unsigned int size, const char *table, unsigned int hook,
303 extern int xt_register_table(struct xt_table *table,
306 extern void *xt_unregister_table(struct xt_table *table);
308 extern struct xt_table_info *xt_replace_table(struct xt_table *table,
    [all...]
  /external/libxml2/
hash.c 55 * A single entry in the hash table
69 * The entire hash table
72 struct _xmlHashEntry *table; member in struct:_xmlHashTable
86 xmlHashComputeKey(xmlHashTablePtr table, const xmlChar *name,
92 value = table->random_seed;
110 return (value % table->size);
114 xmlHashComputeQKey(xmlHashTablePtr table,
122 value = table->random_seed;
162 return (value % table->size);
167 * @size: the size of the hash table
175 xmlHashTablePtr table; local
213 xmlHashTablePtr table; local
    [all...]
  /external/mdnsresponder/mDNSShared/
dnsextd.h 61 // lease table entry
91 // llq table entry
138 // lease table variables (locked via mutex after initialization)
139 RRTableElem **table; // hashtable for records with leases member in struct:__anon12250
140 pthread_mutex_t tablelock; // mutex for lease table
142 mDNSs32 nelems; // elements in table
144 // LLQ table variables
  /external/openfst/src/include/fst/
encode.h 47 // Identifies stream data as an encode table (and its endianity)
211 SymbolTable *isymbols_; // Pre-encoded ilabel symbol table
212 SymbolTable *osymbols_; // Pre-encoded olabel symbol table
249 LOG(ERROR) << "EncodeTable::Read: Bad encode table header: " << source;
254 EncodeTable<A> *table = new EncodeTable<A>(flags); local
272 table->encode_tuples_.push_back(tuple);
273 table->encode_hash_[table->encode_tuples_.back()] =
274 table->encode_tuples_.size();
278 table->isymbols_ = SymbolTable::Read(strm, source)
364 const EncodeTable<A> &table() const { return *table_; } function in class:fst::EncodeMapper
382 EncodeTable<A> *table = EncodeTable<A>::Read(strm, source); local
    [all...]
  /external/qemu/target-arm/
op_helper.c 38 uint64_t *table; local
39 table = (uint64_t *)&env->vfp.regs[rn];
44 tmp = (table[index >> 3] >> ((index & 7) << 3)) & 0xff;
  /external/skia/src/effects/
SkColorMatrixFilter.cpp 232 const SkUnPreMultiply::Scale* table = SkUnPreMultiply::GetScaleTable(); local
244 SkUnPreMultiply::Scale scale = table[a];
SkTableColorFilter.cpp 41 virtual bool asComponentTable(SkBitmap* table) const SK_OVERRIDE;
109 const uint8_t* table = fStorage; local
115 tableA = table; table += 256;
118 tableR = table; table += 256;
121 tableG = table; table += 256;
124 tableB = table;
192 bool SkTable_ColorFilter::asComponentTable(SkBitmap* table) const
    [all...]
  /external/skia/src/gpu/
GrClipMaskManager.cpp 881 const GrStencilFunc* table = local
    [all...]
  /external/srec/tools/test_g2g/
test_g2g.c 515 static int table[2048]; local
521 for(j=0; j< (int)(sizeof(table)/sizeof(int)); j++)
522 table[j] = 0;
533 table[j] = a->pdata[i].code;
535 return &table[0];
  /external/webkit/Source/JavaScriptCore/runtime/
JSObject.cpp 56 const HashTable* table = classInfo->propHashTable(exec); local
57 if (!table)
59 table->initializeIfNeeded(exec);
60 ASSERT(table->table);
62 int hashSizeMask = table->compactSize - 1;
63 const HashEntry* entry = table->table;
434 // This could be a function within the static table? - should probably
PropertyMapHashTable.h 92 // used for iterating over the table in insertion order.
156 // Find a value in the table.
158 // Add a value to the table
160 // Remove a value from the table.
189 // Used to insert a value known not to be in the table, and where we know capacity to be available.
192 // Rehash the table. Used to grow, or to recover deleted slots.
195 // The capacity of the table of values is half of the size of the index.
211 // The table of values lies after the hash index.
212 ValueType* table();
213 const ValueType* table() const
519 inline PropertyTable::ValueType* PropertyTable::table() function in class:JSC::PropertyTable
525 inline const PropertyTable::ValueType* PropertyTable::table() const function in class:JSC::PropertyTable
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
SymbolTable.h 11 // Symbol table for parsing. Has these design characteristics:
13 // * Same symbol table can be used to compile many shaders, to preserve
18 // so that symbol table lookups are never ambiguous. This allows
19 // a simpler symbol table structure.
21 // * Pushing and popping of scope, so symbol table will really be a stack
26 // in the symbol table. The parser can substitute constants at parse
30 // are tracked in the intermediate representation, not the symbol table.
204 // returning true means symbol was added to the table
245 // The symbol table cannot be used until push() is called, but
247 // that the symbol table has not been preloaded with built-ins
342 std::vector<TSymbolTableLevel*> table; member in class:TSymbolTable
    [all...]
  /external/webkit/Source/WebKit/qt/tests/qwebelement/
tst_qwebelement.cpp 813 "<table>"
824 "</table>";
827 QCOMPARE(body.findFirst("em table tbody tr td").toPlainText(), QString("hey"));
864 "<table>"
875 "</table>";
878 QCOMPARE(body.findFirst("table tbody tr td em").toPlainText(), QString("hey"));
891 m_mainFrame->setHtml("<body><!--comment--><p>Test</p><!--another comment--><table>");
898 QWebElement table = p.nextSibling(); local
899 QVERIFY(!table.isNull());
900 QCOMPARE(table.tagName(), QString("TABLE"))
910 QWebElement table = body.lastChild(); local
    [all...]
  /external/wpa_supplicant_8/src/utils/
eloop.c 52 struct eloop_sock *table; member in struct:eloop_sock_table
59 int count; /* sum of all table counts */
92 static void eloop_trace_sock_add_ref(struct eloop_sock_table *table)
95 if (table == NULL || table->table == NULL)
97 for (i = 0; i < table->count; i++) {
98 wpa_trace_add_ref(&table->table[i], eloop,
99 table->table[i].eloop_data)
460 struct eloop_sock_table *table; local
470 struct eloop_sock_table *table; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_reconstruct.c 19 Table of contents
76 /* clipping table, defined in h264bsd_intra_prediction.c */
1223 i32 table[21*16]; local
1410 i32 table[21*16]; local
1614 i32 table[21*16]; local
    [all...]
  /hardware/ti/omap4xxx/camera/inc/
Encoder_libjpeg.h 100 ExifElement_t table[MAX_EXIF_TAGS_SUPPORTED]; member in class:android::ExifElementsTable
  /libcore/luni/src/main/java/java/text/
DateFormat.java 670 private static Hashtable<Integer, Field> table = new Hashtable<Integer, Field>(); field in class:DateFormat.Field
782 if (calendarField != -1 && table.get(Integer.valueOf(calendarField)) == null) {
783 table.put(Integer.valueOf(calendarField), this);
812 return table.get(Integer.valueOf(calendarField));
  /packages/providers/DrmProvider/src/com/android/providers/drm/
DrmProvider.java 108 * Creates the table that'll hold the download information.
111 db.execSQL("CREATE TABLE audio (" +
119 db.execSQL("CREATE TABLE images (" +
129 * Deletes the table that holds the download information.
133 db.execSQL("DROP TABLE IF EXISTS audio");
134 db.execSQL("DROP TABLE IF EXISTS images");
273 public String table; field in class:DrmProvider.GetTableAndWhereOutParameter
285 out.table = "audio";
289 out.table = "audio";
294 out.table = "images"
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/
bootparam.h 53 __u8 table[14]; member in struct:sys_desc_table
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/asm/
bootparam.h 53 __u8 table[14]; member in struct:sys_desc_table
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/asm/
bootparam.h 53 __u8 table[14]; member in struct:sys_desc_table
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiElementDetail.java 234 // Before changing the table, commit all dirty state.
250 // creation of the master table.
300 Composite table = useSubsections ? null : masterTable; local
306 } else if (table == null || attr_desc instanceof SeparatorAttributeDescriptor) {
315 table = createSubSectionTable(toolkit, masterTable, title);
324 ui_attr.createUiControl(table, managedForm);
328 ((Section) table.getParent()).setExpanded(true);
373 * Create a sub Section and its embedding wrapper table with 2 columns.
374 * @return The table, child of a new section.
380 // if the parent is a table with more than one column an extra table with one colum
391 Composite table; local
    [all...]
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoTable.java 454 private static View applyFrame(final PhotoTable table, final BitmapFactory.Options options,
456 LayoutInflater inflater = (LayoutInflater) table.getContext()
467 layers[0] = new BitmapDrawable(table.mResources, decodedPhoto);
468 layers[1] = table.mResources.getDrawable(R.drawable.frame);
470 layerList.setLayerInset(0, table.mInset, table.mInset,
471 table.mInset, table.mInset);
477 photo.setOnTouchListener(new PhotoTouchListener(table.getContext(),
478 table));
497 final PhotoTable table = PhotoTable.this; local
551 final PhotoTable table = PhotoTable.this; local
560 final PhotoTable table = PhotoTable.this; local
    [all...]
  /dalvik/vm/alloc/
MarkSweep.cpp 171 * - Interned string table
887 IndirectRefTable* table = &gDvm.jniWeakGlobalRefTable; local
890 for (It it = table->begin(), end = table->end(); it != end; ++it) {

Completed in 1431 milliseconds

<<11121314151617181920>>