HomeSort by relevance Sort by last modified time
    Searched full:strings (Results 226 - 250 of 14506) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/sync/
about_sync_util_unittest.cc 5 #include "base/strings/utf_string_conversions.h"
44 scoped_ptr<DictionaryValue> strings(ConstructAboutInformation(&service));
46 EXPECT_TRUE(strings->HasKey("unrecoverable_error_detected"));
  /external/chromium_org/chrome/common/extensions/permissions/
bluetooth_permission.cc 10 #include "base/strings/string16.h"
11 #include "base/strings/string_util.h"
12 #include "base/strings/utf_string_conversions.h"
  /external/chromium_org/chrome_frame/
registry_list_preferences_holder.h 6 // the form of lists of strings.
17 #include "base/strings/string16.h"
31 // Returns true iff |string| matches any of the strings in values_, using the
  /external/chromium_org/content/browser/renderer_host/media/
web_contents_capture_util.cc 8 #include "base/strings/string_number_conversions.h"
9 #include "base/strings/string_piece.h"
10 #include "base/strings/string_util.h"
  /external/chromium_org/third_party/freetype/src/sfnt/
ttbdf.c 55 bdf->strings = NULL;
87 FT_ULong strings = FT_NEXT_ULONG ( p ); local
93 strings < 8 ||
94 ( strings - 8 ) / 4 < num_strikes ||
95 strings + 1 > length )
101 bdf->strings = bdf->table + strings;
102 bdf->strings_size = length - strings;
122 if ( strike > bdf->strings )
205 (const char*)bdf->strings + name_offset
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/m4/
printf-posix.m4 8 dnl Test whether the printf() function supports POSIX/XSI format strings with
14 AC_CACHE_CHECK([whether printf() supports POSIX/XSI format strings],
41 [Define if your printf() function supports format strings with positions.])
  /external/chromium_org/ui/accessibility/
ax_node_data.cc 10 #include "base/strings/string_number_conversions.h"
11 #include "base/strings/string_util.h"
12 #include "base/strings/utf_string_conversions.h"
  /external/freetype/src/sfnt/
ttbdf.c 55 bdf->strings = NULL;
87 FT_ULong strings = FT_NEXT_ULONG ( p ); local
93 strings < 8 ||
94 ( strings - 8 ) / 4 < num_strikes ||
95 strings + 1 > length )
101 bdf->strings = bdf->table + strings;
102 bdf->strings_size = length - strings;
122 if ( strike > bdf->strings )
205 (const char*)bdf->strings + name_offset
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
TestStringQueueGenerator.java 19 import com.google.common.collect.testing.SampleElements.Strings;
25 * Create queue of strings for tests.
36 return new Strings();
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
SortedMapGenerators.java 77 return new SampleElements.Strings();
104 super(new SampleElements.Strings(), new SampleElements.Strings());
110 builder.put(SampleElements.Strings.BEFORE_FIRST, "begin");
111 builder.put(SampleElements.Strings.AFTER_LAST, "end");
116 return builder.build().subMap(SampleElements.Strings.MIN_ELEMENT,
117 SampleElements.Strings.AFTER_LAST).entrySet();
130 builder.put(SampleElements.Strings.AFTER_LAST, -1);
135 SampleElements.Strings.AFTER_LAST).keySet();
148 return new SampleElements.Strings();
    [all...]
  /external/smack/src/org/xbill/DNS/
Mnemonic.java 24 /* Strings are case-sensitive. */
27 /* Strings will be stored/searched for in uppercase. */
30 /* Strings will be stored/searched for in lowercase. */
33 private HashMap strings; field in class:Mnemonic
44 * @param wordcase Whether to convert strings into uppercase, lowercase,
52 strings = new HashMap();
73 * Sets whether numeric values stored in strings are acceptable.
133 strings.put(str, value);
148 strings.put(str, value);
163 strings.putAll(source.strings)
    [all...]
  /ndk/sources/host-tools/make-3.81/config/
printf-posix.m4 10 dnl Test whether the printf() function supports POSIX/XSI format strings with
16 AC_CACHE_CHECK([whether printf() supports POSIX/XSI format strings],
43 [Define if your printf() function supports format strings with positions.])
  /external/chromium_org/third_party/icu/source/common/
common.vcxproj.filters 47 <Filter Include="strings">
446 <Filter>strings</Filter>
449 <Filter>strings</Filter>
452 <Filter>strings</Filter>
455 <Filter>strings</Filter>
458 <Filter>strings</Filter>
461 <Filter>strings</Filter>
464 <Filter>strings</Filter>
467 <Filter>strings</Filter>
470 <Filter>strings</Filter>
    [all...]
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_org/chrome/browser/ui/webui/
welcome_ui_android.cc 9 #include "base/strings/string16.h"
10 #include "base/strings/stringprintf.h"
11 #include "base/strings/utf_string_conversions.h"
38 // Localized strings.
67 html_source->SetJsonPath("strings.js");
  /external/chromium_org/native_client_sdk/src/libraries/xray/
