Searched defs:resource (Results 176 - 200 of 351) sorted by relevance

1234567891011>>

/external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
H A DImageHeaderParser.java1 package com.bumptech.glide.load.resource.bitmap;
3 import static com.bumptech.glide.load.resource.bitmap.ImageHeaderParser.ImageType.GIF;
4 import static com.bumptech.glide.load.resource.bitmap.ImageHeaderParser.ImageType.JPEG;
5 import static com.bumptech.glide.load.resource.bitmap.ImageHeaderParser.ImageType.PNG;
6 import static com.bumptech.glide.load.resource.bitmap.ImageHeaderParser.ImageType.PNG_A;
7 import static com.bumptech.glide.load.resource.bitmap.ImageHeaderParser.ImageType.UNKNOWN;
/external/glide/library/src/main/java/com/bumptech/glide/request/
H A DRequestFutureTarget.java27 * Object resource = target.get();
28 * // Do something with resource, and when finished:
36 * @param <R> The type of the resource that will be loaded.
48 private R resource; field in class:RequestFutureTarget
179 public synchronized void onResourceReady(R resource, GlideAnimation<? super R> glideAnimation) { argument
182 this.resource = resource;
196 return resource;
215 return resource;
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DICUResourceBundleImpl.java50 throw new IllegalStateException("The resource type is unknown");
57 private int resource; field in class:ICUResourceBundleImpl.ResourceBinary
62 return wholeBundle.reader.getBinary(resource);
65 return wholeBundle.reader.getBinary(resource, ba);
67 ResourceBinary(ICUResourceBundleImpl container, String key, int resource) { argument
69 this.resource = resource;
73 private int resource; field in class:ICUResourceBundleImpl.ResourceInt
78 return ICUResourceBundleReader.RES_GET_INT(resource);
81 return ICUResourceBundleReader.RES_GET_UINT(resource);
83 ResourceInt(ICUResourceBundleImpl container, String key, int resource) argument
89 private int resource; field in class:ICUResourceBundleImpl.ResourceString
100 ResourceString(ICUResourceBundleImpl container, String key, int resource) argument
112 private int resource; field in class:ICUResourceBundleImpl.ResourceIntVector
119 ResourceIntVector(ICUResourceBundleImpl container, String key, int resource) argument
205 ResourceArray(ICUResourceBundleImpl container, String key, int resource) argument
302 ResourceTable(ICUResourceBundleImpl container, String key, int resource) argument
[all...]
/external/icu/icu4c/source/i18n/
H A Dnumsys.cpp129 UResourceBundle *resource = ures_open(NULL, inLocale.getName(), &localStatus); local
130 UResourceBundle *numberElementsRes = ures_getByKey(resource,gNumberElements,NULL,&localStatus);
153 ures_close(resource);
255 // TODO: Simple array of UnicodeString objects, based on length of table resource?
/external/icu/icu4c/source/samples/uresb/
H A Duresb.c18 * This program prints out resource bundles - example for
59 void printOutBundle(UFILE *out, UResourceBundle *resource, int32_t indent, UErrorCode *status);
221 void printOutBundle(UFILE *out, UResourceBundle *resource, int32_t indent, UErrorCode *status) { argument
223 const char *key = ures_getKey(resource);
225 switch(ures_getType(resource)) {
229 const UChar*thestr = ures_getString(resource, &len, status);
258 u_fprintf(out, ":int { %li } ", ures_getInt(resource, status));
268 const int8_t *data = (const int8_t *)ures_getBinary(resource, &len, status);
271 u_fprintf(out, "// WARNING: this resource, size %li is truncated to %li\n", len, truncsize/2);
297 const int32_t *data = ures_getIntVector(resource,
[all...]
/external/icu/icu4c/source/tools/genrb/
H A Dderb.cpp46 static void printOutBundle(UFILE *out, UResourceBundle *resource, int32_t indent, const char *pname, UErrorCode *status);
311 reportError(pname, &status, "opening resource file");
392 sprintf(msg, "// WARNING: this resource, size %li is truncated to %li\n",
417 static void printOutBundle(UFILE *out, UResourceBundle *resource, int32_t indent, const char *pname, UErrorCode *status) argument
421 /* int32_t noOfElements = ures_getSize(resource);*/
423 const char *key = ures_getKey(resource);
425 switch(ures_getType(resource)) {
429 const UChar* thestr = ures_getString(resource, &len, status);
436 sprintf(msg, "// WARNING: this resource, size %li is truncated to %li\n",
478 uprv_itou(num, 20, ures_getInt(resource, statu
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DICUResourceBundleImpl.java49 throw new IllegalStateException("The resource type is unknown");
56 private int resource; field in class:ICUResourceBundleImpl.ResourceBinary
61 return wholeBundle.reader.getBinary(resource);
64 return wholeBundle.reader.getBinary(resource, ba);
66 ResourceBinary(ICUResourceBundleImpl container, String key, int resource) { argument
68 this.resource = resource;
72 private int resource; field in class:ICUResourceBundleImpl.ResourceInt
77 return ICUResourceBundleReader.RES_GET_INT(resource);
80 return ICUResourceBundleReader.RES_GET_UINT(resource);
82 ResourceInt(ICUResourceBundleImpl container, String key, int resource) argument
88 private int resource; field in class:ICUResourceBundleImpl.ResourceString
99 ResourceString(ICUResourceBundleImpl container, String key, int resource) argument
111 private int resource; field in class:ICUResourceBundleImpl.ResourceIntVector
118 ResourceIntVector(ICUResourceBundleImpl container, String key, int resource) argument
204 ResourceArray(ICUResourceBundleImpl container, String key, int resource) argument
301 ResourceTable(ICUResourceBundleImpl container, String key, int resource) argument
[all...]
/external/jetty/src/java/org/eclipse/jetty/server/handler/
H A DResourceHandler.java45 import org.eclipse.jetty.util.resource.FileResource;
46 import org.eclipse.jetty.util.resource.Resource;
94 * @return True if resource aliases are allowed.
103 * Set if resource aliases (eg symlink, 8.3 names, case insensitivity) are allowed.
180 * @return Returns the base resource as a string.
201 * @param resourceBase The base resource as a string.
392 Resource resource = getResource(request);
394 if (resource==null || !resource.exists())
398 resource
497 doDirectory(HttpServletRequest request,HttpServletResponse response, Resource resource) argument
518 doResponseHeaders(HttpServletResponse response, Resource resource, String mimeType) argument
[all...]
/external/jetty/src/java/org/eclipse/jetty/servlet/
H A DDefaultServlet.java65 import org.eclipse.jetty.util.resource.FileResource;
66 import org.eclipse.jetty.util.resource.Resource;
67 import org.eclipse.jetty.util.resource.ResourceCollection;
68 import org.eclipse.jetty.util.resource.ResourceFactory;
100 * gzip content encoded if a matching resource is
103 * resourceBase Set to replace the context resource base
261 LOG.debug("ignoring resource cache configuration, using resourceCache attribute");
263 throw new UnavailableException("resourceCache specified with resource bases");
298 LOG.debug("resource base = "+_resourceBase);
360 * Map a path to a resource
674 passConditionalHeaders(HttpServletRequest request,HttpServletResponse response, Resource resource, HttpContent content) argument
813 sendDirectory(HttpServletRequest request, HttpServletResponse response, Resource resource, String pathInContext) argument
854 sendData(HttpServletRequest request, HttpServletResponse response, boolean include, Resource resource, HttpContent content, Enumeration reqRanges) argument
[all...]
/external/jetty/src/java/org/eclipse/jetty/webapp/
H A DOrdering.java28 import org.eclipse.jetty.util.resource.Resource;
86 //remove resource from list for resource matching name of descriptor
260 //no fragment for this resource so cannot have any ordering directives
441 * Insert the resource matching the fragName into the list of resources
457 protected void insert(List<Resource> list, int index, Resource resource) argument
464 list.add(resource);
466 list.add(index, resource);
/external/libchrome/sandbox/linux/services/
H A Dsyscall_wrappers.cc10 #include <sys/resource.h>
79 int resource,
82 int res = syscall(__NR_prlimit64, pid, resource, new_limit, old_limit);
78 sys_prlimit64(pid_t pid, int resource, const struct rlimit64* new_limit, struct rlimit64* old_limit) argument
/external/mesa3d/src/gallium/drivers/galahad/
H A Dglhd_screen.c208 glhd_warn("Received bogus resource target %d", templat->target);
257 struct pipe_resource *resource = glhd_resource->resource; local
261 return screen->resource_get_handle(screen, resource, handle);
283 struct pipe_resource *resource = glhd_resource->resource; local
286 resource,
/external/mesa3d/src/gallium/drivers/identity/
H A Did_screen.c174 struct pipe_resource *resource = id_resource->resource; local
178 return screen->resource_get_handle(screen, resource, handle);
200 struct pipe_resource *resource = id_resource->resource; local
203 resource,
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dr600_texture.c43 struct pipe_resource *texture = transfer->resource;
55 struct pipe_resource *texture = transfer->resource;
179 * If so, don't use a staging resource.
224 struct si_resource *resource = &rtex->resource; local
228 rscreen->ws->buffer_set_tiling(resource->buf,
240 return rscreen->ws->buffer_get_handle(resource->buf,
248 struct si_resource *resource = &rtex->resource; local
253 pb_reference(&resource
271 struct pipe_resource resource; local
475 struct si_resource *resource; local
631 struct pipe_resource resource; local
[all...]
/external/mesa3d/src/gallium/drivers/rbug/
H A Drbug_screen.c175 struct pipe_resource *resource = rb_resource->resource; local
177 return screen->resource_get_handle(screen, resource, handle);
198 struct pipe_resource *resource = rb_resource->resource; local
201 resource,
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_texture.c254 * Get a pipe_surface "view" into a texture resource.
304 * a resource object.
306 * \param resource the resource to transfer in/out of
313 struct pipe_resource *resource,
318 struct softpipe_resource *spr = softpipe_resource(resource);
321 assert(resource);
322 assert(level <= resource->last_level);
325 assert(box->x + box->width <= u_minify(resource->width0, level));
326 if (resource
312 softpipe_get_transfer(struct pipe_context *pipe, struct pipe_resource *resource, unsigned level, unsigned usage, const struct pipe_box *box) argument
[all...]
/external/mesa3d/src/gallium/drivers/trace/
H A Dtr_screen.c218 struct pipe_resource *resource = tr_res->resource; local
223 trace_dump_arg(ptr, resource);
230 screen->flush_frontbuffer(screen, resource, level, layer, context_private);
291 struct pipe_resource *resource = tr_resource->resource; local
295 return screen->resource_get_handle(screen, resource, handle);
307 struct pipe_resource *resource = tr_res->resource; local
309 assert(resource
[all...]
/external/mesa3d/src/gallium/state_trackers/egl/wayland/
H A Dnative_drm.c98 struct pipe_resource *resource; local
103 resource = resource_surface_get_single_resource(surface->rsurf, attachment);
107 screen->resource_get_handle(screen, resource, &wsh);
109 pipe_resource_reference(&resource, NULL);
/external/replicaisland/src/com/replica/replicaisland/
H A DLevelTree.java32 public int resource; field in class:LevelTree.Level
44 resource = level;
72 public static final boolean isLoaded(int resource) { argument
73 return mLoaded && mLoadedResource == resource;
76 public static final void loadLevelTree(int resource, Context context) { argument
77 if (levels.size() > 0 && mLoadedResource == resource) {
82 XmlResourceParser parser = context.getResources().getXml(resource);
124 if (parser.getAttributeName(i).equals("resource")) {
151 if (parser.getAttributeName(i).equals("resource")) {
163 if (parser.getAttributeName(i).equals("resource")) {
[all...]
H A DSoundSystem.java62 public Sound load(int resource) { argument
63 final int index = findSound(resource);
70 result.resource = resource;
71 result.soundId = mSoundPool.load(context, resource, 1);
162 private final int findSound(int resource) { argument
163 mSearchDummy.resource = resource;
176 public int resource; field in class:SoundSystem.Sound
189 result = object1.resource
[all...]
/external/skia/src/gpu/
H A DGrResourceProvider.cpp113 GrGpuResource* resource = this->cache()->findAndRefScratchResource(key, size, scratchFlags); local
114 if (resource) {
115 return static_cast<GrIndexBuffer*>(resource);
142 GrGpuResource* resource = this->cache()->findAndRefScratchResource(key, size, scratchFlags); local
143 if (resource) {
144 return static_cast<GrVertexBuffer*>(resource);
/external/svox/pico/lib/
H A Dpicoapi.c304 * pico_loadResource : Loads a resource file into the Pico system
306 * @param *lingwareFileName : lingware resource file name
307 * @param *outLingware : pointer to receive the loaded lingware resource memory area address
326 PICODBG_DEBUG(("memory usage before resource loading"));
330 PICODBG_DEBUG(("memory used to load resource %s", lingwareFileName));
338 * pico_unloadResource : unLoads a resource file from the Pico system
340 * @param *inoutLingware : pointer to the loaded lingware resource memory area address
360 PICODBG_DEBUG(("memory usage before resource unloading"));
364 PICODBG_DEBUG(("memory released by resource unloading"));
373 * pico_getResourceName : Gets a resource nam
382 pico_getResourceName( pico_System system, pico_Resource resource, pico_Retstring outName) argument
[all...]
/external/webrtc/webrtc/libjingle/xmpp/
H A Djid.cc214 // Checks and normalizes the resource part of a JID.
215 std::string Jid::PrepResource(const std::string& resource, bool* valid) { argument
219 for (std::string::const_iterator i = resource.begin();
220 i < resource.end(); ++i) {
239 // Returns the appropriate mapping for an ASCII character in a resource.
H A Dxmppclientsettings.h35 void set_resource(const std::string& resource) { resource_ = resource; } argument
50 const std::string& resource() const { return resource_; } function in class:buzz::XmppUserSettings
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-trax.jar ... org.apache.tools.ant.types.Resource resource javax.xml.transform.Source src private ...

Completed in 4126 milliseconds

1234567891011>>