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

1 2 3 4 5 6 7 8 91011>>

  /art/runtime/gc/space/
space-inl.h 30 DCHECK_EQ(GetType(), kSpaceTypeImageSpace);
35 DCHECK(GetType() == kSpaceTypeAllocSpace || GetType() == kSpaceTypeZygoteSpace);
40 DCHECK_EQ(GetType(), kSpaceTypeLargeObjectSpace);
  /external/chromium_org/ppapi/thunk/
ppb_device_ref_api.h 25 virtual PP_DeviceType_Dev GetType() = 0;
ppb_device_ref_dev_thunk.cc 27 PP_DeviceType_Dev GetType(PP_Resource device_ref) {
28 VLOG(4) << "PPB_DeviceRef_Dev::GetType()";
32 return enter.object()->GetType();
45 &GetType,
ppb_file_system_api.h 23 virtual PP_FileSystemType GetType() = 0;
ppb_file_system_thunk.cc 46 PP_FileSystemType GetType(PP_Resource file_system) {
47 VLOG(4) << "PPB_FileSystem::GetType()";
51 return enter.object()->GetType();
58 &GetType
ppb_network_list_private_thunk.cc 44 PP_NetworkListType_Private GetType(PP_Resource resource, uint32_t index) {
45 VLOG(4) << "PPB_NetworkList_Private::GetType()";
49 return enter.object()->GetType(index);
91 &GetType,
  /external/chromium/chrome/browser/prefs/
default_pref_store.cc 16 Value::ValueType DefaultPrefStore::GetType(const std::string& key) const {
18 return GetValue(key, &value) == READ_OK ? value->GetType()
default_pref_store.h 26 Value::ValueType GetType(const std::string& key) const;
  /external/chromium_org/chrome/common/net/
x509_certificate_model_unittest.cc 23 x509_certificate_model::GetType(cert->os_cert_handle()));
26 x509_certificate_model::GetType(cert->os_cert_handle()));
34 x509_certificate_model::GetType(cert->os_cert_handle()));
47 x509_certificate_model::GetType(cert->os_cert_handle()));
54 x509_certificate_model::GetType(cert->os_cert_handle()));
62 x509_certificate_model::GetType(cert->os_cert_handle()));
69 x509_certificate_model::GetType(cert->os_cert_handle()));
  /external/chromium_org/ppapi/cpp/dev/
device_ref_dev.cc 35 PP_DeviceType_Dev DeviceRef_Dev::GetType() const {
38 return get_interface<PPB_DeviceRef_Dev>()->GetType(pp_resource());
device_ref_dev.h 26 PP_DeviceType_Dev GetType() const;
  /external/chromium_org/ppapi/c/dev/
ppb_device_ref_dev.h 88 PP_DeviceType_Dev (*GetType)(PP_Resource device_ref);
  /external/chromium_org/ppapi/c/
ppb_file_system.h 84 * GetType() returns the type of the provided file system.
94 PP_FileSystemType (*GetType)(PP_Resource file_system);
  /external/chromium_org/ppapi/shared_impl/
socket_option_data.h 24 Type GetType() const;
var.h 50 virtual PP_VarType GetType() const = 0;
115 virtual PP_VarType GetType() const OVERRIDE;
180 virtual PP_VarType GetType() const OVERRIDE;
  /external/chromium_org/chrome/installer/util/
product.h 50 return distribution_->GetType() == type;
54 return distribution_->GetType() == BrowserDistribution::CHROME_BROWSER;
58 return distribution_->GetType() == BrowserDistribution::CHROME_FRAME;
62 return distribution_->GetType() == BrowserDistribution::CHROME_APP_HOST;
66 return distribution_->GetType() == BrowserDistribution::CHROME_BINARIES;
  /external/chromium_org/ppapi/api/dev/
ppb_device_ref_dev.idl 63 PP_DeviceType_Dev GetType([in] PP_Resource device_ref);
  /external/chromium_org/ppapi/api/
ppb_file_system.idl 69 * GetType() returns the type of the provided file system.
80 PP_FileSystemType GetType([in] PP_Resource file_system);
  /external/chromium_org/chrome/browser/ui/app_list/search/
search_webstore_result.h 28 virtual ChromeSearchResultType GetType() OVERRIDE;
  /external/chromium_org/ppapi/proxy/
proxy_object_var.cc 30 PP_VarType ProxyObjectVar::GetType() const {
  /external/llvm/include/llvm/MC/
MCELF.h 28 static unsigned GetType(const MCSymbolData &SD);
  /external/chromium_org/chrome/browser/chromeos/login/
user.cc 36 virtual UserType GetType() const OVERRIDE;
49 virtual UserType GetType() const OVERRIDE;
61 virtual UserType GetType() const OVERRIDE;
73 virtual UserType GetType() const OVERRIDE;
87 virtual UserType GetType() const OVERRIDE;
99 virtual UserType GetType() const OVERRIDE;
237 User::UserType RegularUser::GetType() const {
251 User::UserType GuestUser::GetType() const {
262 User::UserType KioskAppUser::GetType() const {
272 User::UserType LocallyManagedUser::GetType() const
    [all...]
  /external/chromium_org/content/browser/renderer_host/
gtk_plugin_container.cc 28 return G_TYPE_CHECK_INSTANCE_CAST(instance, GetType(), GtkPluginContainer);
32 static GType GetType() {
80 return GTK_WIDGET(g_object_new(GtkPluginContainer::GetType(), NULL));
  /external/chromium_org/chrome/browser/extensions/api/declarative_webrequest/
webrequest_condition_attribute.h 65 virtual Type GetType() const = 0;
102 virtual Type GetType() const OVERRIDE;
132 virtual Type GetType() const OVERRIDE;
167 virtual Type GetType() const OVERRIDE;
201 virtual Type GetType() const OVERRIDE;
231 virtual Type GetType() const OVERRIDE;
260 virtual Type GetType() const OVERRIDE;
  /external/chromium/chrome/browser/sync/glue/
preference_model_associator.cc 78 } else if (!new_value->IsType(pref->GetType())) {
80 << " is of type " << new_value->GetType()
81 << " which doesn't match pref type " << pref->GetType();
261 if (from_value.GetType() == Value::TYPE_NULL)
263 if (to_value.GetType() == Value::TYPE_NULL)
266 DCHECK(from_value.GetType() == Value::TYPE_LIST);
267 DCHECK(to_value.GetType() == Value::TYPE_LIST);
283 if (from_value.GetType() == Value::TYPE_NULL)
285 if (to_value.GetType() == Value::TYPE_NULL)
288 DCHECK(from_value.GetType() == Value::TYPE_DICTIONARY)
    [all...]

Completed in 528 milliseconds

1 2 3 4 5 6 7 8 91011>>