stringpool.c 8 /* String pool holds a large pile of strings. */
23 char strings[XRAY_STRING_POOL_NODE_SIZE]; member in struct:XRayStringPoolNode
50 /* Add +1 to STRING_POOL_NODE_SIZE to detect large strings */
55 /* Don't accept strings larger than the pool node. */
65 dst = &pool->current->strings[pool->index];
  /external/stlport/test/unit/
istmit_test.cpp 101 vector<string> strings; local
109 copy_n(istream_string_ite(istr), 2, back_inserter(strings));
110 CPPUNIT_ASSERT( strings.size() == 2 );
111 CPPUNIT_ASSERT( strings[0] == "AA" );
112 CPPUNIT_ASSERT( strings[1] == "BB" );
113 strings.clear();
123 * again it fails as int can be converted to strings.
130 copy_n(istream_string_ite(istr), 2, back_inserter(strings));
131 CPPUNIT_ASSERT( strings.size() == 2 );
132 CPPUNIT_ASSERT( strings[0] == "CC" )
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
istmit_test.cpp 101 vector<string> strings; local
109 copy_n(istream_string_ite(istr), 2, back_inserter(strings));
110 CPPUNIT_ASSERT( strings.size() == 2 );
111 CPPUNIT_ASSERT( strings[0] == "AA" );
112 CPPUNIT_ASSERT( strings[1] == "BB" );
113 strings.clear();
123 * again it fails as int can be converted to strings.
130 copy_n(istream_string_ite(istr), 2, back_inserter(strings));
131 CPPUNIT_ASSERT( strings.size() == 2 );
132 CPPUNIT_ASSERT( strings[0] == "CC" )
    [all...]
  /ndk/tests/device/test-stlport/unit/
istmit_test.cpp 101 vector<string> strings; local
109 copy_n(istream_string_ite(istr), 2, back_inserter(strings));
110 CPPUNIT_ASSERT( strings.size() == 2 );
111 CPPUNIT_ASSERT( strings[0] == "AA" );
112 CPPUNIT_ASSERT( strings[1] == "BB" );
113 strings.clear();
123 * again it fails as int can be converted to strings.
130 copy_n(istream_string_ite(istr), 2, back_inserter(strings));
131 CPPUNIT_ASSERT( strings.size() == 2 );
132 CPPUNIT_ASSERT( strings[0] == "CC" )
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/infobars/
after_translate_infobar_gtk.cc 9 #include "base/strings/utf_string_conversions.h"
34 std::vector<base::string16> strings; local
36 &strings, &swapped_language_combos, autodetermined_source_language);
37 DCHECK_EQ(autodetermined_source_language ? 2U : 3U, strings.size());
62 gtk_box_pack_start(GTK_BOX(new_hbox), CreateLabel(UTF16ToUTF8(strings[0])),
69 gtk_box_pack_start(GTK_BOX(new_hbox), CreateLabel(UTF16ToUTF8(strings[1])),
76 gtk_box_pack_start(GTK_BOX(new_hbox), CreateLabel(UTF16ToUTF8(strings[2])),
  /external/chromium_org/chrome/renderer/net/
predictor_queue.h 6 // strings that don't have embedded nulls ('\0'). The "almost" element is that
7 // some duplicate strings may be removed (i.e., the string won't really be
10 // The buffers internal format is null terminated character strings
41 // strings of considerably shorter length. Note that strings
43 // so if you are trying to be precise and get N strings of
81 // Number of queued strings
  /external/chromium_org/content/browser/webui/
web_ui_data_source_unittest.cc 7 #include "base/strings/utf_string_conversions.h"
93 source()->SetJsonPath("strings.js");
94 StartDataRequest("strings.js");
102 source()->SetJsonPath("strings.js");
105 StartDataRequest("strings.js");
119 StartDataRequest("strings.js");
134 StartDataRequest("strings.js");
  /external/chromium_org/third_party/sqlite/src/test/
vtab5.test 81 CREATE TABLE strings(str COLLATE NOCASE);
82 INSERT INTO strings VALUES('abc1');
83 INSERT INTO strings VALUES('Abc3');
84 INSERT INTO strings VALUES('ABc2');
85 INSERT INTO strings VALUES('aBc4');
86 SELECT str FROM strings ORDER BY 1;
91 CREATE VIRTUAL TABLE echo_strings USING echo(strings);
  /external/proguard/src/proguard/classfile/util/
StringSharer.java 31 * This ClassVisitor shares strings in the class files that it visits.
50 // Replace name strings in the constant pool by shared strings.
53 // Replace attribute name strings in the constant pool by internalized
54 // strings.
97 // Put the actual class member's name and type strings in the class
110 // Put the actual class member's name and type strings in the class
  /libcore/luni/src/main/java/java/text/
CollationKey.java 23 * the strings they represent.
31 * {@code Collator.compare(String, String)} compares two strings and returns
41 * are fast. This approach is recommended when the same strings are to be
45 * {@code Collator.compare(String, String)} can examine and process the strings
47 * recommended if the strings are to be compared only once.
50 * list of strings:
54 * // Create an array of CollationKeys for the Strings to be sorted.

Completed in 1011 milliseconds

1 2 3 4 5 6 7 8 91011>>