/external/guava/guava-tests/test/com/google/common/collect/ |
ForwardingTableTest.java | 26 private Table<String, Integer, Boolean> forward; 36 final Table<String, Integer, Boolean> table = local 37 createProxyInstance(Table.class); 39 @Override protected Table<String, Integer, Boolean> delegate() { 40 return table; 112 assertEquals("[putAll(Table)]", getCalls());
|
ImmutableTableTest.java | 27 @Override protected Table<String, Integer, Character> create(Object... data) { 44 Table<Character, Integer, String> expectedTable = HashBasedTable.create(); 48 Table<Character, Integer, String> otherTable = HashBasedTable.create(); 97 Table.Cell<Character, Integer, String> mutableCell = 156 private static <R, C, V> void validateTableCopies(Table<R, C, V> original) { 157 Table<R, C, V> copy = ImmutableTable.copyOf(original); 161 Table<R, C, V> built 168 Table<R, C, V> original, Table<R, C, V> copy) { 175 Table<Character, Integer, String> table = TreeBasedTable.create() local 190 Table<Character, Integer, String> table = TreeBasedTable.create(); local 204 Table<Character, Integer, String> table = TreeBasedTable.create(); local 217 Table<Character, Integer, String> table = HashBasedTable.create(); local 247 Table<Character, Integer, String> table = builder.build(); local 269 Table<Character, Integer, String> table = builder.build(); local 291 Table<Character, Integer, String> table = builder.build(); local 308 Table<Character, Integer, String> table = builder.build(); local 326 Table<Character, Integer, String> table = builder.build(); local 343 Table<Character, Integer, String> table = builder.build(); local [all...] |
/external/harfbuzz_ng/src/ |
hb-open-file-private.hh | 62 CheckSum checkSum; /* CheckSum for this table. */ 65 ULONG length; /* Length of this table. */ 130 inline unsigned int get_face_count (void) const { return table.len; } 131 inline const OpenTypeFontFace& get_face (unsigned int i) const { return this+table[i]; } 135 return TRACE_RETURN (table.sanitize (c, this)); 143 table; /* Array of offsets to the OffsetTable for each font member in struct:OT::TTCHeaderVersion1 146 DEFINE_SIZE_ARRAY (12, table);
|
/external/icu4c/i18n/ |
uspoof_conf.cpp | 50 // be stored in that order in the final string table. 53 // list because that will be the ordering of our runtime table. 55 // 4. Generate the run time string table. This is generated before the key & value 231 // Capture Group 3-6 the table type, SL, SA, ML, or MA 240 "\\s*(?:(SL)|(SA)|(ML)|(MA))" // Match the table type 273 // put them into the appropriate mapping table. 297 // Add the UChar32 -> string mapping to the appropriate table. 298 UHashtable *table = uregex_start(fParseLine, 3, &status) >= 0 ? fSLTable : local 303 U_ASSERT(table != NULL); 304 uhash_iput(table, keyChar, smapString, &status) [all...] |
/external/icu4c/test/letest/ |
PortableFontInstance.cpp | 114 // read unitsPerEm from 'head' table 189 le_uint16 table = 0; local 193 table = fDirExtra; 199 if (SWAPL(fDirectory->tableDirectory[table + probe].tag) <= tag) { 200 table += probe; 204 if (SWAPL(fDirectory->tableDirectory[table].tag) == tag) { 205 return &fDirectory->tableDirectory[table]; 223 void *table = NEW_ARRAY(char, *length); local 225 if (table != NULL) { 227 fread(table, sizeof(char), *length, fFile) [all...] |
/external/icu4c/tools/icuswap/ |
icuswap.cpp | 351 ToCEntry *table; local 429 /* check that the itemCount fits, then the ToC table, then at least the header of the last item */ 440 /* ToC table does not fit */ 505 * Allocate the ToC table and, if necessary, a temporary buffer for 515 * not only the ToC table but also the data items themselves. 523 table=(ToCEntry *)uprv_malloc(itemCount*sizeof(ToCEntry)+length+DEFAULT_PADDING_LENGTH); 524 if(table!=NULL) { 525 outBytes=(uint8_t *)(table+itemCount); 532 table=(ToCEntry *)uprv_malloc(itemCount*sizeof(ToCEntry)); 534 if(table==NULL) [all...] |
/external/iproute2/include/linux/ |
fib_rules.h | 24 __u8 table; member in struct:fib_rule_hdr 49 FRA_TABLE, /* Extended table id */ 59 FR_ACT_TO_TBL, /* Pass to fixed table */
|
/external/iproute2/netem/ |
maketable.c | 2 * Experimental data distribution table generator 7 * From this, create the inverse distribution table used to approximate 73 /* Create a (normalized) distribution table from a set of observed 74 * values. The table is fixed to run from (as it happens) -4 to +4, 95 int *table; local 99 table = calloc(DISTTABLESIZE, sizeof(int)); 100 if (!table) { 101 perror("table alloc"); 112 ++table[index]; 118 return table; 202 int *table; local [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/util/ |
IntMap.java | 48 private Entry[] table; field in class:IntMap 76 this.table = new Entry[capacity]; 84 Entry[] newTable = new Entry[table.length]; 85 for (int i = table.length - 1; i >= 0; i--){ 86 if (table[i] != null) 87 newTable[i] = table[i].clone(); 89 clone.table = newTable; 97 Entry[] table = this.table; local 98 for (int i = table.length; i-- > 0;) 193 Entry[] table = this.table; local [all...] |
/external/libxml2/ |
entities.c | 198 * xmlAddEntity : register a new entity for an entities table. 205 xmlEntitiesTablePtr table = NULL; local 221 table = dtd->entities; 227 table = dtd->pentities; 232 if (table == NULL) 239 if (xmlHashAddEntry(table, name, ret)) { 423 * @table: an entity table 427 * Do an entity lookup in the table. 433 xmlGetEntityFromTable(xmlEntitiesTablePtr table, const xmlChar *name) 449 xmlEntitiesTablePtr table; local 480 xmlEntitiesTablePtr table; local 505 xmlEntitiesTablePtr table; local [all...] |
/external/libxslt/libxslt/ |
keys.c | 148 * @keyt: an XSLT key table 169 * @keyt: an XSLT key table list 414 xsltKeyTablePtr table; local 439 table = (xsltKeyTablePtr) ctxt->document->keys; 440 while (table != NULL) { 441 if (((nameURI != NULL) == (table->nameURI != NULL)) && 442 xmlStrEqual(table->name, name) && 443 xmlStrEqual(table->nameURI, nameURI)) 445 ret = (xmlNodeSetPtr)xmlHashLookup(table->keys, value); 448 table = table->next 533 xsltKeyTablePtr table; local 605 xsltKeyTablePtr table; local [all...] |
/external/openssl/apps/ |
passwd.c | 43 char *passwd, BIO *out, int quiet, int table, int reverse, 54 * -table - format output as table 55 * -reverse - switch table columns 72 int passed_salt = 0, quiet = 0, table = 0, reverse = 0; local 139 else if (strcmp(argv[i], "-table") == 0) 140 table = 1; 185 BIO_printf(bio_err, "-table format output as table\n"); 186 BIO_printf(bio_err, "-reverse switch table columns\n") [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/ |
SDL_blit.h | 41 Uint8 *table; member in struct:__anon13344 58 Uint8 *table; member in struct:SDL_BlitMap
|
/external/qemu-pc-bios/vgabios/tests/ |
testbios.c | 133 {unsigned char table[64];
local 141 ptable=&table;
149 printf("%02x ",table[i]);
|
/external/quake/quake/src/QW/client/ |
gl_vidandroid.c | 66 unsigned *table; local 78 table = d_8to24table; 89 *table++ = v;
|
/external/skia/legacy/src/effects/ |
SkColorMatrixFilter.cpp | 244 const SkUnPreMultiply::Scale* table = SkUnPreMultiply::GetScaleTable(); local 256 SkUnPreMultiply::Scale scale = table[a];
|
/external/srec/portable/src/ |
phashtable.c | 40 PHashTable *table; member in struct:PHashTableEntry_t 76 PHashTable **table) 81 if (table == NULL || 125 *table = tmp; 129 ESR_ReturnCode PHashTableDestroy(PHashTable *table) 133 if (table == NULL) 136 block = table->entryBlock; 144 FREE(table->entries); 145 FREE(table); 149 ESR_ReturnCode PHashTableGetSize(PHashTable *table, [all...] |
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
encode.h | 32 // Identifies stream data as an encode table (and its endianity) 154 LOG(ERROR) << "EncodeTable::Read: Bad encode table header: " << source; 192 // The Encode mapper stores the encoding in a local hash table (EncodeTable) 193 // This table is shared (and reference counted) between the encoder and 197 // EncodeTable is generated the same table may by used to decode the machine 202 // we will use the encoding table generated during the encode step in the 292 EncodeTable<A> *table = new EncodeTable<A>(0); local 293 bool r = table->Read(strm, source); 294 return r ? new EncodeMapper(table->flags(), type, table) : 0 [all...] |
/external/stlport/src/ |
time_facets.cpp | 65 // _Init_time_info: initialize table with 69 static void _Init_timeinfo_base(_Time_Info_Base& table) { 70 table._M_time_format = "%H:%M:%S"; 71 table._M_date_format = "%m/%d/%y"; 72 table._M_date_time_format = "%m/%d/%y"; 75 static void _Init_timeinfo(_Time_Info& table) { 78 table._M_dayname[i] = default_dayname[i]; 80 table._M_monthname[i] = default_monthname[i]; 81 table._M_am_pm[0] = "AM"; 82 table._M_am_pm[1] = "PM" 149 const string& format, const _TimeInfo& table, const tm* t) { variable 216 const _TimeInfo& table, const tm* t) { variable [all...] |
/external/v8/src/ |
compilation-cache.cc | 46 // Initial size of each compilation cache table allocated. 82 CompilationCacheTable* table = local 84 result = Handle<CompilationCacheTable>(table, isolate()); 125 Handle<CompilationCacheTable> table = GetTable(generation); local 126 table->Remove(*function_info); 179 Handle<CompilationCacheTable> table = GetTable(generation); local 180 Handle<Object> probe(table->Lookup(*source), isolate()); 230 Handle<CompilationCacheTable> table = GetFirstTable(); local 231 return table->Put(*source, *function_info); 256 // Make sure not to leak the table into the surrounding handl 263 Handle<CompilationCacheTable> table = GetTable(generation); local 291 Handle<CompilationCacheTable> table = GetFirstTable(); local 326 Handle<CompilationCacheTable> table = GetTable(generation); local 351 Handle<CompilationCacheTable> table = GetFirstTable(); local [all...] |
/external/webkit/Source/JavaScriptCore/runtime/ |
Lookup.h | 40 // Hash table generated by the create_hash_table script. 129 mutable const HashEntry* table; // Table allocated at runtime. member in struct:JSC::HashTable 133 if (!table) 139 if (!table) 145 // Find an entry in the table, and return the entry. 161 ASSERT(table); 163 const HashEntry* entry = &table[identifier.impl()->existingHash() & compactHashSizeMask]; 177 // Convert the hash table keys to identifiers. 190 inline bool getStaticPropertySlot(ExecState* exec, const HashTable* table, ThisImp* thisObj, const Identifier& propertyName, PropertySlot& slot [all...] |
/external/webkit/Source/WebCore/accessibility/ |
AccessibilityTable.cpp | 95 // Do not consider it a data table is it has an ARIA role. 99 // This employs a heuristic to determine if this table should appear. 102 // between a "layout" table and a "data" table. 104 RenderTable* table = toRenderTable(m_renderer); 105 Node* tableNode = table->node(); 109 // if there is a caption element, summary, THEAD, or TFOOT section, it's most certainly a data table 114 // if someone used "rules" attribute than the table should appear 118 // go through the cell's and check for tell-tale signs of "data" table status 120 RenderTableSection* firstBody = table->firstBody() 457 RenderTable* table = toRenderTable(m_renderer); local [all...] |
/external/webkit/Source/WebCore/platform/graphics/filters/ |
FEComponentTransfer.cpp | 101 static void table(unsigned char* values, const ComponentTransferFunction& transferFunction) function in namespace:WebCore 170 TransferType callEffect[] = {identity, identity, table, discrete, linear, gamma}; 201 ts << "TABLE";
|
/external/webkit/Source/WebCore/platform/graphics/skia/ |
SkiaUtils.cpp | 74 const CompositOpToSkiaMode* table = gMapCompositOpsToSkiaModes; local 77 if (table[i].mCompositOp == op) 78 return (SkXfermode::Mode)table[i].mMode; 109 const CompositOpToXfermodeMode* table = gMapCompositOpsToXfermodeModes; local 112 if (table[i].mCompositOp == op) 113 return (SkXfermode::Mode)table[i].m_xfermodeMode;
|
/external/webkit/Source/WebCore/platform/gtk/ |
PasteboardHelper.cpp | 295 GtkTargetEntry* table = gtk_target_table_new_from_list(list, &numberOfTargets); local 297 if (numberOfTargets > 0 && table) { 300 gtk_clipboard_set_with_data(clipboard, table, numberOfTargets, 309 if (table) 310 gtk_target_table_free(table, numberOfTargets);
|