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

1 2 3 4 5 6 7 8 91011>>

  /external/mdnsresponder/android/caseMapping/
Resource.h 1 #include <resource.h>
  /bionic/libc/kernel/uapi/asm-arm/asm/
resource.h 19 #include <asm-generic/resource.h>
  /bionic/libc/kernel/uapi/asm-arm64/asm/
resource.h 19 #include <asm-generic/resource.h>
  /bionic/libc/kernel/uapi/asm-x86/asm/
resource.h 19 #include <asm-generic/resource.h>
  /external/kernel-headers/original/uapi/asm-arm/asm/
resource.h 1 #include <asm-generic/resource.h>
  /external/kernel-headers/original/uapi/asm-arm64/asm/
resource.h 1 #include <asm-generic/resource.h>
  /external/kernel-headers/original/uapi/asm-x86/asm/
resource.h 1 #include <asm-generic/resource.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/asm/
resource.h 1 #include <asm-generic/resource.h>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/asm/
resource.h 1 #include <asm-generic/resource.h>
  /external/apache-harmony/support/src/test/java/tests/support/
Support_GetResource.java 22 public static String getResourceURL(String resource) {
23 return "http://" + Support_Configuration.TestResources + resource;
  /libcore/support/src/test/java/tests/support/
Support_GetResource.java 22 public static String getResourceURL(String resource) {
23 return "http://" + Support_Configuration.TestResources + resource;
  /external/mesa3d/src/gallium/targets/haiku-softpipe/
SoftwareRenderer.rdef 6 resource app_signature "application/x-vnd.Haiku-swpipe";
8 resource app_version {
18 resource vector_icon {
  /external/glide/library/src/main/java/com/bumptech/glide/request/target/
GlideDrawableImageViewTarget.java 5 import com.bumptech.glide.load.resource.drawable.GlideDrawable;
15 private GlideDrawable resource; field in class:GlideDrawableImageViewTarget
19 * {@link com.bumptech.glide.load.resource.drawable.GlideDrawable} in an {@link android.widget.ImageView}.
29 * {@link com.bumptech.glide.load.resource.drawable.GlideDrawable} in an {@link android.widget.ImageView}.
32 * @param maxLoopCount A value to pass to to {@link com.bumptech.glide.load.resource.drawable.GlideDrawable}s
34 * {@link com.bumptech.glide.load.resource.drawable.GlideDrawable#setLoopCount(int)}.
47 * @param resource {@inheritDoc}
51 public void onResourceReady(GlideDrawable resource, GlideAnimation<? super GlideDrawable> animation) {
52 if (!resource.isAnimated()) {
60 float drawableRatio = resource.getIntrinsicWidth() / (float) resource.getIntrinsicHeight()
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_resource.py 5 resource = test_support.import_module('resource') variable
7 # This test is checking a few specific problem spots with the resource module.
12 self.assertRaises(TypeError, resource.getrlimit)
13 self.assertRaises(TypeError, resource.getrlimit, 42, 42)
14 self.assertRaises(TypeError, resource.setrlimit)
15 self.assertRaises(TypeError, resource.setrlimit, 42, 42, 42)
19 (cur, max) = resource.getrlimit(resource.RLIMIT_FSIZE)
28 self.assertEqual(resource.RLIM_INFINITY, max)
    [all...]
  /external/skia/tools/
Resources.h 19 SkString GetResourcePath(const char* resource = "");
25 sk_sp<SkData> GetResourceAsData(const char* resource);
27 inline bool GetResourceAsBitmap(const char* resource, SkBitmap* dst) {
28 return DecodeDataToBitmap(GetResourceAsData(resource), dst);
31 inline sk_sp<SkImage> GetResourceAsImage(const char* resource) {
32 return SkImage::MakeFromEncoded(GetResourceAsData(resource));
35 std::unique_ptr<SkStreamAsset> GetResourceAsStream(const char* resource);
37 sk_sp<SkTypeface> MakeResourceAsTypeface(const char* resource);
  /external/skqp/tools/
Resources.h 19 SkString GetResourcePath(const char* resource = "");
25 sk_sp<SkData> GetResourceAsData(const char* resource);
27 inline bool GetResourceAsBitmap(const char* resource, SkBitmap* dst) {
28 return DecodeDataToBitmap(GetResourceAsData(resource), dst);
31 inline sk_sp<SkImage> GetResourceAsImage(const char* resource) {
32 return SkImage::MakeFromEncoded(GetResourceAsData(resource));
35 std::unique_ptr<SkStreamAsset> GetResourceAsStream(const char* resource);
37 sk_sp<SkTypeface> MakeResourceAsTypeface(const char* resource);
  /build/make/tools/droiddoc/templates-pdk/assets/
android-developer-resource-browser.css 0 /* Resource Browser */
3 #resource-browser-results .no-results {
8 #resource-browser-results .result {
15 #resource-browser-results .tagged-article {
16 background-image: url(images/resource-article.png);
19 #resource-browser-results .tagged-sample {
20 background-image: url(images/resource-sample.png);
23 #resource-browser-results .tagged-tutorial {
24 background-image: url(images/resource-tutorial.png);
27 #resource-browser-results .resource-meta
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/bfin/
resource_conflict.l 2 .*:3: Error: resource conflict in multi-issue instruction.
3 .*:4: Error: resource conflict in multi-issue instruction.
4 .*:5: Error: resource conflict in multi-issue instruction.
5 .*:6: Error: resource conflict in multi-issue instruction.
6 .*:7: Error: resource conflict in multi-issue instruction.
7 .*:8: Error: resource conflict in multi-issue instruction.
8 .*:10: Error: resource conflict in multi-issue instruction.
9 .*:11: Error: resource conflict in multi-issue instruction.
10 .*:12: Error: resource conflict in multi-issue instruction.
11 .*:13: Error: resource conflict in multi-issue instruction
    [all...]
  /external/python/cpython3/Lib/test/
test_resource.py 8 resource = support.import_module('resource') variable
10 # This test is checking a few specific problem spots with the resource module.
15 self.assertRaises(TypeError, resource.getrlimit)
16 self.assertRaises(TypeError, resource.getrlimit, 42, 42)
17 self.assertRaises(TypeError, resource.setrlimit)
18 self.assertRaises(TypeError, resource.setrlimit, 42, 42, 42)
22 (cur, max) = resource.getrlimit(resource.RLIMIT_FSIZE)
31 self.assertEqual(resource.RLIM_INFINITY, max
    [all...]
  /external/python/cpython2/Lib/test/
test_resource.py 5 resource = test_support.import_module('resource') variable
7 # This test is checking a few specific problem spots with the resource module.
12 self.assertRaises(TypeError, resource.getrlimit)
13 self.assertRaises(TypeError, resource.getrlimit, 42, 42)
14 self.assertRaises(TypeError, resource.setrlimit)
15 self.assertRaises(TypeError, resource.setrlimit, 42, 42, 42)
19 (cur, max) = resource.getrlimit(resource.RLIMIT_FSIZE)
27 self.assertEqual(resource.RLIM_INFINITY, max
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_resource.py 5 resource = test_support.import_module('resource') variable
7 # This test is checking a few specific problem spots with the resource module.
12 self.assertRaises(TypeError, resource.getrlimit)
13 self.assertRaises(TypeError, resource.getrlimit, 42, 42)
14 self.assertRaises(TypeError, resource.setrlimit)
15 self.assertRaises(TypeError, resource.setrlimit, 42, 42, 42)
19 (cur, max) = resource.getrlimit(resource.RLIMIT_FSIZE)
28 self.assertEqual(resource.RLIM_INFINITY, max
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_resource.py 5 resource = test_support.import_module('resource') variable
7 # This test is checking a few specific problem spots with the resource module.
12 self.assertRaises(TypeError, resource.getrlimit)
13 self.assertRaises(TypeError, resource.getrlimit, 42, 42)
14 self.assertRaises(TypeError, resource.setrlimit)
15 self.assertRaises(TypeError, resource.setrlimit, 42, 42, 42)
19 (cur, max) = resource.getrlimit(resource.RLIMIT_FSIZE)
28 self.assertEqual(resource.RLIM_INFINITY, max
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_resource.py 5 resource = test_support.import_module('resource') variable
7 # This test is checking a few specific problem spots with the resource module.
12 self.assertRaises(TypeError, resource.getrlimit)
13 self.assertRaises(TypeError, resource.getrlimit, 42, 42)
14 self.assertRaises(TypeError, resource.setrlimit)
15 self.assertRaises(TypeError, resource.setrlimit, 42, 42, 42)
19 (cur, max) = resource.getrlimit(resource.RLIMIT_FSIZE)
28 self.assertEqual(resource.RLIM_INFINITY, max
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_resource.py 5 resource = test_support.import_module('resource') variable
7 # This test is checking a few specific problem spots with the resource module.
12 self.assertRaises(TypeError, resource.getrlimit)
13 self.assertRaises(TypeError, resource.getrlimit, 42, 42)
14 self.assertRaises(TypeError, resource.setrlimit)
15 self.assertRaises(TypeError, resource.setrlimit, 42, 42, 42)
19 (cur, max) = resource.getrlimit(resource.RLIMIT_FSIZE)
28 self.assertEqual(resource.RLIM_INFINITY, max
    [all...]
  /external/mesa3d/src/gallium/drivers/swr/
swr_resource.h 57 swr_resource(struct pipe_resource *resource)
59 return (struct swr_resource *)resource;
63 swr_resource_is_texture(const struct pipe_resource *resource)
65 switch (resource->target) {
85 swr_resource_data(struct pipe_resource *resource)
87 struct swr_resource *swr_r = swr_resource(resource);
89 assert(!swr_resource_is_texture(resource));
100 struct pipe_resource *resource,
107 * Functions to indicate a resource's in-use status.
116 swr_resource_read(struct pipe_resource *resource)
    [all...]

Completed in 552 milliseconds

1 2 3 4 5 6 7 8 91011>>