HomeSort by relevance Sort by last modified time
    Searched full:resource (Results 76 - 100 of 4289) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium/chrome/browser/task_manager/
task_manager.h 38 // A resource represents one row in the task manager.
40 class Resource {
42 virtual ~Resource() {}
73 // Return extension associated with the resource, or NULL
85 // Whether this resource does report the network usage accurately.
105 // Returns true if this resource is not visible to the user because it lives
112 // to receive resource creation/termination notifications with a call to
113 // StartUpdating(). At that point, the resource provider should call
116 // The provider remains the owner of the resource objects and is responsible
124 // Should return the resource associated to the specified ids, or NULL i
    [all...]
  /external/webkit/LayoutTests/http/tests/appcache/
xhr-foreign-resource.html 1 <html manifest="resources/xhr-foreign-resource.manifest">
3 <p>Test that a resource marked as foreign can still be loaded via XHR.</p>
24 ifr.setAttribute("src", "resources/xhr-foreign-resource-frame.html");
30 // A copy that doesn't have its main resource in cache manifest.
32 ifr.setAttribute("src", "resources/xhr-foreign-resource-frame.html?");
58 // The subframe has a different cache, but it is also listed as a resource in main frame's
62 req.open("GET", "resources/xhr-foreign-resource-frame.html", false);
  /external/webkit/Source/WebCore/inspector/front-end/
AuditRules.js 42 304: true // Underlying resource is cacheable
49 var resource = resources[i];
50 if (types && types.indexOf(resource.type) === -1)
52 var parsedURL = resource.url.asParsedURL();
61 domainResources.push(needFullResources ? resource : resource.url);
79 var resource = resources[i];
80 if (resource.statusCode === 304)
82 if (this._shouldCompress(resource)) {
83 var size = resource.resourceSize
    [all...]
  /external/chromium/chrome/common/extensions/
extension_resource_unittest.cc 18 ExtensionResource resource; local
20 EXPECT_TRUE(resource.extension_root().empty());
21 EXPECT_TRUE(resource.relative_path().empty());
22 EXPECT_TRUE(resource.GetFilePath().empty());
38 ExtensionResource resource(extension_id, root_path, relative_path);
41 EXPECT_EQ(root_path.value(), resource.extension_root().value());
42 EXPECT_EQ(relative_path.value(), resource.relative_path().value());
43 EXPECT_TRUE(resource.GetFilePath().empty());
50 // Create resource in the extension root.
74 ExtensionResource resource(extension_id, temp.path()
    [all...]
extension_resource.h 13 // Represents a resource inside an extension. For example, an image, or a
27 // Returns actual path to the resource (default or locale specific). In the
32 // Gets the physical file path for the extension resource, taking into account
52 // The id of the extension that this resource is associated with.
58 // Relative path to resource.
61 // Full path to extension resource. Starts empty.
  /development/samples/ApiDemos/src/com/example/android/apis/content/
_index.html 7 <dd>Demonstrates loading styled text (bold, italic) defined in a resource file. </dd>
10 <dd>Demonstrates loading styled strings from a resource file, and extracting the raw text. </dd>
14 can be used to define multiple configurations for a layout resource that
18 <dd>Shows how you can vary a layout resource based on the device's smallest
22 <dd>Shows how you can vary a layout resource based on the device's current
  /external/icu4c/samples/layout/
LayoutSample.rc 1 //Microsoft Developer Studio generated resource script.
3 #include "resource.h"
8 // Generated from the TEXTINCLUDE 2 resource.
76 "resource.h\0"
109 // Generated from the TEXTINCLUDE 3 resource.
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/win/
TestNetscapePlugin.rc 1 // Microsoft Visual C++ generated resource script.
3 #include "resource.h"
8 // Generated from the TEXTINCLUDE 2 resource.
32 "resource.h\0"
96 // Generated from the TEXTINCLUDE 3 resource.
  /external/webkit/Tools/WinLauncher/
WinLauncher.rc 1 // Microsoft Visual C++ generated resource script.
3 #include "resource.h"
8 // Generated from the TEXTINCLUDE 2 resource.
92 "resource.h\0"
131 // Generated from the TEXTINCLUDE 3 resource.
  /sdk/layoutlib_api/src/com/android/ide/common/rendering/api/
RenderResources.java 25 * convenience methods to resolve resource and theme references.
73 * Returns a framework resource by type and name. The returned resource is resolved.
74 * @param resourceType the type of the resource
75 * @param resourceName the name of the resource
82 * Returns a project resource by type and name. The returned resource is resolved.
83 * @param resourceType the type of the resource
84 * @param resourceName the name of the resource
133 * @param reference the resource reference to search for
    [all...]
  /external/icu4c/common/unicode/
resbund.h 18 * constructor which attempts to read resource bundle
27 * 3/13/97 aliu Rewrote to load in entire resource bundle and store
57 * \brief C++ API: Resource Bundle
63 * A class representing a collection of resource information pertaining to a given
64 * locale. A resource bundle provides a way of accessing locale- specfic information in
65 * a data file. You create a resource bundle that manages the resources for a given
68 * Resource bundles in ICU4C are currently defined using text files which conform to the following
70 * More on resource bundle concepts and syntax can be found in the
88 * @param locale This is the locale this resource bundle is for. To get resources
91 * and all subsequent calls to that resource bundle will retur
    [all...]
ures.h 19 * 06/24/02 weiv Added support for resource sharing
32 * \brief C API: Resource Bundle
34 * <h2>C API: Resource Bundle</h2>
36 * C API representing a collection of resource information pertaining to a given
37 * locale. A resource bundle provides a way of accessing locale- specific information in
38 * a data file. You create a resource bundle that manages the resources for a given
41 * Resource bundles in ICU4C are currently defined using text files which conform to the following
43 * More on resource bundle concepts and syntax can be found in the
49 * UResourceBundle is an opaque type for handles for resource bundles in C APIs.
60 * Numeric constants for types of resource items
    [all...]
  /external/webkit/Source/WebCore/loader/cache/
CachedResourceLoader.cpp 140 CachedImage* resource = static_cast<CachedImage*>(requestResource(CachedResource::ImageResource, url, String())); local
141 if (autoLoadImages() && resource && resource->stillNeedsLoad()) {
144 return resource;
147 resource->setLoading(true);
148 load(resource, true);
150 return resource;
244 // These resource can inject script into the current document.
302 // If only the fragment identifiers differ, it is the same resource.
327 // See if we can use an existing resource from the cache
328 CachedResource* resource = memoryCache()->resourceForURL(url); local
387 CachedResource* resource = createResource(type, url, charset); local
516 CachedResource* resource = it->second.get(); local
555 CachedResource* resource = it->second.get(); local
701 CachedResource* resource = requestResource(type, url, encoding, ResourceLoadPriorityUnresolved, true); local
    [all...]
  /external/chromium/base/
resource_util.cc 29 void* resource = LockResource(hres); local
30 if (!resource)
33 *data = resource;
  /external/chromium/chrome/browser/debugger/manual_tests/
console-call-line-numbers.html 14 resource URLs and line numbers. Also verify that errors and warnings show up inline as bubbles in the
15 Resource panel file list and each individual resource view.</p>
  /external/chromium/chrome/browser/ui/webui/
web_ui_util.h 21 // resource for the |resource_id| is an image, therefore it is the
22 // caller's responsibility to make sure the resource is indeed an
23 // image. Returns empty string if a resource does not exist for given
  /external/icu4c/samples/uresb/
en.txt 8 "Missing resource",
23 "Resource type mismatch",
29 resourcebundles { "This is resource bundle help topic" }
  /external/webkit/LayoutTests/http/tests/appcache/resources/
different-https-origin-resource.html 1 <html manifest="https://127.0.0.1:8443/appcache/resources/different-https-origin-resource.manifest">
14 result = "FAIL: Different https origin resource is getting downloaded to cache.";
25 // The only resource listed in the manifest file is in a different https origin and should be skipped.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
XmlFormatStyle.java 28 * newlines between different types of elements. As another example, in resource files,
37 /** Resource style: one line per complete element including text child content */
38 RESOURCE,
49 * Returns the {@link XmlFormatStyle} to use for a resource of the given type
51 * @param resourceType the type of resource to be formatted
67 return RESOURCE;
75 * Returns the {@link XmlFormatStyle} to use for resource files in the given resource
78 * @param folderType the type of folder containing the resource file
83 return RESOURCE;
    [all...]
  /external/chromium/chrome/common/extensions/docs/static/
experimental.webInspector.resources.html 13 Network resource information is represented in HTTP Archive format
25 <p>Note that resource content is not provided as part of HAR for efficieny
26 reasons. You may call resource's <code>getContent()</code> method to retrieve
38 experimental.webInspector.resources.onFinished.addListener(function(resource) {
39 if (resource.response.bodySize > 40*1024)
40 webInspector.log("Large image: " + resource.request.url);
  /frameworks/base/docs/html/resources/
browser.jd 5 {@literal @import} "{@docRoot}assets/android-developer-resource-browser.css";
8 <script type="text/javascript" src="{@docRoot}assets/android-developer-resource-browser.js"></script>
12 <p style="display: none; float: right">Filter: <input id="resource-browser-keyword-filter"/></p>
13 <p id="resource-browser-search-params">Showing all technical resources:</p>
23 <div id="resource-browser-results">
34 <p class="resource-meta"><%
topics.jd 1 page.title=Technical Resource Topics
5 #resource-topic-table td {
13 #resource-topic-table ul {
18 #resource-topic-table li {
38 <table id="resource-topic-table">
54 topicParent = $('ul', $('<td><ul>').appendTo('#resource-topic-table tr'));
  /frameworks/opt/inputmethodcommon/java/com/android/inputmethodcommon/
InputMethodSettingsInterface.java 27 * Sets the title for the input method settings category with a resource ID.
28 * @param resId The resource ID of the title.
40 * resource ID.
41 * @param resId The resource ID of the title.
53 * Sets the icon for the preference for launching subtype enabler with a resource ID.
54 * @param resId The resource id of an optional icon for the preference.
  /external/chromium/chrome/browser/automation/
automation_autocomplete_edit_tracker.h 17 virtual void AddObserver(AutocompleteEditView* resource);
18 virtual void RemoveObserver(AutocompleteEditView* resource);
automation_browser_tracker.h 18 virtual void AddObserver(Browser* resource);
19 virtual void RemoveObserver(Browser* resource);

Completed in 3293 milliseconds

1 2 34 5 6 7 8 91011>>