HomeSort by relevance Sort by last modified time
    Searched refs:strings (Results 101 - 125 of 533) sorted by null

1 2 3 45 6 7 8 91011>>

  /ndk/sources/host-tools/make-3.81/
strcache.c 32 struct strcache *next; /* The next block of strings. */
34 int count; /* # of strings in this buffer (for stats). */
95 /* Hash table of strings in the cache. */
115 static struct hash_table strings; variable in typeref:struct:hash_table
121 char **slot = (char **) hash_find_slot (&strings, str);
129 hash_insert_at (&strings, key, slot);
176 hash_init (&strings, 1000, str_hash_1, str_hash_2, str_hash_cmp);
210 printf (_("\n%s # of strings in strcache: %d\n"), prefix, numstrs);
  /dalvik/tests/021-string2/src/
Main.java 77 String[] strings = test.split("/");
78 Assert.assertEquals(4, strings.length);
  /development/tools/emulator/opengl/shared/OpenglCodecCommon/
glUtils.h 58 void glUtilsPackStrings(char *ptr, char **strings, GLint *length, GLsizei count);
59 int glUtilsCalcShaderSourceLen(char **strings, GLint *length, GLsizei count);
  /development/tools/findunused/
find_unused_resources.rb 108 strings = Hash.new
116 strings[id] = FilePosition.new(filename, file.lineno)
147 strings.delete(id)
152 strings.delete(id)
157 strings.delete(id)
163 result.unusedStringIds = strings
  /external/chromium/chrome/browser/ui/views/infobars/
after_translate_infobar.cc 89 std::vector<string16> strings; local
90 GetDelegate()->GetAfterTranslateStrings(&strings, &swapped_language_buttons_);
91 DCHECK_EQ(3U, strings.size());
93 label_1_ = CreateLabel(strings[0]);
101 label_2_ = CreateLabel(strings[1]);
107 label_3_ = CreateLabel(strings[2]);
  /hardware/ril/mock-ril/src/js/
simulated_radio.js 665 rsp.strings = Array();
666 rsp.strings[0] = registrationState;
667 rsp.strings[1] = lac;
668 rsp.strings[2] = cid;
669 rsp.strings[3] = radioTechnology;
670 rsp.strings[4] = baseStationId;
671 rsp.strings[5] = baseStationLatitude;
672 rsp.strings[6] = baseStationLongitude;
673 rsp.strings[7] = concurrentServices;
674 rsp.strings[8] = systemId
    [all...]
  /external/webkit/Tools/DumpRenderTree/mac/
ObjCController.m 145 NSString *strings[3];
146 strings[0] = @"one";
147 strings[1] = @"two";
148 strings[2] = @"three";
149 NSArray *array = [NSArray arrayWithObjects:strings count:3];
  /external/icu4c/i18n/
