Searched refs:strings (Results 301 - 325 of 863) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/base/
H A Dbase.target.linux-x86_64.mk200 base/strings/latin1_string_conversions.cc \
201 base/strings/nullable_string16.cc \
202 base/strings/safe_sprintf.cc \
203 base/strings/string16.cc \
204 base/strings/string_number_conversions.cc \
205 base/strings/string_split.cc \
206 base/strings/string_piece.cc \
207 base/strings/string_util.cc \
208 base/strings/string_util_constants.cc \
209 base/strings/stringprint
[all...]
/external/fonttools/Lib/fontTools/ttLib/tables/
H A D_p_o_s_t.py257 strings = []
262 strings.append(tostr(data[index+1:index+1+length], encoding="latin1"))
264 return strings
267 def packPStrings(strings):
269 for s in strings:
/external/fonttools/Tools/fontTools/ttLib/tables/
H A D_p_o_s_t.py257 strings = []
262 strings.append(tostr(data[index+1:index+1+length], encoding="latin1"))
264 return strings
267 def packPStrings(strings):
269 for s in strings:
/external/srec/seti/sltsEngine/src/
H A Drun_seq_lts.c141 void* my_PHashTableCreate_FromStrings( const char* strings[], int num_strings, argument
156 rc = PHashTableGetValue( table, strings[i], (void**)&old);
158 rc = PHashTablePutValue( table, strings[i], (const void *)(intptr_t) i, NULL );
763 char ** strings; local
768 lts->strings = strings = (char **) lts_alloc(num, sizeof(char*));
771 if (strings == NULL || lts->string_lens == NULL ) {
779 str = strings[i] = lts_alloc(len + 1, sizeof(char));
790 bitarray_populate_from_list( lts->membership, lts->strings[i], len);
791 lts->string_lens[i] = strlen(lts->strings[
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/
H A DJSHeapSnapshot.js428 this._statistics.strings = sizeStrings;
441 var strings = this.strings;
451 var edgeName = strings[containmentEdges[edgeIndex + edgeNameOffset]];
529 var strings = snapshot.strings; variable
543 name += strings[nodes[nodeIndex + nodeNameOffset]];
554 var edgeName = strings[edges[edgeIndex + edgeNameOffset]];
795 return this._hasStringName() ? this._snapshot.strings[this._nameOrIndex()] : this._nameOrIndex();
H A DAllocationProfile.js36 this._strings = profile.strings;
54 var strings = this._strings;
71 strings[rawInfos[i + functionNameOffset]],
72 strings[rawInfos[i + scriptNameOffset]],
/external/chromium_org/mojo/android/javatests/src/org/chromium/mojo/bindings/
H A DBindingsTest.java76 String[][][] strings = new String[3][2][1];
77 for (int i0 = 0; i0 < strings.length; ++i0) {
78 for (int i1 = 0; i1 < strings[i0].length; ++i1) {
79 for (int i2 = 0; i2 < strings[i0][i1].length; ++i2) {
80 strings[i0][i1][i2] = "Hello(" + i0 + ", " + i1 + ", " + i2 + ")";
84 foo.multiArrayOfStrings = strings;
/external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
H A DUtil.java126 static String joinAndSkipNulls(String separator, String... strings) { argument
128 for (String s : strings) {
/external/chromium_org/tools/grit/grit/format/policy_templates/writers/
H A Dadm_writer_unittest.py22 def ConstructOutput(self, classes, body, strings):
27 result.append(strings)
38 AssertionError: if the two strings are not equivalent.
/external/dhcpcd/mk/
H A Dcc.mk14 -Wmissing-declarations -Wno-missing-prototypes -Wwrite-strings \
/external/llvm/
H A Dllvm-host-build.mk15 -Wwrite-strings \
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DDiskLruCache.java896 private void setLengths(String[] strings) throws IOException { argument
897 if (strings.length != valueCount) {
898 throw invalidLengths(strings);
902 for (int i = 0; i < strings.length; i++) {
903 lengths[i] = Long.parseLong(strings[i]);
906 throw invalidLengths(strings);
910 private IOException invalidLengths(String[] strings) throws IOException { argument
911 throw new IOException("unexpected journal line: " + java.util.Arrays.toString(strings));
/external/qemu/android/base/
H A DString.h76 // Assign new values to strings.
185 // Internal helper routine to be used when |count| strings objects
194 // Move |count| strings from |strings + from| to |strings + to|
197 static void moveSlice(String* strings,
202 // Finalize |count| String instances from |strings|.
204 static void finalizeSlice(String* strings, size_t count);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowArrayAdapter.java179 CharSequence[] strings = context.getResources().getTextArray(textArrayResId);
180 return new ArrayAdapter<CharSequence>(context, textViewResId, strings);
/external/chromium_org/chrome/browser/ssl/
H A Dssl_blocking_page.h12 #include "base/strings/string16.h"
76 // A method that sets strings in the specified dictionary from the passed
79 // Note: there can be up to 5 strings in |extra_info|.
80 static void SetExtraInfo(base::DictionaryValue* strings,
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_cache_listener.h9 #include "base/strings/string16.h"
84 const std::vector<std::string>& strings,
H A Dservice_worker_cache_listener.cc9 #include "base/strings/utf_string_conversions.h"
260 const std::vector<std::string>& strings,
269 for (size_t i = 0, max = strings.size(); i < max; ++i) {
270 string16s.push_back(base::UTF8ToUTF16(strings[i]));
258 OnCacheStorageKeysCallback( int request_id, const std::vector<std::string>& strings, ServiceWorkerCacheStorage::CacheStorageError error) argument
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dcolldata.h174 * @return the number of strings in the list.
179 UnicodeString *strings; member in class:StringList
231 * Get a list of all the strings which generate a list
238 * no such strings.
H A Dthcoll.cpp361 UChar strings[LINES][20]; local
379 len = u_unescape(tests[i], strings[i], 20);
380 strings[i][len] = 0;
381 toSort[i] = strings[i];
393 errln("Inconsistent ordering between strings %i and %i", i, j);
/external/chromium_org/third_party/smhasher/src/
H A DPlatform.h89 #include <strings.h>
/external/icu/icu4c/source/test/intltest/
H A Dcolldata.h174 * @return the number of strings in the list.
179 UnicodeString *strings; member in class:StringList
231 * Get a list of all the strings which generate a list
238 * no such strings.
H A Dthcoll.cpp362 UChar strings[LINES][20]; local
380 len = u_unescape(tests[i], strings[i], 20);
381 strings[i][len] = 0;
382 toSort[i] = strings[i];
394 errln("Inconsistent ordering between strings %i and %i", i, j);
/external/chromium_org/chrome/common/media_galleries/
H A Dpmp_test_util.cc12 #include "base/strings/utf_string_conversions.h"
33 std::vector<char> Flatten(const std::vector<std::string>& strings) { argument
36 for (std::vector<std::string>::const_iterator it = strings.begin();
37 it != strings.end(); ++it) {
/external/chromium_org/mojo/services/view_manager/
H A Dtest_change_tracker.cc7 #include "base/strings/string_util.h"
8 #include "base/strings/stringprintf.h"
88 std::vector<std::string> strings(changes.size());
90 strings[i] = ChangeToDescription1(changes[i]);
91 return strings;
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dtools_common.sh203 # Filters strings from $1 using the filter specified by $2. Filter behavior
204 # depends on the presence of $3. When $3 is present, strings that match the
205 # filter are excluded. When $3 is omitted, strings matching the filter are
209 strings=${1}
214 # When positional parameter three exists the caller wants to remove strings.
222 for s in ${strings}; do
228 filtered_strings="${strings}"
310 # strings.

Completed in 1947 milliseconds

<<11121314151617181920>>