HomeSort by relevance Sort by last modified time
    Searched defs:type_string (Results 1 - 19 of 19) sorted by null

  /external/chromium_org/chrome/browser/sync_file_system/
file_change.cc 29 const char* type_string = "UNKNOWN"; local
32 type_string = "FILE";
35 type_string = "DIRECTORY";
38 type_string = "UNKNOWN";
41 return base::StringPrintf("%s:%s", change_string, type_string);
  /external/chromium_org/extensions/renderer/
file_system_natives.cc 75 std::string type_string = *v8::String::Utf8Value(args[0]->ToString()); local
77 bool is_valid_type = fileapi::GetFileSystemPublicType(type_string, &type);
  /external/chromium_org/chromeos/network/
network_ui_data.cc 94 std::string type_string; local
95 dict.GetString(kKeyCertificateType, &type_string);
97 StringToEnum(kClientCertTable, type_string, CLIENT_CERT_TYPE_NONE);
135 std::string type_string = EnumToString(kClientCertTable, certificate_type_); local
136 dict->SetString(kKeyCertificateType, type_string);
  /external/chromium_org/content/browser/quota/
quota_backend_impl_unittest.cc 122 std::string type_string = local
126 origin, type_string, true /* create */, &error);
  /external/chromium_org/webkit/common/fileapi/
file_system_util.cc 242 std::string type_string = GetFileSystemTypeString(type); local
243 DCHECK(!type_string.empty());
244 return origin_identifier + ":" + type_string;
381 const std::string type_string,
384 if (type_string == "Temporary") {
388 if (type_string == "Persistent") {
392 if (type_string == "Isolated") {
396 if (type_string == "External") {
  /external/chromium_org/chrome/browser/bookmarks/
bookmark_html_writer.cc 246 std::string title, date_added_string, type_string; local
249 !value.GetString(BookmarkCodec::kTypeKey, &type_string) ||
250 (type_string != BookmarkCodec::kTypeURL &&
251 type_string != BookmarkCodec::kTypeFolder)) {
256 if (type_string == BookmarkCodec::kTypeURL) {
  /external/chromium_org/chrome/browser/chromeos/policy/
device_status_collector.cc 391 const char* type_string; member in struct:__anon7937
410 if ((*device)->type() == kDeviceTypeMap[type_idx].type_string)
  /external/chromium_org/components/autofill/content/browser/wallet/
wallet_items.cc 47 TypeFromString(const std::string& type_string) {
48 if (type_string == "VISA")
50 if (type_string == "MASTER_CARD")
52 if (type_string == "AMEX")
54 if (type_string == "DISCOVER")
56 if (type_string == "SOLO")
58 if (type_string == "MAESTRO")
60 if (type_string == "SWITCH")
128 std::string type_string; local
130 if (dictionary.GetString("type", &type_string)) {
    [all...]
  /external/chromium_org/components/bookmarks/browser/
bookmark_codec.cc 176 if (checksum_value->GetType() != base::Value::TYPE_STRING)
298 std::string type_string; local
299 if (!value.GetString(kTypeKey, &type_string))
302 if (type_string != kTypeURL && type_string != kTypeFolder)
305 if (type_string == kTypeURL) {
390 if (meta_info->IsType(base::Value::TYPE_STRING)) {
432 } else if (it.value().IsType(base::Value::TYPE_STRING)) {
  /external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
gl_XML.py 318 list.append( p.type_string() )
513 def type_string(self): member in class:gl_parameter
  /external/mesa3d/src/mapi/glapi/gen/
gl_XML.py 318 list.append( p.type_string() )
513 def type_string(self): member in class:gl_parameter
  /external/chromium_org/chrome/browser/
enumerate_modules_model_win.cc 870 base::string16 type_string; local
874 type_string = base::ASCIIToWide("Shell Extension");
876 if (!type_string.empty())
877 type_string += base::ASCIIToWide(", ");
878 type_string += base::ASCIIToWide("Winsock");
881 DCHECK(!type_string.empty());
883 type_string += base::ASCIIToWide(" -- ")
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
sessionmessages.cc 157 std::string type_string = session->Attr(buzz::QN_TYPE); local
158 msg->type = ToActionType(type_string);
164 return BadParse("unknown action: " + type_string, error);
173 std::string type_string = jingle->Attr(buzz::QN_ACTION); local
174 msg->type = ToActionType(type_string);
180 return BadParse("unknown action: " + type_string, error);
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/options/
content_settings_handler.cc 1372 std::string type_string; local
1398 std::string type_string; local
1433 std::string type_string; local
    [all...]
  /external/chromium_org/components/policy/core/common/
schema.cc 64 bool SchemaTypeToValueType(const std::string& type_string,
77 { schema::kString, base::Value::TYPE_STRING },
80 if (kSchemaToValueTypeMap[i].schema_type == type_string) {
364 std::string type_string; local
366 if (!schema.GetString(schema::kType, &type_string) ||
367 !SchemaTypeToValueType(type_string, &type)) {
412 } else if (type == base::Value::TYPE_STRING) {
421 } else if (type == base::Value::TYPE_STRING) {
446 std::string type_string; local
447 if (!schema.GetString(schema::kType, &type_string)) {
    [all...]
  /external/chromium_org/webkit/browser/fileapi/
obfuscated_file_util.cc 234 virtual bool HasTypeDirectory(const std::string& type_string) const OVERRIDE {
237 if (type_string.empty()) {
242 base_file_path_.Append(current_.path).AppendASCII(type_string);
834 const std::string& type_string,
840 if (type_string.empty())
842 base::FilePath path = origin_dir.AppendASCII(type_string);
858 const std::string& type_string) {
861 origin, type_string, false, &error);
870 if (!type_string.empty())
871 DestroyDirectoryDatabase(origin, type_string);
955 const std::string type_string = type_strings_to_prepopulate[i]; local
    [all...]
  /external/chromium_org/content/browser/fileapi/
obfuscated_file_util_unittest.cc 256 std::string type_string() const { function in class:content::ObfuscatedFileUtilTest
    [all...]
  /external/chromium_org/v8/src/
hydrogen-instructions.cc 1347 String* type_string = TypeOfString(constant, isolate()); local
    [all...]
  /dalvik/dx/etc/
jasmin.jar 

Completed in 1076 milliseconds