HomeSort by relevance Sort by last modified time
    Searched refs:resource (Results 676 - 700 of 2028) sorted by null

<<21222324252627282930>>

  /external/icu4c/extra/uconv/
resfiles.mk 2 # A small makefile containing the list of resource bundles
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_vertex_buffers.h 96 struct pipe_resource *resource; member in struct:vl_vertex_buffer::__anon24888
102 struct pipe_resource *resource; member in struct:vl_vertex_buffer::__anon24889
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_flush.c 99 struct pipe_resource *resource,
109 referenced = llvmpipe_is_resource_referenced(pipe, resource, level, layer);
  /external/mesa3d/src/gallium/drivers/trace/
tr_texture.h 43 struct pipe_resource *resource; member in struct:trace_resource
114 (void)trace_resource(transfer->resource);
  /external/mesa3d/src/gallium/state_trackers/d3d1x/gd3dapi/
galliumcom.idl 43 // turn Gallium resource into API resource
45 [in] struct pipe_resource* resource,
61 * - non-PS samplers and shader resource views
  /external/replicaisland/src/com/replica/replicaisland/
LevelTree.java 32 public int resource; field in class:LevelTree.Level
44 resource = level;
72 public static final boolean isLoaded(int resource) {
73 return mLoaded && mLoadedResource == resource;
76 public static final void loadLevelTree(int resource, Context context) {
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...]
  /external/valgrind/main/include/
pub_tool_libcproc.h 61 Resource limits and capabilities
64 extern Int VG_(getrlimit) ( Int resource, struct vki_rlimit *rlim );
65 extern Int VG_(setrlimit) ( Int resource, const struct vki_rlimit *rlim );
  /frameworks/rs/java/tests/HelloComputeNDK/src/com/example/android/rs/hellocomputendk/
HelloComputeNDK.java 54 private Bitmap loadBitmap(int resource) {
57 return BitmapFactory.decodeResource(getResources(), resource, options);
  /external/chromium_org/ppapi/shared_impl/
tracked_callback.cc 19 #include "ppapi/shared_impl/resource.h"
42 // Note: don't keep a Resource* since it may go out of scope before us.
44 Resource* resource,
47 resource_id_(resource ? resource->pp_resource() : 0),
59 if (resource) {
61 resource->pp_instance());
96 // where the callback was previously Aborted because its associated Resource
235 // We may not have a valid resource, in which case we're not in the tracker
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintDeltaProcessor.java 114 IResource resource = delta.getResource(); local
115 String name = resource.getName();
117 if (resource.equals(mActiveFile)) {
118 mFiles.add(resource);
126 // since lint will resolve full paths and the resource markers won't go
132 mFiles.add(resource);
152 * Start listening to the resource monitor
154 * @param resourceMonitor the resource monitor
190 * Stop listening to the resource monitor
192 * @param resourceMonitor the resource monito
    [all...]
LintFixGenerator.java 125 IResource resource = marker.getResource(); local
129 if (resource.getName().endsWith(DOT_JAVA)) {
134 resolutions.add(new SuppressProposal(resource, id, false));
135 resolutions.add(new SuppressProposal(resource.getProject(), id, true /* all */));
136 resolutions.add(new SuppressProposal(resource, id, true /* all */));
137 resolutions.add(new ClearMarkersProposal(resource, true /* all */));
214 * @param resource the resource associated with the markers
217 public static void suppressDetector(String id, boolean updateMarkers, IResource resource,
223 Collections.singletonList(resource), null, false)
253 IResource resource = marker.getResource(); local
403 IResource resource = mGlobal ? mResource.getProject() : mResource; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
XmlStringFileHelper.java 38 * An helper utility to get IDs out of an Android XML resource file.
70 * Utility method that retrieves all the *string* IDs defined in the given Android resource
99 // Access the project that contains the resource that contains the compilation unit
100 IResource resource = project.getFile(xmlFileWsPath); local
102 if (resource != null && resource.exists() && resource.getType() == IResource.FILE) {
106 IFile file = (IFile) resource;
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
dispatch.py 88 file to a resource string by removing the path to the base directory from
179 This class maintains a map from resource name to handlers.
215 """Add resource path alias.
221 alias_resource_path: alias resource path
222 existing_resource_path: existing resource path
333 def get_handler_suite(self, resource):
339 if '#' in resource:
340 resource, fragment = resource.split('#', 1)
341 if '?' in resource
    [all...]
  /external/chromium_org/chrome/browser/extensions/
image_loader.cc 25 #include "ui/base/resource/resource_bundle.h"
85 base::FilePath path = image_info.resource.GetFilePath();
126 const ExtensionResource& resource,
130 : resource(resource),
180 // A map from a resource path to the resource ID. Used only by
243 const ExtensionResource& resource,
248 resource,
271 DCHECK(it->resource.relative_path().empty() |
    [all...]
  /external/chromium_org/chrome/browser/task_manager/
task_manager.cc 46 #include "ui/base/resource/resource_bundle.h"
57 using task_manager::Resource;
734 Resource* resource = GetResource(index); local
735 GroupMap::const_iterator iter = group_map_.find(resource->GetProcess());
738 return ((*group)[0] == resource);
742 Resource* resource = GetResource(index); local
743 GroupMap::const_iterator iter = group_map_.find(resource->GetProcess());
746 return (group->back() == resource);
765 Resource* resource = GetResource(index); local
1342 Resource* resource = NULL; local
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
dispatch.py 88 file to a resource string by removing the path to the base directory from
179 This class maintains a map from resource name to handlers.
215 """Add resource path alias.
221 alias_resource_path: alias resource path
222 existing_resource_path: existing resource path
339 def get_handler_suite(self, resource):
345 if '#' in resource:
346 resource, fragment = resource.split('#', 1)
347 if '?' in resource
    [all...]
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_service.cc 361 UnsafeResource resource; local
362 resource.url = url;
363 resource.original_url = original_url;
364 resource.redirect_urls = redirect_urls;
365 resource.resource_type = resource_type;
366 resource.threat_type= result;
367 resource.client = client;
368 resource.render_process_host_id = render_process_host_id;
369 resource.render_view_id = render_view_id;
375 this, &SafeBrowsingService::DoDisplayBlockingPage, resource));
452 const UnsafeResource& resource = *iter; local
    [all...]
  /external/smack/src/org/jivesoftware/smack/
SASLAuthentication.java.orig 36 * <p>This class is responsible authenticating the user using SASL, binding the resource
50 * <p>Once the user has been authenticated with SASL, it is necessary to bind a resource for
51 * the connection. If no resource is passed in {@link #authenticate(String, String, String)}
52 * then the server will assign a resource for the connection. In case a resource is passed
53 * then the server will receive the desired resource but may assign a modified resource for
56 * <p>Once a resource has been binded and if the server supports sessions then Smack will establish
204 * then resource binding and session establishment will be performed. This method will return
205 * the full JID provided by the server while binding a resource to the connection.<p>
    [all...]
  /external/chromium_org/content/renderer/pepper/
pepper_video_source_host.cc 65 PP_Resource resource)
66 : ResourceHost(host->GetPpapiHost(), instance, resource),
142 ppapi::ScopedPPResource resource(
151 if (!resource.get()) {
157 enter_resource(resource, false);
189 host_resource.SetHostResource(pp_instance(), resource.get());
210 resource.Release();
  /external/chromium_org/ppapi/host/
ppapi_host.cc 100 void PpapiHost::SendUnsolicitedReply(PP_Resource resource,
105 DCHECK(resource); // If this fails, host is probably pending.
106 proxy::ResourceMessageReplyParams params(resource, 0);
126 // The resource ID should not be assigned.
228 // Resource should have been assigned a nonzero PP_Resource.
249 void PpapiHost::OnHostMsgResourceDestroyed(PP_Resource resource) {
250 ResourceMap::iterator found = resources_.find(resource);
259 // |resource|.
264 ResourceHost* PpapiHost::GetResourceHost(PP_Resource resource) const {
265 ResourceMap::const_iterator found = resources_.find(resource);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
memory.cpp 24 #include "core/resource.hpp"
76 clover::resource &
77 root_buffer::resource(cl_command_queue q) { function in class:root_buffer
78 // Create a new resource if there's none for this device yet.
99 clover::resource &
100 sub_buffer::resource(cl_command_queue q) { function in class:sub_buffer
101 // Create a new resource if there's none for this device yet.
103 auto r = new sub_resource(parent.resource(q), { offset() });
127 clover::resource &
128 image::resource(cl_command_queue q) function in class:image
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/core/
memory.cpp 24 #include "core/resource.hpp"
76 clover::resource &
77 root_buffer::resource(cl_command_queue q) { function in class:root_buffer
78 // Create a new resource if there's none for this device yet.
99 clover::resource &
100 sub_buffer::resource(cl_command_queue q) { function in class:sub_buffer
101 // Create a new resource if there's none for this device yet.
103 auto r = new sub_resource(parent.resource(q), { offset() });
127 clover::resource &
128 image::resource(cl_command_queue q) function in class:image
    [all...]
  /external/skia/tools/
skdiff_utils.cpp 51 bool get_bitmap(SkData* fileBits, DiffResource& resource, SkImageDecoder::Mode mode) {
56 SkDebugf("ERROR: no codec found for <%s>\n", resource.fFullPath.c_str());
57 resource.fStatus = DiffResource::kCouldNotDecode_Status;
66 if (!codec->decode(&stream, &resource.fBitmap, SkBitmap::kARGB_8888_Config, mode)) {
67 SkDebugf("ERROR: codec failed for basePath <%s>\n", resource.fFullPath.c_str());
68 resource.fStatus = DiffResource::kCouldNotDecode_Status;
72 resource.fStatus = DiffResource::kDecoded_Status;
  /frameworks/base/tools/layoutlib/bridge/src/android/util/
BridgeXmlPullAttributes.java 266 ResourceValue resource = getResourceValue(value); local
267 if (resource != null) {
269 if (mPlatformFile || resource.isFramework()) {
270 id = Bridge.getResourceId(resource.getResourceType(), resource.getName());
273 resource.getResourceType(), resource.getName());
  /libcore/luni/src/main/java/javax/xml/xpath/
XPathFactoryFinder.java 89 * to be used to load resource, {@link SchemaFactory}, and
203 for (URL resource : createServiceFileIterator()) {
204 if (debug) debugPrintln("looking into " + resource);
206 xpf = loadFromServicesFile(uri, resource.toExternalForm(), resource.openStream());
210 debugPrintln("failed to read "+resource);
331 URL resource = XPathFactoryFinder.class.getClassLoader().getResource(SERVICE_ID); local
332 return Collections.singleton(resource);
364 * @return the source location of the resource, or null if it wasn't found

Completed in 538 milliseconds

<<21222324252627282930>>