HomeSort by relevance Sort by last modified time
    Searched defs:resources (Results 201 - 225 of 614) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/content/browser/service_worker/
service_worker_database_unittest.cc 122 std::vector<ServiceWorkerDatabase::ResourceRecord> resources; local
129 data, resources, &deleted_version_id, &newly_purgeable_resources));
160 std::vector<Resource> resources; local
171 data1, resources, &deleted_version_id, &newly_purgeable_resources));
179 // Writing uncommitted resources bumps the next available id.
192 // Writing purgeable resources bumps the next available id.
214 data2, resources, &deleted_version_id, &newly_purgeable_resources));
216 // Same with resources.
240 std::vector<Resource> resources; local
253 data1, resources, &deleted_version_id, &newly_purgeable_resources))
340 std::vector<Resource> resources; local
401 std::vector<Resource> resources; local
469 std::vector<Resource> resources; local
546 std::vector<Resource> resources; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
NetworkResourcesData.cpp 296 Vector<NetworkResourcesData::ResourceData*> NetworkResourcesData::resources() function in class:blink::NetworkResourcesData
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGRoot.cpp 237 SVGResources* resources = SVGResourcesCache::cachedResourcesForRenderObject(this); local
238 if (!resources || !resources->filter())
RenderSVGShape.cpp 152 // Invalidate all resources of this client if our layout changed.
196 SVGResources* resources = SVGResourcesCache::cachedResourcesForRenderObject(this);
197 if (!resources)
200 return resources->markerStart() || resources->markerMid() || resources->markerEnd();
358 SVGResources* resources = SVGResourcesCache::cachedResourcesForRenderObject(this); local
359 ASSERT(resources);
361 RenderSVGResourceMarker* markerStart = resources->markerStart();
362 RenderSVGResourceMarker* markerMid = resources->markerMid()
434 SVGResources* resources = SVGResourcesCache::cachedResourcesForRenderObject(this); local
461 SVGResources* resources = SVGResourcesCache::cachedResourcesForRenderObject(this); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebPageNewSerializerTest.cpp 169 static bool resourceVectorContains(const WebVector<WebPageSerializer::Resource>& resources, const char* url, const char* mimeType)
172 for (size_t i = 0; i < resources.size(); ++i) {
173 const WebPageSerializer::Resource& resource = resources[i];
198 // Tests that a page with resources and sub-frame is reported with all its resources.
212 WebVector<WebPageSerializer::Resource> resources; local
213 WebPageSerializer::serialize(webView(), &resources); local
214 ASSERT_FALSE(resources.isEmpty());
217 const WebPageSerializer::Resource& resource = resources[0];
222 EXPECT_EQ(6U, resources.size()); // There should be no duplicates
239 WebVector<WebPageSerializer::Resource> resources; local
240 WebPageSerializer::serialize(webView(), &resources); local
275 WebVector<WebPageSerializer::Resource> resources; local
276 WebPageSerializer::serialize(webView(), &resources); local
302 WebVector<WebPageSerializer::Resource> resources; local
303 WebPageSerializer::serialize(webView(), &resources); local
    [all...]
  /external/chromium_org/third_party/angle/samples/translator/
translator.cpp 41 // Set up the per compile resources
43 void GenerateResources(ShBuiltInResources* resources)
45 ShInitBuiltInResources(resources);
47 resources->MaxVertexAttribs = 8;
48 resources->MaxVertexUniformVectors = 128;
49 resources->MaxVaryingVectors = 8;
50 resources->MaxVertexTextureImageUnits = 0;
51 resources->MaxCombinedTextureImageUnits = 8;
52 resources->MaxTextureImageUnits = 8;
53 resources->MaxFragmentUniformVectors = 16
75 ShBuiltInResources resources; local
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
ShaderD3D.cpp 83 ShBuiltInResources resources; local
84 ShInitBuiltInResources(&resources);
90 resources.MaxVertexAttribs = caps.maxVertexAttributes;
91 resources.MaxVertexUniformVectors = caps.maxVertexUniformVectors;
92 resources.MaxVaryingVectors = caps.maxVaryingVectors;
93 resources.MaxVertexTextureImageUnits = caps.maxVertexTextureImageUnits;
94 resources.MaxCombinedTextureImageUnits = caps.maxCombinedTextureImageUnits;
95 resources.MaxTextureImageUnits = caps.maxTextureImageUnits;
96 resources.MaxFragmentUniformVectors = caps.maxFragmentUniformVectors;
97 resources.MaxDrawBuffers = caps.maxDrawBuffers
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
vl_video_buffer.c 252 pipe_resource_reference(&buf->resources[i], NULL);
278 u_sampler_view_default_template(&sv_templ, buf->resources[i], buf->resources[i]->format);
280 if (util_format_get_nr_components(buf->resources[i]->format) == 1)
283 buf->sampler_view_planes[i] = pipe->create_sampler_view(pipe, buf->resources[i], &sv_templ);
316 struct pipe_resource *res = buf->resources[plane_order[i]];
363 if (!buf->resources[j]) {
370 surf_templ.format = vl_video_buffer_surface_format(buf->resources[j]->format);
373 buf->surfaces[surf] = pipe->create_surface(pipe, buf->resources[j], &surf_templ);
440 struct pipe_resource *resources[VL_NUM_COMPONENTS] local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_scene.h 145 /** list of resources referenced by the scene commands */
146 struct resource_ref *resources; member in struct:lp_scene
154 /** Sum of sizes of all resources referenced by the scene. Sums
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/
nouveau_video.h 13 struct pipe_resource *resources[3]; member in struct:nouveau_video_buffer
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/common/
native_helper.c 52 struct pipe_resource *resources[NUM_NATIVE_ATTACHMENTS]; member in struct:resource_surface
93 if (rsurf->resources[i])
94 pipe_resource_reference(&rsurf->resources[i], NULL);
158 assert(!rsurf->resources[i]);
160 rsurf->resources[i] =
162 if (rsurf->resources[i])
175 pipe_resource_reference(&rsurf->resources[which], pres);
181 struct pipe_resource **resources,
188 resources[i] = NULL;
189 pipe_resource_reference(&resources[i], rsurf->resources[i])
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/drm/
native_drm.h 64 drmModeResPtr resources; member in struct:drm_display
  /external/chromium_org/ui/base/resource/
resource_bundle_unittest.cc 23 #include "ui/resources/grit/ui_resources.h"
139 std::map<uint16, base::StringPiece> resources; local
140 resources[3u] = base::StringPiece(
142 DataPack::WritePack(path, resources, ui::DataPack::BINARY);
417 // In some cases, we fail to mmap resources.pak, but try to keep going anyway.
  /external/chromium_org/ui/views/widget/desktop_aura/
desktop_screen_x11.cc 165 // call through into GetDisplayNearestWindow(). But the X11 resources are
263 XRRScreenResources* resources = local
265 if (!resources) {
280 for (int i = 0; i < resources->noutput; ++i) {
281 RROutput output_id = resources->outputs[i];
283 XRRGetOutputInfo(xdisplay_, resources, output_id);
293 resources,
347 XRRFreeScreenResources(resources);
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_video_buffer.c 252 pipe_resource_reference(&buf->resources[i], NULL);
278 u_sampler_view_default_template(&sv_templ, buf->resources[i], buf->resources[i]->format);
280 if (util_format_get_nr_components(buf->resources[i]->format) == 1)
283 buf->sampler_view_planes[i] = pipe->create_sampler_view(pipe, buf->resources[i], &sv_templ);
316 struct pipe_resource *res = buf->resources[plane_order[i]];
363 if (!buf->resources[j]) {
370 surf_templ.format = vl_video_buffer_surface_format(buf->resources[j]->format);
373 buf->surfaces[surf] = pipe->create_surface(pipe, buf->resources[j], &surf_templ);
440 struct pipe_resource *resources[VL_NUM_COMPONENTS] local
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_scene.h 145 /** list of resources referenced by the scene commands */
146 struct resource_ref *resources; member in struct:lp_scene
154 /** Sum of sizes of all resources referenced by the scene. Sums
  /external/mesa3d/src/gallium/drivers/nouveau/
nouveau_video.h 13 struct pipe_resource *resources[3]; member in struct:nouveau_video_buffer
  /external/mesa3d/src/gallium/state_trackers/egl/common/
native_helper.c 52 struct pipe_resource *resources[NUM_NATIVE_ATTACHMENTS]; member in struct:resource_surface
93 if (rsurf->resources[i])
94 pipe_resource_reference(&rsurf->resources[i], NULL);
158 assert(!rsurf->resources[i]);
160 rsurf->resources[i] =
162 if (rsurf->resources[i])
175 pipe_resource_reference(&rsurf->resources[which], pres);
181 struct pipe_resource **resources,
188 resources[i] = NULL;
189 pipe_resource_reference(&resources[i], rsurf->resources[i])
    [all...]
  /external/mesa3d/src/gallium/state_trackers/egl/drm/
native_drm.h 64 drmModeResPtr resources; member in struct:drm_display
  /external/zxing/qr_scanner/src/com/google/zxing/client/android/
ViewfinderView.java 23 import android.content.res.Resources;
66 Resources resources = getResources(); local
67 maskColor = resources.getColor(R.color.viewfinder_mask);
68 resultColor = resources.getColor(R.color.result_view);
69 frameColor = resources.getColor(R.color.viewfinder_frame);
70 laserColor = resources.getColor(R.color.viewfinder_laser);
71 resultPointColor = resources.getColor(R.color.possible_result_points);
  /frameworks/base/core/java/android/appwidget/
AppWidgetProviderInfo.java 23 import android.content.res.Resources;
246 * @param packageManager Package manager instance for loading resources.
268 * @param context Context for accessing resources.
288 * @param context Context for accessing resources.
367 Resources resources = context.getPackageManager().getResourcesForApplication( local
373 return resources.getDrawableForDensity(resourceId, density);
375 } catch (PackageManager.NameNotFoundException | Resources.NotFoundException e) {
  /frameworks/base/core/java/android/printservice/
PrintServiceInfo.java 24 import android.content.res.Resources;
100 * @param context Context for accessing resources.
125 Resources resources = packageManager.getResourcesForApplication( local
128 TypedArray attributes = resources.obtainAttributes(allAttributes,
147 Log.e(LOG_TAG, "Unable to load resources for: "
  /frameworks/base/core/java/com/android/internal/app/
LocalePicker.java 27 import android.content.res.Resources;
87 final Resources resources = context.getResources(); local
89 final String[] locales = Resources.getSystem().getAssets().getLocales();
100 final String[] specialLocaleCodes = resources.getStringArray(R.array.special_locale_codes);
101 final String[] specialLocaleNames = resources.getStringArray(R.array.special_locale_names);
  /frameworks/base/policy/src/com/android/internal/policy/impl/
IconUtilities.java 34 import android.content.res.Resources;
61 final Resources resources = context.getResources(); local
62 DisplayMetrics metrics = mDisplayMetrics = resources.getDisplayMetrics();
66 mIconWidth = mIconHeight = (int) resources.getDimension(android.R.dimen.app_icon_size);
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
FrameworkActionBar.java 236 RenderResources resources = mBridgeContext.getRenderResources(); local
238 ResourceValue value = resources.findItemInTheme("actionBarSize", true);
241 value = resources.resolveResValue(value);

Completed in 1292 milliseconds

1 2 3 4 5 6 7 891011>>