Home
last modified time | relevance | path

Searched refs:resource_name (Results 1 – 15 of 15) sorted by relevance

/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/
Dutil.py30 def resource_exists(resource_name): argument
31 return pkg_resources.resource_exists(__name__, resource_name)
33 def resource_string(resource_name): argument
34 return pkg_resources.resource_string(__name__, resource_name)
42 def _resource_path(resource_name): argument
44 return os.path.join(_replay_dir, resource_name)
46 def resource_exists(resource_name): argument
47 return os.path.exists(_resource_path(resource_name))
49 def resource_string(resource_name): argument
50 return open(_resource_path(resource_name)).read()
/external/v8/src/profiler/
Dprofile-generator-inl.h14 const char* name_prefix, const char* resource_name, in CodeEntry() argument
21 resource_name_(resource_name), in CodeEntry()
Dprofiler-listener.cc235 CodeEntry::kEmptyNamePrefix, entry->resource_name(), in RecordInliningInfo()
286 const char* name_prefix, const char* resource_name, int line_number, in NewCodeEntry() argument
289 new CodeEntry(tag, name, name_prefix, resource_name, line_number, in NewCodeEntry()
Dprofile-generator.cc253 if (entry_->resource_name()[0] != '\0') in Print()
254 base::OS::Print(" %s:%d", entry_->resource_name(), entry_->line_number()); in Print()
428 if (*entry->resource_name()) { in BuildNodeValue()
429 value->SetString("url", entry->resource_name()); in BuildNodeValue()
Dprofile-generator.h45 const char* resource_name = CodeEntry::kEmptyResourceName,
55 const char* resource_name() const { return resource_name_; } in resource_name() function
Dprofiler-listener.h55 const char* resource_name = CodeEntry::kEmptyResourceName,
/external/kernel-headers/original/uapi/linux/
Ddlm_netlink.h35 char resource_name[DLM_RESNAME_MAXLEN]; member
/external/webrtc/webrtc/libjingle/xmpp/
Djid.cc56 const std::string& resource_name) in Jid() argument
59 resource_name_(resource_name) { in Jid()
Djid.h34 const std::string& resource_name);
/external/skia/infra/bots/recipe_modules/core/resources/
Drun_binary_size_analysis.py578 resource_name = line_data[1]
579 PAK_RESOURCE_ID_TO_STRING[resource_number] = resource_name
/external/ImageMagick/MagickCore/
Danimate.c1308 resource_name[MagickPathExtent]; in XAnimateImages() local
1807 (void) FormatLocaleString(resource_name,MagickPathExtent,"%s.command", in XAnimateImages()
1810 resource_name,"geometry",(char *) NULL); in XAnimateImages()
1837 (void) FormatLocaleString(resource_name,MagickPathExtent,"%s.widget", in XAnimateImages()
1840 resource_name,"geometry",(char *) NULL); in XAnimateImages()
Dxwindow.c3271 resource_name[MagickPathExtent]; in XGetResourceClass() local
3284 *resource_name='\0'; in XGetResourceClass()
3295 (void) FormatLocaleString(resource_name,MagickPathExtent,"%s.%s", in XGetResourceClass()
3318 status=XrmGetResource(database,resource_name,resource_class,&resource_type, in XGetResourceClass()
3670 resource_name[MagickPathExtent]; in XGetResourceInstance() local
3680 *resource_name='\0'; in XGetResourceInstance()
3682 (void) FormatLocaleString(resource_name,MagickPathExtent,"%s.%s",client_name, in XGetResourceInstance()
3684 status=XrmGetResource(database,resource_name,"ImageMagick",&resource_type, in XGetResourceInstance()
Ddisplay.c14432 resource_name[MagickPathExtent]; in XDisplayImage() local
14867 (void) FormatLocaleString(resource_name,MagickPathExtent,"%s.command", in XDisplayImage()
14870 resource_name,"geometry",(char *) NULL); in XDisplayImage()
14899 (void) FormatLocaleString(resource_name,MagickPathExtent,"%s.widget", in XDisplayImage()
14902 resource_name,"geometry",(char *) NULL); in XDisplayImage()
14954 (void) FormatLocaleString(resource_name,MagickPathExtent,"%s.magnify", in XDisplayImage()
14957 resource_name,"geometry",(char *) NULL); in XDisplayImage()
14998 (void) FormatLocaleString(resource_name,MagickPathExtent,"%s.pan", in XDisplayImage()
15001 resource_name,"geometry",(char *) NULL); in XDisplayImage()
/external/v8/include/
Dv8.h997 Local<Value> resource_name,
1204 Local<Value> resource_name; variable
8854 ScriptOrigin::ScriptOrigin(Local<Value> resource_name,
8862 : resource_name_(resource_name),
8895 resource_name(origin.ResourceName()),
/external/v8/src/
Dapi.cc435 Local<String> resource_name = in RunExtraCode() local
438 ScriptOrigin origin(resource_name); in RunExtraCode()
2036 if (!source->resource_name.IsEmpty()) { in CompileUnboundInternal()
2037 name_obj = Utils::OpenHandle(*(source->resource_name)); in CompileUnboundInternal()
2236 if (!source->resource_name.IsEmpty()) { in CompileFunctionInContext()
2237 name_obj = Utils::OpenHandle(*(source->resource_name)); in CompileFunctionInContext()
9155 node->entry()->resource_name())); in GetScriptResourceName()
9160 return node->entry()->resource_name(); in GetScriptResourceNameStr()