HomeSort by relevance Sort by last modified time
    Searched refs:type_string (Results 1 - 25 of 44) sorted by null

1 2

  /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/third_party/mesa/src/src/mapi/glapi/gen/
glX_proto_recv.py 203 t = param.type_string()
276 type_string = param.type_string()
281 print '%s %s const %s = (%s) (%s(pc + %s));' % (indent, type_string, param.name, type_string, cond, offset)
291 print '%s const %s %s = %s;' % (indent, type_string, param.name, location)
296 print '%s %s %s = %s%s;' % (indent, type_string, param.name, cond, location)
298 print '%s %s %s;' % (indent, type_string, param.name)
351 print ' %s = (%s) (pc + %s); break;' % (param.name, param.type_string(), o)
354 print ' %s = (%s) %s( (%s *) (pc + %s), %s ); break;' % (param.name, param.type_string(), swap_func, self.real_types[sub[0]], o, count_name
    [all...]
typeexpr.py 115 def __init__(self, type_string, extra_types = None):
118 if not type_string:
121 self.original_string = type_string
126 # Replace '*' with ' * ' in type_string. Then, split the string
128 tokens = string.split( string.replace( type_string, "*", " * " ) )
  /external/mesa3d/src/mapi/glapi/gen/
glX_proto_recv.py 203 t = param.type_string()
276 type_string = param.type_string()
281 print '%s %s const %s = (%s) (%s(pc + %s));' % (indent, type_string, param.name, type_string, cond, offset)
291 print '%s const %s %s = %s;' % (indent, type_string, param.name, location)
296 print '%s %s %s = %s%s;' % (indent, type_string, param.name, cond, location)
298 print '%s %s %s;' % (indent, type_string, param.name)
351 print ' %s = (%s) (pc + %s); break;' % (param.name, param.type_string(), o)
354 print ' %s = (%s) %s( (%s *) (pc + %s), %s ); break;' % (param.name, param.type_string(), swap_func, self.real_types[sub[0]], o, count_name
    [all...]
typeexpr.py 115 def __init__(self, type_string, extra_types = None):
118 if not type_string:
121 self.original_string = type_string
126 # Replace '*' with ' * ' in type_string. Then, split the string
128 tokens = string.split( string.replace( type_string, "*", " * " ) )
  /external/chromium_org/third_party/WebKit/Source/bindings/scripts/
idl_definitions.py 364 type_string = self.base_type
366 return type_string + '[]'
368 return 'sequence<%s>' % type_string
369 return type_string
372 def from_string(cls, type_string):
374 if type_string.endswith('[]'):
375 type_string = type_string[:-2]
376 sequence_match = re.match(sequence_re, type_string)
379 return cls(type_string, is_array=True
    [all...]
  /external/chromium_org/components/autofill/content/browser/wallet/
wallet_items.cc 44 TypeFromString(const std::string& type_string) {
45 if (type_string == "VISA")
47 if (type_string == "MASTER_CARD")
49 if (type_string == "AMEX")
51 if (type_string == "DISCOVER")
53 if (type_string == "SOLO")
55 if (type_string == "MAESTRO")
57 if (type_string == "SWITCH")
112 std::string type_string; local
114 if (dictionary.GetString("type", &type_string)) {
    [all...]
  /external/chromium/chrome/browser/ui/webui/options/
content_settings_handler.cc 468 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/extensions/
extension_context_menu_api.cc 89 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_org/chrome/common/policy/
policy_schema.cc 57 bool SchemaTypeToValueType(const std::string& type_string,
70 { json_schema_constants::kString, base::Value::TYPE_STRING },
73 if (kSchemaToValueTypeMap[i].schema_type == type_string) {
83 std::string type_string; local
84 if (!schema.GetString(json_schema_constants::kType, &type_string)) {
90 if (!SchemaTypeToValueType(type_string, &type)) {
  /external/chromium_org/chromeos/network/
network_ui_data.cc 91 std::string type_string; local
92 dict.GetString(kKeyCertificateType, &type_string);
94 StringToEnum(kClientCertTable, type_string, CLIENT_CERT_TYPE_NONE);
123 std::string type_string = EnumToString(kClientCertTable, certificate_type_); local
124 dict->SetString(kKeyCertificateType, type_string);
  /external/chromium_org/webkit/common/fileapi/
file_system_util.cc 181 std::string type_string = GetFileSystemTypeString(type); local
182 DCHECK(!type_string.empty());
183 return origin_identifier + ":" + type_string;
305 const std::string type_string,
309 if (type_string == "Temporary") {
313 if (type_string == "Persistent") {
317 if (type_string == "Isolated") {
321 if (type_string == "External") {
file_system_util.h 109 // Returns false if the |type_string| is invalid.
111 std::string type_string,
  /external/chromium/chrome/browser/bookmarks/
bookmark_codec.cc 130 if (checksum_value->GetType() != Value::TYPE_STRING)
231 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) {
bookmark_html_writer.cc 230 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_org/chrome/browser/ui/webui/options/
content_settings_handler.cc 799 StringValue type_string(
802 type_string, exceptions);
1264 std::string type_string; local
1283 std::string type_string; local
1319 std::string type_string; local
    [all...]
  /external/chromium/chrome/browser/ui/views/
select_file_dialog.cc 388 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_org/chrome/renderer/extensions/
file_system_natives.cc 76 std::string type_string = *v8::String::Utf8Value(args[0]->ToString()); local
78 bool is_valid_type = fileapi::GetFileSystemPublicType(type_string, &type);
  /external/chromium_org/ppapi/tests/clang/
find_affected_interfaces.cc 43 std::string type_string(
47 StringBoolMap::value_type(type_string, false));
  /external/chromium_org/net/base/
mime_util.cc 67 bool IsMimeType(const std::string& type_string) const;
618 bool MimeUtil::IsMimeType(const std::string& type_string) const {
621 if (!IsStringASCII(type_string))
624 if (type_string == "*/*" || type_string == "*")
628 if (StartsWithASCII(type_string, legal_top_level_types[i], false) &&
629 type_string.length() > strlen(legal_top_level_types[i])) {
636 size_t slash = type_string.find('/');
638 slash == std::string::npos || slash == type_string.length() - 1) {
642 if (StartsWithASCII(type_string, "x-", false)
    [all...]
mime_util.h 58 // Returns true if the |type_string| is a correctly-formed mime type specifier.
61 NET_EXPORT bool IsMimeType(const std::string& type_string);
  /external/chromium_org/chrome/browser/bookmarks/
bookmark_codec.cc 145 if (checksum_value->GetType() != Value::TYPE_STRING)
257 std::string type_string; local
258 if (!value.GetString(kTypeKey, &type_string))
261 if (type_string != kTypeURL && type_string != kTypeFolder)
264 if (type_string == kTypeURL) {
bookmark_html_writer.cc 247 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/sandbox/win/src/
handle_table.h 61 bool IsType(const string16& type_string);
  /external/chromium/chrome/browser/
enumerate_modules_model_win.cc 811 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);
    [all...]

Completed in 427 milliseconds

1 2