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

1 2 3 4 5 6 7 891011>>

  /external/libxml2/
dict.c 2 * dict.c: dictionary of reusable strings, just used to avoid allocation
98 xmlDictStringsPtr strings; member in struct:_xmlDict
166 pool = dict->strings;
188 pool->next = dict->strings;
189 dict->strings = pool;
228 pool = dict->strings;
250 pool->next = dict->strings;
251 dict->strings = pool;
303 * Calculate a hash key for two strings using a good hash function
309 * Neither of the two strings must be NULL
    [all...]
  /external/v8/test/mjsunit/
string-add.js 177 // Generate ascii and non ascii strings from length 0 to 20.
189 // Add ascii and non-ascii strings generating strings with length from 0 to 20.
substr.js 84 // Then two-byte strings.
102 // Keep creating strings to to force allocation failure on substring creation.
121 // Same with two-byte strings
  /external/webkit/Source/JavaScriptCore/runtime/
Operations.h 148 ALWAYS_INLINE JSValue jsString(ExecState* exec, Register* strings, unsigned count)
154 JSValue v = strings[i].jsValue();
163 return new (globalData) JSString(exec, strings[0].jsValue(), strings[1].jsValue(), strings[2].jsValue());
173 JSValue v = strings[i].jsValue();
  /external/protobuf/src/google/protobuf/compiler/
subprocess.cc 242 *error = strings::Substitute(
432 *error = strings::Substitute(
438 *error = strings::Substitute(
  /external/qemu/android/utils/
stralloc.c 23 const char** strings, int count,
29 int len = strlen(strings[n]);
44 stralloc_add_format( out, "%-*s", maxw, strings[index] );
50 /** DYNAMIC STRINGS
  /external/webkit/Source/WebCore/editing/
MarkupAccumulator.cpp 138 size_t MarkupAccumulator::totalLength(const Vector<String>& strings)
141 for (size_t i = 0; i < strings.size(); ++i)
142 length += strings[i].length();
238 // Use emptyAtoms's impl() for both null and empty strings since the HashMap can't handle 0 as a key
  /dalvik/dx/src/com/android/dx/io/
Annotation.java 97 result.append(buffer.strings().get(names[i]));
  /dalvik/libdex/
CmdUtils.cpp 25 #include <strings.h>
  /external/chromium/chrome/browser/translate/
translate_infobar_delegate.h 139 // Adds the strings that should be displayed in the after translate infobar to
140 // |strings|. The text in that infobar is:
146 static void GetAfterTranslateStrings(std::vector<string16>* strings,
  /external/icu4c/common/
unisetspan.h 26 * Implement span() etc. for a set with strings.
65 * Do the strings need to be checked in span() etc.?
66 * @return TRUE if strings need to be checked (call span() here),
101 // Set for span(). Same as parent but without strings.
105 // Same as spanSet, plus characters that start or end strings.
108 // The strings of the parent set.
109 const UVector &strings; member in class:UnicodeSetStringSpan
121 // the UTF-8 versions of the parent set's strings.
124 // Number of bytes for all UTF-8 versions of strings together.
127 // Maximum lengths of relevant strings
    [all...]
  /external/icu4c/i18n/
nfrule.h 83 int32_t indexOfAny(const UChar* const strings[]) const;
reldtfmt.cpp 195 // Linear search the relative strings
247 // Linear search the held strings
382 UResourceBundle *strings = calData.getByKey3("fields", "day", "relative", status); local
392 fDatesLen = ures_getSize(strings);
400 while(ures_hasNext(strings) && U_SUCCESS(status)) { // iterate over items
401 subString = ures_getNextResource(strings, subString, &status);
zstrfmt.cpp 534 ZoneStringFormat::ZoneStringFormat(const UnicodeString* const* strings,
550 if (strings == NULL || columnCount <= 0 || rowCount <= 0) {
567 if (strings[row][0].isEmpty()) {
572 if (!strings[row][col].isEmpty()) {
598 names[typeIdx].setTo(strings[row][col]);
602 ZoneStringInfo *zsinf = new ZoneStringInfo(strings[row][0],
603 strings[row][col],
607 fZoneStringsTrie.put(strings[row][col], zsinf, fStringPool, status);
618 UChar *utzid = const_cast<UChar *>(fStringPool.get(strings[row][0], status));
678 // We still want to go through the rest of zone strings initialization
1012 UnicodeString *strings = NULL; local
    [all...]
  /external/icu4c/i18n/unicode/
colldata.h 225 * @return the number of strings in the list.
243 UnicodeString *strings; member in class:StringList
317 * Get a list of all the strings which generate a list
324 * no such strings.
  /external/netperf/
netperf.c 54 #include <strings.h>
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_bootstrap_unittest.cc 77 strings::SubstituteAndAppend(&text_, "$0:$1:$2: $3\n",
  /external/protobuf/src/google/protobuf/stubs/
substitute.cc 39 namespace strings { namespace in namespace:google::protobuf
85 << "strings::Substitute format string invalid: asked for \"$"
98 << "Invalid strings::Substitute() format string: \""
132 } // namespace strings
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
synchronize.h 67 // Residual strings are represented by const pointers to
85 vector<const String*> strings; local
88 strings.push_back(*it);
90 for (size_t i = 0; i < strings.size(); ++i)
91 delete strings[i];
242 // Equality function for Elements, assume strings have been hashed.
267 // Equality function for strings
278 // Hash function for set of strings
  /external/valgrind/main/memcheck/perf/
many-loss-records.c 12 #include <strings.h>
  /frameworks/base/drm/common/
DrmSupportInfo.cpp 18 #include <strings.h>
  /system/media/wilhelm/tools/hashgen/
Makefile 40 gperf --null-strings --readonly-tables --compare-lengths part23in.gperf > part23in.c
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
XSLTAttributeDef.java 247 // Used for a list of white-space delimited strings.
250 // Used for a list of white-space delimited strings.
268 // Used for a list of white-space delimited strings.
269 // strings are checked to make sure they are valid
350 * an array of strings - the values in the enumeration
1204 StringVector strings = new StringVector(nStrings); local
1235 StringVector strings = new StringVector(nStrings); local
1273 StringVector strings = new StringVector(nStrings); local
    [all...]
  /dalvik/tests/074-gc-thrash/src/
Main.java 167 String strings[] = new String[ARRAY_SIZE]; local
171 strings[idx] = makeString(idx);
  /dalvik/tests/082-inline-execute/src/
Main.java 198 String[] strings = test.split("/");
199 Assert.assertEquals(4, strings.length);

Completed in 1020 milliseconds

1 2 3 4 5 6 7 891011>>