Lines Matching defs:resource
246 * resource is no longer needed. The default implementation will use the
292 * The string data from the underlying buffer. If the resource is cacheable
347 * The string data from the underlying buffer. If the resource is cacheable
356 * Returns the cached data from the underlying buffer. If the resource is
451 * resource. When the external string is no longer live on V8's heap the
452 * resource will be disposed by calling its Dispose method. The caller of
453 * this function should not otherwise delete or modify the resource. Neither
455 * destructor of the external string resource.
458 Isolate* isolate, ExternalStringResource* resource);
461 * Associate an external string resource with this string by transforming it
463 * will use the external string resource. The external string resource's
467 * information on the lifetime of the resource.
469 bool MakeExternal(ExternalStringResource* resource);
473 * resource. When the external string is no longer live on V8's heap the
474 * resource will be disposed by calling its Dispose method. The caller of
475 * this function should not otherwise delete or modify the resource. Neither
477 * destructor of the external string resource.
480 Isolate* isolate, ExternalOneByteStringResource* resource);
483 * Associate an external string resource with this string by transforming it
485 * will use the external string resource. The external string resource's
489 * information on the lifetime of the resource.
491 bool MakeExternal(ExternalOneByteStringResource* resource);
501 * the external string resource.
817 ExternalStringResourceBase* resource;
823 resource = reinterpret_cast<ExternalStringResourceBase*>(value);
825 resource = GetExternalStringResourceBaseSlow(encoding_out);
828 VerifyExternalStringResourceBase(resource, *encoding_out);
830 return resource;