Home
last modified time | relevance | path

Searched full:resource (Results 1 – 25 of 22374) sorted by relevance

12345678910>>...895

/aosp_15_r20/external/skia/src/gpu/graphite/
H A DResourceCache.cpp16 #include "src/gpu/graphite/Resource.h"
66 Resource* back = *(fNonpurgeableResources.end() - 1); in shutdown()
73 Resource* top = fPurgeableQueue.peek(); in shutdown()
82 void ResourceCache::insertResource(Resource* resource) { in insertResource() argument
84 SkASSERT(resource); in insertResource()
85 SkASSERT(!this->isInCache(resource)); in insertResource()
86 SkASSERT(!resource->wasDestroyed()); in insertResource()
87 SkASSERT(!resource->isPurgeable()); in insertResource()
88 SkASSERT(resource->key().isValid()); in insertResource()
91 SkASSERT(resource->ownership() == Ownership::kOwned); in insertResource()
[all …]
/aosp_15_r20/external/cronet/third_party/icu/source/data/translit/
H A Droot.txt15 resource:process(transliterator){"Latin_ASCII.txt"}
21 resource:process(transliterator){"Any_Accents.txt"}
33 resource:process(transliterator){"Any_Accents.txt"}
39 resource:process(transliterator){"Any_Publishing.txt"}
45 resource:process(transliterator){"Arab_Latn.txt"}
63 resource:process(transliterator){"Latn_Armn.txt"}
75 resource:process(transliterator){"Beng_Arab.txt"}
81 resource:process(transliterator){"Beng_Deva.txt"}
87 resource:process(transliterator){"Beng_Gujr.txt"}
93 resource:process(transliterator){"Beng_Guru.txt"}
[all …]
/aosp_15_r20/external/icu/icu4c/source/data/translit/
H A Droot.txt15 resource:process(transliterator){"Latin_ASCII.txt"}
21 resource:process(transliterator){"Any_Accents.txt"}
33 resource:process(transliterator){"Any_Accents.txt"}
39 resource:process(transliterator){"Any_Publishing.txt"}
45 resource:process(transliterator){"Arab_Latn.txt"}
63 resource:process(transliterator){"Latn_Armn.txt"}
75 resource:process(transliterator){"Beng_Arab.txt"}
81 resource:process(transliterator){"Beng_Deva.txt"}
87 resource:process(transliterator){"Beng_Gujr.txt"}
93 resource:process(transliterator){"Beng_Guru.txt"}
[all …]
/aosp_15_r20/external/skia/src/gpu/ganesh/
H A DGrResourceCache.cpp74 void GrResourceCache::insertResource(GrGpuResource* resource) { in insertResource() argument
76 SkASSERT(resource); in insertResource()
77 SkASSERT(!this->isInCache(resource)); in insertResource()
78 SkASSERT(!resource->wasDestroyed()); in insertResource()
79 SkASSERT(!resource->resourcePriv().isPurgeable()); in insertResource()
83 resource->cacheAccess().setTimestamp(this->getNextTimestamp()); in insertResource()
85 this->addToNonpurgeableArray(resource); in insertResource()
87 size_t size = resource->gpuMemorySize(); in insertResource()
94 if (GrBudgetedType::kBudgeted == resource->resourcePriv().budgetedType()) { in insertResource()
104 SkASSERT(!resource->cacheAccess().isUsableAsScratch()); in insertResource()
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/compiler/mlir/tensorflow/tests/
H A Dtpu_reorder_replicate_and_partitioned_inputs.mlir4resource<tensor<10x3xf32>>>, [[ARG1:%.*]]: tensor<!tf_type.resource<tensor<10x3xf32>>>, [[ARG2:%.*…
5resource<tensor<10x3xf32>>>, %arg1: tensor<!tf_type.resource<tensor<10x3xf32>>>, %arg2: tensor<!tf…
9 …: i64} : (tensor<!tf_type.resource<tensor<10x3xf32>>>, tensor<!tf_type.resource<tensor<10x3xf32>>>…
10 …: i64} : (tensor<!tf_type.resource<tensor<10x3xf32>>>, tensor<!tf_type.resource<tensor<10x3xf32>>>…
11 …%pi_1) : (tensor<!tf_type.resource<tensor<10x3xf32>>>, tensor<!tf_type.resource<tensor<10x3xf32>>>…
13 func.return %ri : tensor<!tf_type.resource<tensor<10x3xf32>>>
17resource<tensor<10x3xf32>>>, [[ARG1:%.*]]: tensor<!tf_type.resource<tensor<10x3xf32>>>, [[ARG2:%.*…
18resource<tensor<10x3xf32>>>, %arg1: tensor<!tf_type.resource<tensor<10x3xf32>>>, %arg2: tensor<!tf…
22 …: i64} : (tensor<!tf_type.resource<tensor<10x3xf32>>>, tensor<!tf_type.resource<tensor<10x3xf32>>>…
23 …: i64} : (tensor<!tf_type.resource<tensor<10x3xf32>>>, tensor<!tf_type.resource<tensor<10x3xf32>>>…
[all …]
/aosp_15_r20/external/grpc-grpc/test/core/xds/
H A Dxds_cluster_resource_type_test.cc144 EXPECT_EQ(decode_result.resource.status().code(), in TEST_F()
146 EXPECT_EQ(decode_result.resource.status().message(), in TEST_F()
147 "Can't parse Cluster resource.") in TEST_F()
148 << decode_result.resource.status(); in TEST_F()
161 ASSERT_TRUE(decode_result.resource.ok()) << decode_result.resource.status(); in TEST_F()
164 auto& resource = in TEST_F() local
165 static_cast<const XdsClusterResource&>(**decode_result.resource); in TEST_F()
166 auto* eds = absl::get_if<XdsClusterResource::Eds>(&resource.type); in TEST_F()
170 EXPECT_EQ(JsonDump(Json::FromArray(resource.lb_policy_config)), in TEST_F()
173 EXPECT_FALSE(resource.lrs_load_reporting_server.has_value()); in TEST_F()
[all …]
H A Dxds_route_config_resource_type_test.cc134 EXPECT_EQ(decode_result.resource.status().code(), in TEST_F()
136 EXPECT_EQ(decode_result.resource.status().message(), in TEST_F()
137 "Can't parse RouteConfiguration resource.") in TEST_F()
138 << decode_result.resource.status(); in TEST_F()
154 ASSERT_TRUE(decode_result.resource.ok()) << decode_result.resource.status(); in TEST_F()
157 auto& resource = in TEST_F() local
158 static_cast<const XdsRouteConfigResource&>(**decode_result.resource); in TEST_F()
159 EXPECT_THAT(resource.cluster_specifier_plugin_map, ::testing::ElementsAre()); in TEST_F()
160 ASSERT_EQ(resource.virtual_hosts.size(), 1UL); in TEST_F()
161 EXPECT_THAT(resource.virtual_hosts[0].domains, ::testing::ElementsAre("*")); in TEST_F()
[all …]
/aosp_15_r20/external/python/google-api-python-client/docs/dyn/
DgamesConfiguration_v1configuration.leaderboardConfigurations.html131 { # An leaderboard configuration resource.
134 …&quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is …
135 …&quot;name&quot;: { # A localized string bundle resource. # Localized strings for the leaderboard …
136 …&quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is …
138 { # A localized string resource.
139 …&quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is …
145 … &quot;scoreFormat&quot;: { # A number format resource. # The score formatting for the leaderboard.
149 …&quot;suffix&quot;: { # A number affix resource. # An optional suffix for the NUMERIC format type.…
150 …&quot;few&quot;: { # A localized string bundle resource. # When the language requires special trea…
151 …&quot;kind&quot;: &quot;A String&quot;, # Uniquely identifies the type of this resource. Value is …
[all …]
Dadmin_directory_v1.resources.calendars.html82 <p class="firstline">Deletes a calendar resource.</p>
85 <p class="firstline">Retrieves a calendar resource.</p>
88 <p class="firstline">Inserts a calendar resource.</p>
97 <p class="firstline">Patches a calendar resource.</p>
100 <p class="firstline">Updates a calendar resource. This method supports patch semantics, meaning you…
109 <pre>Deletes a calendar resource.
113 calendarResourceId: string, The unique ID of the calendar resource to delete. (required)
123 <pre>Retrieves a calendar resource.
127 calendarResourceId: string, The unique ID of the calendar resource to retrieve. (required)
137 …&quot;buildingId&quot;: &quot;A String&quot;, # Unique ID for the building a resource is located i…
[all …]
Dyoutube_v3.activities.html97resource properties that the API response will include. If the parameter identifies a property tha…
115 &quot;etag&quot;: &quot;A String&quot;, # Etag of this resource.
118resource contains information about an action that a particular channel, or user, has taken on You…
121 …A resource id is a generic reference that points to another YouTube resource. # The resourceId obj…
122 …, # The ID that YouTube uses to uniquely identify the referred resource, if that resource is a cha…
123 &quot;kind&quot;: &quot;A String&quot;, # The type of the API resource.
124 …, # The ID that YouTube uses to uniquely identify the referred resource, if that resource is a pla…
125 …, # The ID that YouTube uses to uniquely identify the referred resource, if that resource is a vid…
128 …&quot;: { # Details about a resource which was added to a channel. # The channelItem object contai…
129 …A resource id is a generic reference that points to another YouTube resource. # The resourceId obj…
[all …]
/aosp_15_r20/external/replicaisland/res/xml/
H A Dlevel_tree.xml6 …<level resource="@raw/level_0_1_sewer_repeat" title = "@string/level_0_1_sewer" time = "@string/le…
8 <character1 resource ="@xml/level_0_1_dialog_wanda"/>
14 …<level resource="@raw/level_0_2_lab" title = "@string/level_0_2_lab" time = "@string/level_0_2_tim…
16 <character1 resource ="@xml/level_0_2_dialog_kabocha"/>
17 <character2 resource ="@xml/level_0_2_dialog_kabocha_2"/>
24 …<level resource="@raw/level_3_5_sewer" title = "@string/level_3_5_sewer" time = "@string/level_3_5…
26 <character1 resource ="@xml/level_3_5_dialog_wanda"/>
32 …<level resource="@raw/level_0_3_lab" title = "@string/level_0_3_lab" time = "@string/level_0_3_tim…
34 <character1 resource ="@xml/level_0_3_dialog_kabocha"/>
41 …<level resource="@raw/level_3_6_sewer" title = "@string/level_3_6_sewer" time = "@string/level_3_6…
[all …]
H A Dlinear_level_tree.xml5 …<group><level resource="@raw/level_0_2_lab" title = "@string/level_0_2_lab" time = "@string/level_…
7 <character1 resource ="@xml/level_0_2_dialog_kabocha"/>
8 <character2 resource ="@xml/level_0_2_dialog_kabocha_2"/>
12 …<group><level resource="@raw/level_0_3_lab" title = "@string/level_0_3_lab" time = "@string/level_…
14 <character1 resource ="@xml/level_0_3_dialog_kabocha"/>
18 …<group><level resource="@raw/level_1_1_island" title = "@string/level_1_1_island" time = "@string/…
20 <diary resource ="@string/Diary1"/>
21 <character1 resource ="@xml/level_1_1_dialog_wanda"/>
25 …<group><level resource="@raw/level_1_2_island" title = "@string/level_1_2_island" time = "@string/…
26 …<group><level resource="@raw/level_1_3_island" title = "@string/level_1_3_island" time = "@string/…
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/services/cloudcontrol/src/main/resources/codegen-resources/
H A Dservice-2.json29resource operation request. For more information, see <a href=\"https://docs.aws.amazon.com/cloudc…
61resource. For more information, see <a href=\"https://docs.aws.amazon.com/cloudcontrolapi/latest/u…
92resource. For details, see <a href=\"https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/
121resource. For details, see <a href=\"https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/
134resource operation request. For more information, see <a href=\"https://docs.aws.amazon.com/cloudc…
144resource operation requests. This includes requests of all status types. For more information, see…
173 … <a href=\"https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/resource-operations-list.h…
204resource.</p> <p>You specify your resource property updates as a list of patch operations containe…
213 "documentation":"<p>The resource with the name requested already exists.</p>",
222 …stToken</code> of the <code>ProgressEvent</code> object returned by the resource operation request…
[all …]
/aosp_15_r20/external/coreboot/src/device/
H A Ddevice_util.c272 struct resource *new_res_list; in allocate_more_resources()
289 * Remove resource res from the device's list and add it to the free list.
296 static void free_resource(struct device *dev, struct resource *res, in free_resource()
297 struct resource *prev) in free_resource()
309 * See if we have unused but allocated resource structures.
313 * @param dev The device to find the resource on.
317 struct resource *res, *next, *prev = NULL; in compact_resources()
330 * See if a resource structure already exists for a given index.
332 * @param dev The device to find the resource on.
333 * @param index The index of the resource on the device.
[all …]
H A Dpnp_device.c118 static void pnp_set_resource(struct device *dev, struct resource *resource) in pnp_set_resource() argument
120 if (!(resource->flags & IORESOURCE_ASSIGNED)) { in pnp_set_resource()
122 dev_path(dev), resource->index, resource_type(resource), in pnp_set_resource()
123 resource->size); in pnp_set_resource()
127 /* Now store the resource. */ in pnp_set_resource()
128 if (resource->flags & IORESOURCE_IO) { in pnp_set_resource()
129 pnp_set_iobase(dev, resource->index, resource->base); in pnp_set_resource()
130 } else if (resource->flags & IORESOURCE_DRQ) { in pnp_set_resource()
131 pnp_set_drq(dev, resource->index, resource->base); in pnp_set_resource()
132 } else if (resource->flags & IORESOURCE_IRQ) { in pnp_set_resource()
[all …]
/aosp_15_r20/external/apache-velocity-engine/velocity-engine-core/src/main/java/org/apache/velocity/runtime/resource/
H A DResourceManagerImpl.java1 package org.apache.velocity.runtime.resource;
27 import org.apache.velocity.runtime.resource.loader.ResourceLoader;
28 import org.apache.velocity.runtime.resource.loader.ResourceLoaderFactory;
43 * Class to manage the text resource for the Velocity Runtime.
59 /** A static content resource. */
62 /** Object implementing ResourceCache to be our resource manager's Resource cache. */
72 * <p>resource.loader.&lt;loader-id&gt;.&lt;property&gt; = &lt;value&gt;</p>
81 /** switch to turn off log notice when a resource is found for the first time. */
93 * @param rs The Runtime Services object which is associated with this Resource Manager.
116 * Resource loader can be loaded either via class name or be passed in initialize()
[all …]
/aosp_15_r20/external/coreboot/src/security/intel/stm/
H A DSmmStm.c99 * Handle single Resource to see if it can be merged into Record.
101 * @param resource A pointer to resource node to be added
104 * @retval true resource handled
105 * @retval false resource is not handled
108 static bool handle_single_resource(STM_RSC *resource, STM_RSC *record) in handle_single_resource() argument
116 // Resource->Header.RscType == (*Record)->Header.RscType in handle_single_resource()
119 switch (resource->header.rsc_type) { in handle_single_resource()
122 resource_lo = resource->mem.base; in handle_single_resource()
123 resource_hi = resource->mem.base + resource->mem.length; in handle_single_resource()
126 if (resource->mem.rwx_attributes in handle_single_resource()
[all …]
/aosp_15_r20/external/intel-media-driver/media_softlet/agnostic/common/os/
H A Dmos_interface.h37 //! 2) Resource managment (Graphic resource, external resource)
318 //! gmm resource info
415 …//! \details If Current GPU context is never set, all command buffer / resource interfaces cannot…
464 …//! \details If Current GPU context is never set, all command buffer / resource interfaces cannot…
517 …//! \details If Current GPU context is never set, all command buffer / resource interfaces cannot…
541 …//! \details If Current GPU context is never set, all command buffer / resource interfaces cannot…
568 …//! \details If Current GPU context is never set, all command buffer / resource interfaces cannot…
595 …//! \details If Current GPU context is never set, all command buffer / resource interfaces cannot…
622 …//! \details If Current GPU context is never set, all command buffer / resource interfaces cannot…
666 …nterface] Resize the cmd buffer to contain more cmds. Resize the patch list to have more resource.s
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/xds/proposals/
DTP2-dynamically-generated-cacheable-xds-resources.md16 data model layer. This means that if a resource has a parameter that
17 affects its contents, that parameter is not part of the resource's name,
18 which means that any other resources that refer to the resource do not
37 parameters that affect resource contents into the resource name, thus adding
39 parameters become part of the resource graph on an individual client, which
41 - Dynamic context parameters are viral, spreading from a given resource
42 to all earlier resources in the resource graph. For example, if
43 multiple variants of an EDS resource are needed, there need to be two
44 different instances of the resource with different names,
46 CDS resource include the name of the corresponding EDS resource name,
[all …]
/aosp_15_r20/external/lzma/CPP/Windows/
H A DNet.cpp75 static void ConvertNETRESOURCEToCResource(const NETRESOURCE &netResource, CResource &resource) in ConvertNETRESOURCEToCResource() argument
77 resource.Scope = netResource.dwScope; in ConvertNETRESOURCEToCResource()
78 resource.Type = netResource.dwType; in ConvertNETRESOURCEToCResource()
79 resource.DisplayType = netResource.dwDisplayType; in ConvertNETRESOURCEToCResource()
80 resource.Usage = netResource.dwUsage; in ConvertNETRESOURCEToCResource()
81 SetComplexString(resource.LocalNameIsDefined, resource.LocalName, netResource.lpLocalName); in ConvertNETRESOURCEToCResource()
82 SetComplexString(resource.RemoteNameIsDefined, resource.RemoteName, netResource.lpRemoteName); in ConvertNETRESOURCEToCResource()
83 SetComplexString(resource.CommentIsDefined, resource.Comment, netResource.lpComment); in ConvertNETRESOURCEToCResource()
84 SetComplexString(resource.ProviderIsDefined, resource.Provider, netResource.lpProvider); in ConvertNETRESOURCEToCResource()
95 static void ConvertCResourceToNETRESOURCE(const CResource &resource, NETRESOURCE &netResource) in ConvertCResourceToNETRESOURCE() argument
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/services/ram/src/main/resources/codegen-resources/
H A Ddocs-2.json3Resource Access Manager to share AWS resources between AWS accounts. To share a resource, you crea…
5 …"AcceptResourceShareInvitation": "<p>Accepts an invitation to a resource share from another AWS ac…
6 …"AssociateResourceShare": "<p>Associates the specified resource share with the specified principal…
7 "CreateResourceShare": "<p>Creates a resource share.</p>",
8 "DeleteResourceShare": "<p>Deletes the specified resource share.</p>",
9 …": "<p>Disassociates the specified principals or resources from the specified resource share.</p>",
10 "EnableSharingWithAwsOrganization": "<p>Enables resource sharing within your organization.</p>",
12 … "GetResourceShareAssociations": "<p>Gets the associations for the specified resource share.</p>",
13 "GetResourceShareInvitations": "<p>Gets the specified invitations for resource sharing.</p>",
14 … "GetResourceShares": "<p>Gets the specified resource shares or all of your resource shares.</p>",
[all …]
/aosp_15_r20/external/google-cloud-java/java-resource-settings/
H A DCHANGELOG.md3 …ogleapis/google-cloud-java/compare/google-cloud-resource-settings-v1.4.1-SNAPSHOT...google-cloud-r…
23 …m/googleapis/google-cloud-java/compare/google-cloud-resource-settings-v1.3.5...google-cloud-resour…
43 ## [1.3.5](https://github.com/googleapis/java-resource-settings/compare/v1.3.4...v1.3.5) (2022-10-0…
48 * update protobuf to v3.21.7 ([78114fb](https://github.com/googleapis/java-resource-settings/commit…
50 ## [1.3.4](https://github.com/googleapis/java-resource-settings/compare/v1.3.3...v1.3.4) (2022-10-0…
55 …ttps://github.com/googleapis/java-resource-settings/issues/232)) ([e859ded](https://github.com/goo…
56 …ttps://github.com/googleapis/java-resource-settings/issues/222)) ([2315fa4](https://github.com/goo…
57 …ttps://github.com/googleapis/java-resource-settings/issues/227)) ([b4ffff3](https://github.com/goo…
58 …ttps://github.com/googleapis/java-resource-settings/issues/228)) ([9bca984](https://github.com/goo…
59 …ttps://github.com/googleapis/java-resource-settings/issues/237)) ([a405027](https://github.com/goo…
[all …]
/aosp_15_r20/external/googleapis/google/cloud/asset/v1/
H A Dassets.proto19 import "google/api/resource.proto";
86 // An asset in Google Cloud. An asset can be any resource in the Google Cloud
87 // [resource
88 // hierarchy](https://cloud.google.com/resource-manager/docs/cloud-platform-resource-hierarchy),
89 // a resource outside the Google Cloud resource hierarchy (such as Google
96 option (google.api.resource) = {
108 // See [Resource
120 // A representation of the resource.
121 Resource resource = 3;
123 // A representation of the IAM policy set on a Google Cloud resource.
[all …]
/aosp_15_r20/packages/apps/Car/systemlibs/tools/rro/
Dresource_utils.py36 class Resource: class
75 Resource(file[:-4], type,
78 for resource in get_ids_from_layout_file(os.path.join(resDir, dir, file)):
79 add_resource_to_set(resources, resource)
84 for resource in get_resources_from_single_file(os.path.join(resDir, dir, file),
86 add_resource_to_set(resources, resource)
94 add_resource_to_set(result, Resource(i, 'id', ResourceLocation(filename)))
101 for resource in root:
102 if resource.tag is etree.Comment:
104 if resource.tag == 'declare-styleable':
[all …]
/aosp_15_r20/external/google-cloud-java/java-os-config/proto-google-cloud-os-config-v1/src/main/java/com/google/cloud/osconfig/v1/
H A DOSPolicy.java1128 // @@protoc_insertion_point(interface_extends:google.cloud.osconfig.v1.OSPolicy.Resource)
1135 * Required. The id of the resource with the following restrictions:
1152 * Required. The id of the resource with the following restrictions:
1170 * Package resource
1173 * <code>.google.cloud.osconfig.v1.OSPolicy.Resource.PackageResource pkg = 2;</code>
1182 * Package resource
1185 * <code>.google.cloud.osconfig.v1.OSPolicy.Resource.PackageResource pkg = 2;</code>
1189 com.google.cloud.osconfig.v1.OSPolicy.Resource.PackageResource getPkg(); in getPkg()
1194 * Package resource
1197 * <code>.google.cloud.osconfig.v1.OSPolicy.Resource.PackageResource pkg = 2;</code>
[all …]

12345678910>>...895