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

/external/chromium_org/chrome/browser/sync_file_system/
H A Dfile_change.cc29 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/
H A Dfile_system_natives.cc75 std::string type_string = *v8::String::Utf8Value(args[0]->ToString()); local
77 bool is_valid_type = storage::GetFileSystemPublicType(type_string, &type);
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dfile_change.cc29 const char* type_string = "UNKNOWN"; local
32 type_string = "FILE";
35 type_string = "DIRECTORY";
41 return base::StringPrintf("%s:%s", change_string, type_string);
/external/chromium_org/chromeos/network/
H A Dnetwork_ui_data.cc81 std::string type_string; local
/external/chromium_org/content/browser/quota/
H A Dquota_backend_impl_unittest.cc121 std::string type_string = local
125 origin, type_string, true /* create */, &error);
/external/chromium_org/sandbox/win/src/
H A Dhandle_table.cc164 bool HandleTable::HandleEntry::IsType(const base::string16& type_string) { argument
168 return type_string.compare(0,
/external/chromium_org/components/autofill/content/browser/wallet/
H A Dwallet_items.cc47 TypeFromString(const std::string& type_string) { argument
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/storage/common/fileapi/
H A Dfile_system_util.cc241 std::string type_string = GetFileSystemTypeString(type); local
242 DCHECK(!type_string.empty());
243 return origin_identifier + ":" + type_string;
380 const std::string type_string,
383 if (type_string == "Temporary") {
387 if (type_string == "Persistent") {
391 if (type_string == "Isolated") {
395 if (type_string == "External") {
379 GetFileSystemPublicType( const std::string type_string, blink::WebFileSystemType* type) argument
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
H A Dgl_XML.py318 list.append( p.type_string() )
513 def type_string(self): member in class:gl_parameter
/external/mesa3d/src/mapi/glapi/gen/
H A Dgl_XML.py318 list.append( p.type_string() )
513 def type_string(self): member in class:gl_parameter
/external/chromium_org/chrome/browser/bookmarks/
H A Dbookmark_html_writer.cc247 std::string title, date_added_string, type_string; local
250 !value.GetString(BookmarkCodec::kTypeKey, &type_string) ||
251 (type_string != BookmarkCodec::kTypeURL &&
252 type_string != BookmarkCodec::kTypeFolder)) {
257 if (type_string == BookmarkCodec::kTypeURL) {
/external/chromium_org/chrome/browser/chromeos/policy/
H A Ddevice_status_collector.cc388 const char* type_string; member in struct:__anon3419
407 if ((*device)->type() == kDeviceTypeMap[type_idx].type_string)
/external/chromium_org/chrome/browser/
H A Denumerate_modules_model_win.cc864 base::string16 type_string; local
868 type_string = base::ASCIIToWide("Shell Extension");
870 if (!type_string.empty())
871 type_string += base::ASCIIToWide(", ");
872 type_string += base::ASCIIToWide("Winsock");
875 DCHECK(!type_string.empty());
877 type_string += base::ASCIIToWide(" -- ");
878 type_string += l10n_util::GetStringUTF16(IDS_CONFLICTS_NOT_LOADED_YET);
881 data->SetString("type_description", type_string);
/external/chromium_org/components/bookmarks/browser/
H A Dbookmark_codec.cc298 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) {
/external/chromium_org/chrome/browser/ui/webui/options/
H A Dcontent_settings_handler.cc830 base::StringValue type_string(
833 type_string, exceptions);
869 base::StringValue type_string(
872 type_string, exceptions);
961 base::StringValue type_string(
964 type_string, media_exceptions);
1023 base::StringValue type_string(kZoomContentType);
1025 type_string, zoom_levels_exceptions);
1033 base::StringValue type_string(ContentSettingsTypeToGroupName(type));
1034 web_ui()->CallJavascriptFunction("ContentSettings.setExceptions", type_string,
1321 std::string type_string; local
1340 std::string type_string; local
1375 std::string type_string; local
[all...]
/external/chromium_org/components/policy/core/common/
H A Dschema.cc64 bool SchemaTypeToValueType(const std::string& type_string, argument
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)) {
446 std::string type_string; local
447 if (!schema.GetString(schema::kType, &type_string)) {
453 if (!SchemaTypeToValueType(type_string, &type)) {
454 *error = "Type not supported: " + type_string;
/external/chromium_org/storage/browser/fileapi/
H A Dobfuscated_file_util.cc234 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);
835 const std::string& type_string,
841 if (type_string.empty())
843 base::FilePath path = origin_dir.AppendASCII(type_string);
859 const std::string& type_string) {
862 origin, type_string, false, &error);
871 if (!type_string.empty())
872 DestroyDirectoryDatabase(origin, type_string);
833 GetDirectoryForOriginAndType( const GURL& origin, const std::string& type_string, bool create, base::File::Error* error_code) argument
857 DeleteDirectoryForOriginAndType( const GURL& origin, const std::string& type_string) argument
918 DestroyDirectoryDatabase( const GURL& origin, const std::string& type_string) argument
949 const std::string type_string = type_strings_to_prepopulate[i]; local
1139 GetDirectoryDatabaseKey( const GURL& origin, const std::string& type_string) argument
[all...]
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dsessionmessages.cc157 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);
/external/chromium_org/content/browser/fileapi/
H A Dobfuscated_file_util_unittest.cc254 std::string type_string() const { function in class:content::ObfuscatedFileUtilTest
1727 ofu()->DestroyDirectoryDatabase(origin(), type_string());
1748 ofu()->DestroyDirectoryDatabase(origin(), type_string());
1766 ofu()->DestroyDirectoryDatabase(origin(), type_string());
/external/chromium_org/net/base/
H A Dmime_util.cc93 bool ParseMimeTypeWithoutParameter(const std::string& type_string,
97 bool IsValidTopLevelMimeType(const std::string& type_string) const;
826 const std::string& type_string,
830 base::SplitString(type_string, '/', &components);
843 bool MimeUtil::IsValidTopLevelMimeType(const std::string& type_string) const {
844 std::string lower_type = base::StringToLowerASCII(type_string);
850 return type_string.size() > 2 && StartsWithASCII(type_string, "x-", false);
1139 bool ParseMimeTypeWithoutParameter(const std::string& type_string, argument
1143 type_string, top_level_typ
825 ParseMimeTypeWithoutParameter( const std::string& type_string, std::string* top_level_type, std::string* subtype) const argument
1146 IsValidTopLevelMimeType(const std::string& type_string) argument
[all...]
/external/chromium_org/v8/src/
H A Dhydrogen-instructions.cc1328 String* type_string = TypeOfString(constant, isolate()); local
1329 bool same_type = type_literal_.IsKnownGlobal(type_string);

Completed in 551 milliseconds