colldata.cpp 201 : strings(NULL), listMax(STRING_LIST_BUFFER_SIZE), listSize(0)
207 strings = new UnicodeString [listMax];
209 if (strings == NULL) {
222 delete[] strings;
240 uprv_memcpy(newStrings, strings, listSize * sizeof(UnicodeString));
252 delete[] strings;
253 strings = newStrings;
257 // The ctor initialized all the strings in
258 // the array to empty strings, so this
260 strings[listSize++].append(*string)
328 StringList *strings = getStringList(ce); local
356 StringList *strings = (StringList *) obj; local
874 const StringList *strings = ceToCharsStartingWith->getStringList(ce); local
    [all...]
  /external/openssl/crypto/ui/
ui_lib.c 91 ret->strings=NULL;
121 sk_UI_STRING_pop_free(ui->strings,free_string);
128 if (ui->strings == NULL)
130 ui->strings=sk_UI_STRING_new_null();
131 if (ui->strings == NULL)
180 ret=sk_UI_STRING_push(ui->strings, s);
229 ret=sk_UI_STRING_push(ui->strings, s);
465 if (i >= sk_UI_STRING_num(ui->strings))
470 return UI_get0_result_string(sk_UI_STRING_value(ui->strings, i));
499 for(i=0; i<sk_UI_STRING_num(ui->strings); i++
    [all...]
  /dalvik/vm/
AllocTracker.cpp 234 (2b) number of class name strings
235 (2b) number of method name strings
236 (2b) number of source file name strings
247 (xb) class name strings
248 (xb) method name strings
249 (xb) source file strings
251 As with other DDM traffic, strings are sent as a 4-byte length
255 can be (kMaxAllocRecordStackDepth * kNumAllocRecords) unique strings in
290 static void dumpStringTable(PointerSet* strings)
292 int count = dvmPointerSetGetCount(strings);
    [all...]
  /external/qemu/android/
help.c 285 const char** strings; local
308 strings = calloc( count, sizeof(char*) );
310 strings[n] = skin_key_command_to_str(n+1);
312 stralloc_tabular( out, strings, count, " ", 80-8 );
313 free(strings);
330 strings = calloc( count, sizeof(char*) );
332 strings[n] = skin_keysym_str(n);
334 stralloc_tabular( out, strings, count, " ", 80-8 );
335 free(strings);
    [all...]
  /dalvik/dx/src/com/android/dx/command/findusages/
FindUsages.java 53 List<String> strings = dex.strings(); local
54 for (int i = 0; i < strings.size(); ++i) {
55 String string = strings.get(i);
105 return className + "." + dex.strings().get(methodId.getNameIndex());
  /external/icu4c/common/
unisetspan.cpp 51 * UnicodeSet does not have a limit on the lengths of strings.
203 : spanSet(0, 0x10ffff), pSpanNotSet(NULL), strings(setStrings),
215 // Determine if the strings even need to be taken into account at all for span() etc.
216 // If any string is relevant, then all strings need to be used for
219 // and do not store UTF-8 strings if !thisRelevant and CONTAINED.
220 // (Only store irrelevant UTF-8 strings for LONGEST_MATCH where they are relevant after all.)
221 // Also count the lengths of the UTF-8 versions of the strings for memory allocation.
222 int32_t stringsLength=strings.size();
227 const UnicodeString &string=*(const UnicodeString *)strings.elementAt(i);
253 // Freeze after checking for the need to use strings at all because freezin
    [all...]
  /external/chromium/chrome/browser/autocomplete/
autocomplete_match.cc 45 const char* strings[NUM_TYPES] = { local
58 DCHECK(arraysize(strings) == NUM_TYPES);
59 return strings[type];
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/RegExp/
15.10.2-1.js 53 var strings = new Array();
162 strings[i] = string;
174 testRegExp(statusmessages, patterns, strings, actualmatches, expectedmatches);
regress-191479.js 52 var strings = new Array();
179 strings[i] = string;
191 testRegExp(statusmessages, patterns, strings, actualmatches, expectedmatches);
regress-67773.js 38 var strings = new Array();
176 strings[i] = string;
188 testRegExp(statusmessages, patterns, strings, actualmatches, expectedmatches);
  /external/webkit/Source/WebCore/platform/graphics/win/
FontPlatformDataCGWin.cpp 71 BYTE* strings = buffer + stringsOffset;
91 result.adoptCF(CFStringCreateWithBytes(NULL, strings + nameOffset, length, kCFStringEncodingUTF16BE, false));
98 result.adoptCF(CFStringCreateWithBytes(NULL, strings + nameOffset, length, kCFStringEncodingASCII, false));
  /frameworks/base/keystore/java/android/security/
KeyStore.java 118 String[] strings = new String[values.length]; local
120 strings[i] = toString(values[i]);
122 return strings;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include-fixed/X11/
Xos.h 89 * Just about everyone needs the strings routines. We provide both forms here,
105 #include <strings.h>
108 #include <strings.h>
137 #include <strings.h>
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xos.h 80 * Just about everyone needs the strings routines. We provide both forms here,
96 #include <strings.h>
99 #include <strings.h>
128 #include <strings.h>
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/X11/
Xos.h 89 * Just about everyone needs the strings routines. We provide both forms here,
105 #include <strings.h>
108 #include <strings.h>
137 #include <strings.h>
  /external/chromium/chrome/browser/resources/shared/js/
local_strings.js 8 * The local strings get injected into the page using a variable named
10 * strings.
13 * strings. If this is not supplied during construction, it can be
  /dalvik/dx/src/com/android/dx/io/
DexIndexPrinter.java 48 for (String string : dexBuffer.strings()) {
57 System.out.println("type " + index + ": " + dexBuffer.strings().get(type));
  /external/libphonenumber/java/test/com/android/i18n/phonenumbers/geocoding/
MappingFileProviderTest.java 53 private static HashSet<String> newHashSet(String... strings) {
55 set.addAll(Arrays.asList(strings));

Completed in 2517 milliseconds

1 2 3 45 6 7 8 91011>>