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

1 2

  /external/chromium_org/tools/telemetry/telemetry/core/heap/
retaining_edge.py 17 type_string: str, the type of the RetainingEdge.
22 def __init__(self, from_object_id, to_object_id, type_string, name_string):
32 type_string: str, the type of the RetainingEdge.
40 self.type_string = type_string
52 return 'RetainingEdge(' + self.type_string + ' ' + self.name_string + ')'
live_heap_object.py 10 type_string: str, describes the type of the node.
21 def __init__(self, object_id, type_string, class_name):
26 type_string: str, the type of the node.
30 self.type_string = type_string
55 if self.type_string == 'object':
57 return prefix + self.type_string + ')'
chrome_js_heap_snapshot_parser.py 101 if edge.type_string == 'property':
103 if edge.type_string == 'element':
147 type_string = self._node_types[int(type_ix)]
154 if ChromeJsHeapSnapshotParser._IsNodeTypeUninteresting(type_string):
160 def ConstructorName(type_string, node_name_ix):
161 if type_string == 'object':
163 return '(%s)' % type_string
165 ctor_name = ConstructorName(type_string, name_ix)
166 n = live_heap_object.LiveHeapObject(node_id, type_string, ctor_name)
167 if type_string == 'string'
    [all...]
  /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/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/third_party/WebKit/Source/bindings/scripts/
idl_types.py 114 type_string = self.base_type
116 return type_string + '[]'
118 return 'sequence<%s>' % type_string
124 # return type_string + '?'
125 return type_string
126 return type_string
  /external/chromium_org/webkit/browser/fileapi/
obfuscated_file_util.h 85 // |type_string| must be ascii string.
86 virtual bool HasTypeDirectory(const std::string& type_string) const = 0;
185 // Returns the topmost origin directory if |type_string| is empty.
193 const std::string& type_string,
199 // Deletes the topmost origin directory if |type_string| is empty.
202 const std::string& type_string);
212 const std::string& type_string);
297 const std::string& type_string);
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/net/base/
mime_util.h 58 // Returns true if the |type_string| is a correctly-formed mime type specifier
67 NET_EXPORT bool ParseMimeTypeWithoutParameter(const std::string& type_string,
71 // Returns true if the |type_string| is a top-level type of any media type
79 NET_EXPORT bool IsValidTopLevelMimeType(const std::string& type_string);
mime_util.cc 73 bool ParseMimeTypeWithoutParameter(const std::string& type_string,
77 bool IsValidTopLevelMimeType(const std::string& type_string) const;
695 const std::string& type_string,
699 base::SplitString(type_string, '/', &components);
712 bool MimeUtil::IsValidTopLevelMimeType(const std::string& type_string) const {
713 std::string lower_type = StringToLowerASCII(type_string);
719 return type_string.size() > 2 && StartsWithASCII(type_string, "x-", false);
824 bool ParseMimeTypeWithoutParameter(const std::string& type_string,
828 type_string, top_level_type, subtype)
    [all...]
  /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/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/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") {
file_system_util.h 120 // Returns false if the |type_string| is invalid.
122 std::string type_string,
  /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/sandbox/win/src/
handle_table.h 61 bool IsType(const base::string16& type_string);
handle_table.cc 164 bool HandleTable::HandleEntry::IsType(const base::string16& type_string) {
168 return type_string.compare(0,
  /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/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/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/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...]

Completed in 1279 milliseconds

1 2