Searched defs:type_string (Results 1 - 10 of 10) sorted by relevance

/external/chromium/chrome/browser/bookmarks/
H A Dbookmark_codec.cc231 std::string type_string; local
232 if (!value.GetString(kTypeKey, &type_string))
235 if (type_string != kTypeURL && type_string != kTypeFolder)
238 if (type_string == kTypeURL) {
H A Dbookmark_html_writer.cc230 std::string title, date_added_string, type_string; local
233 !value.GetString(BookmarkCodec::kTypeKey, &type_string) ||
234 (type_string != BookmarkCodec::kTypeURL &&
235 type_string != BookmarkCodec::kTypeFolder)) {
240 if (type_string == BookmarkCodec::kTypeURL) {
/external/chromium/chrome/browser/extensions/
H A Dextension_context_menu_api.cc89 std::string type_string; local
90 if (!properties.GetString(kTypeKey, &type_string))
93 if (type_string == "normal") {
95 } else if (type_string == "checkbox") {
97 } else if (type_string == "radio") {
99 } else if (type_string == "separator") {
103 type_string);
/external/chromium/chrome/browser/ui/views/
H A Dselect_file_dialog.cc388 std::string type_string; local
391 type_string = "folder";
394 type_string = "open";
397 type_string = "open_multiple";
400 type_string = "save";
451 type_string.c_str(),
/external/chromium/chrome/browser/ui/webui/options/
H A Dcontent_settings_handler.cc468 StringValue type_string(
471 type_string, exceptions);
495 StringValue type_string(
498 type_string, exceptions);
515 StringValue type_string(ContentSettingsTypeToGroupName(type));
516 web_ui_->CallJavascriptFunction("ContentSettings.setExceptions", type_string,
541 StringValue type_string(ContentSettingsTypeToGroupName(type));
543 type_string, otr_exceptions);
596 std::string type_string; local
597 CHECK(args->GetString(arg_i++, &type_string));
654 std::string type_string; local
[all...]
/external/chromium/chrome/browser/
H A Denumerate_modules_model_win.cc811 string16 type_string; local
815 type_string = ASCIIToWide("Shell Extension");
817 if (!type_string.empty())
818 type_string += ASCIIToWide(", ");
819 type_string += ASCIIToWide("Winsock");
822 DCHECK(!type_string.empty());
824 type_string += ASCIIToWide(" -- ");
825 type_string += l10n_util::GetStringUTF16(IDS_CONFLICTS_NOT_LOADED_YET);
828 data->SetString("type_description", type_string);
/external/chromium/third_party/libjingle/source/talk/p2p/base/
H A Dsessionmessages.cc163 std::string type_string = session->Attr(buzz::QN_TYPE); local
164 msg->type = ToActionType(type_string);
170 return BadParse("unknown action: " + type_string, error);
179 std::string type_string = jingle->Attr(buzz::QN_ACTION); local
180 msg->type = ToActionType(type_string);
192 return BadParse("unknown action: " + type_string, error);
/external/v8/test/cctest/
H A Dtest-parsing.cc1069 i::String* type_string = NULL; local
1080 CHECK(maybe_object->To(&type_string));
1100 *source->ToCString(), *type_string->ToCString());
1106 if (!type_string->IsEqualTo(i::CStrVector(data.BuildMessage()))) {
1113 *source->ToCString(), *type_string->ToCString(), data.BuildMessage());
/external/v8/src/
H A Dparser.cc1770 Handle<String> type_string = local
1774 type_string, name);
/external/chromium/chrome/browser/chromeos/cros/
H A Dnetwork_library.cc636 std::string type_string; local
637 info->GetString(kTypeProperty, &type_string);
638 return ParseType(type_string);
905 std::string type_string; local
906 if (value->GetAsString(&type_string)) {
907 type_ = ParseType(type_string);
1035 std::string type_string; local
1036 if (value->GetAsString(&type_string)) {
1037 ConnectionType type = ParseType(type_string);

Completed in 289 milliseconds