Searched defs:strings (Results 51 - 75 of 237) sorted by relevance

12345678910

/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DAsyncTaskTest.java83 @Override protected String doInBackground(String... strings) {
128 @Override protected String doInBackground(String... strings) { argument
129 transcript.add("doInBackground " + Join.join(", ", (Object[]) strings));
/external/skia/src/animator/
H A DSkGetCondensedInfo.cpp22 static int _searchByName(const unsigned char* lengths, int count, const char* strings, const char target[]) { argument
27 if (strcmp(&strings[lengths[mid << 2]], target) < 0)
32 if (strcmp(&strings[lengths[hi << 2]], target) != 0)
83 const char* strings = gInfoNames[lookup]; local
84 int index = _searchByName(&info->fName, count, strings, match);
/external/smack/src/org/xbill/DNS/
H A DTXTBase.java10 * is a list of strings.
19 protected List strings; field in class:TXTBase
30 TXTBase(Name name, int type, int dclass, long ttl, List strings) { argument
32 if (strings == null)
33 throw new IllegalArgumentException("strings must not be null");
34 this.strings = new ArrayList(strings.size());
35 Iterator it = strings.iterator();
39 this.strings.add(byteArrayFromString(s));
54 strings
[all...]
H A DMnemonic.java33 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);
192 Integer value = (Integer) strings.get(str);
/external/chromium/chrome/browser/chromeos/offline/
H A Doffline_load_page.cc40 void SetString(DictionaryValue* strings, const char* name, int resource_id) { argument
41 strings->SetString(name, l10n_util::GetStringUTF16(resource_id));
79 DictionaryValue strings; local
85 strings.SetInteger("time_to_wait", static_cast<int>(time_to_wait));
87 SetString(&strings, "heading", IDS_OFFLINE_LOAD_HEADLINE);
88 SetString(&strings, "try_loading", IDS_OFFLINE_TRY_LOADING);
89 SetString(&strings, "network_settings", IDS_OFFLINE_NETWORK_SETTINGS);
92 strings.SetBoolean("show_activation", ShowActivationMessage());
95 strings.SetString("textdirection", rtl ? "rtl" : "ltr");
100 strings
[all...]
/external/chromium/chrome/browser/ssl/
H A Dssl_blocking_page.cc66 DictionaryValue strings; local
68 strings.SetString("headLine", error_info.title());
69 strings.SetString("description", error_info.details());
71 strings.SetString("moreInfoTitle",
73 SetExtraInfo(&strings, error_info.extra_information());
78 strings.SetString("title",
80 strings.SetString("proceed",
82 strings.SetString("exit",
87 strings.SetString("title",
89 strings
156 SetExtraInfo( DictionaryValue* strings, const std::vector<string16>& extra_info) argument
[all...]
/external/chromium/chrome/browser/ui/views/infobars/
H A Dafter_translate_infobar.cc89 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]);
/external/chromium/chrome/browser/ui/webui/chromeos/
H A Dsystem_info_ui.cc110 DictionaryValue strings; local
111 strings.SetString("title", l10n_util::GetStringUTF16(IDS_ABOUT_SYS_TITLE));
112 strings.SetString("description",
114 strings.SetString("table_title",
116 strings.SetString("expand_all_btn",
118 strings.SetString("collapse_all_btn",
120 strings.SetString("expand_btn",
122 strings.SetString("collapse_btn",
124 SetFontAndTextDirection(&strings);
128 strings
[all...]
/external/chromium_org/base/strings/
H A Dsafe_sprintf.h23 namespace strings { namespace in namespace:base
74 // There are a few features of snprintf()-style format strings, that
109 // base::strings::SafeSPrintf(buf, "The answer: %2d", 42);
414 } // namespace strings
/external/chromium_org/chrome/browser/managed_mode/
H A Dmanaged_mode_interstitial.cc10 #include "base/strings/utf_string_conversions.h"
103 DictionaryValue strings; local
104 strings.SetString("blockPageTitle",
113 strings.SetBoolean("allowAccessRequests", allow_access_requests);
117 strings.SetString(
125 strings.SetString("backButton", l10n_util::GetStringUTF16(IDS_BACK_BUTTON));
126 strings.SetString(
130 strings.SetString(
135 webui::SetFontAndTextDirection(&strings);
141 return webui::GetI18nTemplateHtml(html, &strings);
[all...]
/external/chromium_org/chrome/browser/ui/webui/chromeos/
H A Dsystem_info_ui.cc14 #include "base/strings/string_piece.h"
15 #include "base/strings/string_util.h"
16 #include "base/strings/utf_string_conversions.h"
126 DictionaryValue strings; local
127 strings.SetString("title", l10n_util::GetStringUTF16(IDS_ABOUT_SYS_TITLE));
128 strings.SetString("description",
130 strings.SetString("tableTitle",
132 strings.SetString(
135 strings.SetString("expandAllBtn",
137 strings
[all...]
/external/chromium_org/chromeos/network/
H A Dcertificate_pattern.cc41 const std::vector<std::string>& strings) {
43 for (std::vector<std::string>::const_iterator iter = strings.begin();
44 iter != strings.end(); ++iter) {
40 CreateListFromStrings( const std::vector<std::string>& strings) argument
/external/chromium_org/content/browser/speech/
H A Dspeech_recognizer_impl_android.cc12 #include "base/strings/utf_string_conversions.h"
147 jobjectArray strings, jfloatArray floats, jboolean provisional) {
150 AppendJavaStringArrayToStringVector(env, strings, &options);
146 OnRecognitionResults(JNIEnv* env, jobject obj, jobjectArray strings, jfloatArray floats, jboolean provisional) argument
/external/chromium_org/dbus/
H A Dmessage_unittest.cc239 std::vector<std::string> strings; local
240 strings.push_back("fee");
241 strings.push_back("fie");
242 strings.push_back("foe");
243 strings.push_back("fum");
244 writer.AppendArrayOfStrings(strings);
299 writer.OpenArray("s", &array_writer); // Open an array of strings.
/external/chromium_org/third_party/icu/source/common/unicode/
H A Duniset.h33 * A mutable set of Unicode characters and multicharacter strings. Objects of this class
99 * <td valign="top">The character 'a' and the multicharacter strings &quot;ab&quot; and
292 UVector* strings; // maintained in sorted order member in class:UnicodeSet
727 * codepoints and strings.
771 * Returns true if this set contains all the characters and strings
799 * Returns true if this set contains none of the characters and strings
828 * and strings of the given set.
846 * consists only of characters and strings that are contained in this set
848 * or only of characters and strings that are not contained
880 * consists only of characters and strings tha
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Dunisetspan.h26 * 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/chromium_org/third_party/openssl/openssl/crypto/ui/
H A Dui_locl.h142 STACK_OF(UI_STRING) *strings; /* We might want to prompt for more member in struct:ui_st
/external/chromium_org/third_party/skia/include/utils/
H A DSkJSON.h248 const char* const* strings() const { function in class:SkJSON::Array
/external/chromium_org/ui/base/l10n/
H A Dl10n_util_unittest.cc18 #include "base/strings/string_util.h"
19 #include "base/strings/utf_string_conversions.h"
55 // TODO(beng): disabled until app strings move to app.
306 std::vector<StringWrapper*> strings; local
307 strings.push_back(new StringWrapper(UTF8ToUTF16("C")));
308 strings.push_back(new StringWrapper(UTF8ToUTF16("d")));
309 strings.push_back(new StringWrapper(UTF8ToUTF16("b")));
310 strings.push_back(new StringWrapper(UTF8ToUTF16("a")));
312 &strings,
314 ASSERT_TRUE(UTF8ToUTF16("a") == strings[
[all...]
/external/dropbear/
H A Dcompat.c86 static char **curshell, **shells, *strings; variable
222 if (strings != NULL)
223 free(strings);
224 strings = NULL;
243 if (strings != NULL)
244 free(strings);
245 strings = NULL;
252 if ((strings = malloc((u_int)statb.st_size + 1)) == NULL) {
259 free(strings);
260 strings
[all...]
/external/icu4c/common/unicode/
H A Duniset.h34 * A mutable set of Unicode characters and multicharacter strings. Objects of this class
100 * <td valign="top">The character 'a' and the multicharacter strings &quot;ab&quot; and
293 UVector* strings; // maintained in sorted order member in class:UnicodeSet
732 * codepoints and strings.
776 * Returns true if this set contains all the characters and strings
804 * Returns true if this set contains none of the characters and strings
833 * and strings of the given set.
851 * consists only of characters and strings that are contained in this set
853 * or only of characters and strings that are not contained
885 * consists only of characters and strings tha
[all...]
/external/icu4c/common/
H A Dunisetspan.h26 * 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/lzma/CPP/7zip/UI/Common/
H A DUpdatePair.cpp55 static void TestDuplicateString(const UStringVector &strings, const CIntVector &indices) argument
58 if (CompareFileNames(strings[indices[i]], strings[indices[i + 1]]) == 0)
59 ThrowError(kDuplicateFileNameMessage, strings[indices[i]], strings[indices[i + 1]]);
/external/openssl/crypto/ui/
H A Dui_locl.h142 STACK_OF(UI_STRING) *strings; /* We might want to prompt for more member in struct:ui_st
/external/skia/include/utils/
H A DSkJSON.h248 const char* const* strings() const { function in class:SkJSON::Array

Completed in 527 milliseconds

12345678910