HomeSort by relevance Sort by last modified time
    Searched refs:Resource (Results 26 - 50 of 69) sorted by null

12 3

  /cts/tests/
Android.mk 29 # Resource unit tests use a private locale and some densities
  /external/webkit/Source/WebCore/inspector/front-end/
AuditLauncherView.js 67 var resource = event.data;
69 if (resource.type === WebInspector.Resource.Type.WebSocket)
77 var resource = event.data;
79 if (resource.type === WebInspector.Resource.Type.WebSocket)
221 this._resourceProgressContainer.className = "resource-progress";
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...]
ExtensionAPI.js 109 var resource = request.arguments[1];
110 resource.__proto__ = new Resource(request.arguments[0]);
111 this._fire(resource);
113 this.onFinished = new EventSink("resource-finished", resourceDispatch);
124 entries[i].__proto__ = new Resource(entries[i]._resourceId);
486 var Resource = declareInterfaceClass(ResourceImpl);
ExtensionServer.js 115 var resource = event.data;
116 if (this._hasSubscribers("resource-finished"))
117 this._postNotification("resource-finished", this._resourceId(resource), (new WebInspector.HAREntry(resource)).build());
283 if (message.panelId === "resources" && type === "resource")
292 var resource = null;
294 resource = this._resourceById(id) || WebInspector.resourceForURL(id);
295 if (!resource)
298 WebInspector.panels.resources.showResource(resource, message.line)
    [all...]
ResourcesPanel.js 103 if (this.visibleView && this.visibleView.resource)
104 this._showResourceView(this.visibleView.resource);
199 var subtitle = new WebInspector.Resource(null, frame.url).displayName;
236 var resource = event.data;
237 var frameId = resource.frameId;
239 if (resource.statusCode >= 301 && resource.statusCode <= 303)
244 // This is a frame's main resource, it will be retained
245 // and re-added by the resource manager;
249 frameTreeElement.appendResource(resource);
    [all...]
SourceFile.js 131 _loadResourceContent: function(resource)
140 if (resource.type === WebInspector.Resource.Type.Script)
144 // However, resource content has original line endings, so we have to normalize line endings here.
148 resource.requestContent(didRequestContent.bind(this));
CSSStyleModel.js 631 WebInspector.Resource.registerDomainModelBinding(WebInspector.Resource.Type.Stylesheet, this);
635 setContent: function(resource, content, majorChange, userCallback)
637 if (this._urlToStyleSheetId[resource.url]) {
638 this._innerSetContent(resource.url, content, majorChange, userCallback);
641 this._loadStyleSheetHeaders(this._innerSetContent.bind(this, resource.url, content, majorChange, userCallback));
698 var resource = WebInspector.resourceForURL(url);
699 if (!resource)
704 resource.addRevision(event.data.content);
DebuggerPresentationModel.js 154 var resource = WebInspector.resourceForURL(sourceFile.url);
155 if (resource)
156 resource.addRevision(newSource);
724 WebInspector.Resource.registerDomainModelBinding(WebInspector.Resource.Type.Script, this);
728 canSetContent: function(resource)
730 var sourceFile = this._presentationModel._sourceFileForScript(resource.url)
736 setContent: function(resource, content, majorChange, userCallback)
741 var sourceFile = this._presentationModel._sourceFileForScript(resource.url);
743 userCallback("Resource is not editable")
    [all...]
  /external/icu4c/tools/toolutil/
pkgitems.cpp 215 // get dependencies from resource bundles ---------------------------------- ***
220 * Check for the alias from the string or alias resource res.
224 Resource res, const UChar *alias, int32_t length, UBool useResSuffix,
277 * Enumerate one resource item and its children and extract dependencies from
283 Resource res, const char *inKey, const char *parentKey, int32_t depth,
325 Resource item=res_getTableItemByIndex(pResData, res, i, &itemKey);
346 Resource item=res_getArrayItem(pResData, res, i);
404 // We cannot work with a bundle if its pool resource is missing.
591 * Swap the resource bundle (if necessary) so that we can use
  /external/icu4c/test/testdata/
testdata.mak 75 # Inference rule for creating resource bundles
76 # Some test data resource bundles are known to have warnings and bad data.
79 @echo Making Test Resource Bundle files $<
83 @echo Making Test Resource Bundle file with encoding ISCII,version=0
87 @echo Making Test Resource Bundle file for IDNA reference implementation
94 # testtable32 resource file
  /external/icu4c/common/
uresbund.c 18 * 06/24/02 weiv Added support for resource sharing
39 Static cache for already opened resource bundles - mostly for keeping fallback info
99 * Internal function. Tries to find a resource in given Resource
102 static const ResourceData *getFallbackData(const UResourceBundle* resBundle, const char* * resTag, UResourceDataEntry* *realData, Resource *res, UErrorCode *status) {
108 if(resB->fBogus == U_ZERO_ERROR) { /* if this resource is real, */
122 if(*res != RES_BOGUS) { /* If the resource is found in parents, we need to adjust the error */
132 } else { /* If resource is not found, we need to give an error */
197 /* some resource bundles are still open somewhere. */
291 /** INTERNAL: sets the name (locale) of the resource bundle to given name *
    [all...]
  /external/icu4c/extra/uconv/
makedata.mak 62 # We're including a list of resource files.
99 # Inference rule for creating resource bundles
101 @echo Making Resource Bundle files
  /external/oprofile/events/mips/sb1/
events 27 event:0x24 counters:1,2,3 um:zero minimum:500 name:RESOURCE_CONSTRAINT :Resource (L0/1 E0/1) constraint
  /external/v8/src/
factory.h 158 const ExternalAsciiString::Resource* resource);
160 const ExternalTwoByteString::Resource* resource);
objects-inl.h 2394 const ExternalAsciiString::Resource* ExternalAsciiString::resource() { function in class:ExternalAsciiString
2426 const ExternalTwoByteString::Resource* ExternalTwoByteString::resource() { function in class:ExternalTwoByteString
    [all...]
objects.h     [all...]
factory.cc 269 const ExternalAsciiString::Resource* resource) {
272 isolate()->heap()->AllocateExternalStringFromAscii(resource),
278 const ExternalTwoByteString::Resource* resource) {
281 isolate()->heap()->AllocateExternalStringFromTwoByte(resource),
    [all...]
heap.h     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
FingerPrintGraph.java 31 import org.eclipse.swt.graphics.Resource;
631 Resource resource = (Resource) iterator.next();
632 resource.dispose();
  /external/mdnsresponder/mDNSCore/
DNSCommon.h 124 #pragma mark - Resource Record Utility Functions
  /external/icu4c/tools/genrb/
derb.c 62 static void printOutBundle(FILE *out, UConverter *converter, UResourceBundle *resource, int32_t indent, const char *pname, UErrorCode *status);
361 reportError(pname, &status, "opening resource file");
471 static void printOutAlias(FILE *out, UConverter *converter, UResourceBundle *parent, Resource r, const char *key, int32_t indent, const char *pname, UErrorCode *status) {
479 sprintf(msg, "// WARNING: this resource, size %li is truncated to %li\n",
504 static void printOutBundle(FILE *out, UConverter *converter, UResourceBundle *resource, int32_t indent, const char *pname, UErrorCode *status)
508 /* int32_t noOfElements = ures_getSize(resource);*/
510 const char *key = ures_getKey(resource);
512 switch(ures_getType(resource)) {
516 const UChar* thestr = ures_getString(resource, &len, status);
523 sprintf(msg, "// WARNING: this resource, size %li is truncated to %li\n"
    [all...]
  /external/valgrind/main/helgrind/tests/
tc20_verifywrap.stderr.exp 38 with error code 35 (EDEADLK: Resource deadlock would occur)
62 with error code 16 (EBUSY: Device or resource busy)
  /external/webkit/Source/WebKit/chromium/src/js/
Tests.js 530 function finishResource(resource, finishTime)
532 test.assertEquals(221, resource.transferSize, "Incorrect total encoded data length");
533 test.assertEquals(25, resource.resourceSize, "Incorrect total data length");
553 function finishResource(resource, finishTime)
555 test.assertEquals(221, resource.transferSize, "Incorrect total encoded data length");
556 test.assertEquals(25, resource.resourceSize, "Incorrect total data length");
576 function finishResource(resource, finishTime)
578 var rawResponseHeadersText = resource.rawResponseHeadersText
580 test.fail("Failure: resource does not have raw response header text");
581 test.assertEquals(166, resource.rawResponseHeadersText.length, "Incorrect raw response header text length")
    [all...]
  /external/icu4c/data/
makedata.mak 268 # Read list of locale resource bundle files
275 !MESSAGE Information: cannot find "reslocal.mk". Not building user-additional resource bundle files.
287 # Read the list of currency display name resource bundle files
294 !MESSAGE Information: cannot find "curr\reslocal.mk". Not building user-additional resource bundle files.
308 # Read the list of language/script display name resource bundle files
315 !MESSAGE Information: cannot find "lang\reslocal.mk". Not building user-additional resource bundle files.
329 # Read the list of region display name resource bundle files
336 !MESSAGE Information: cannot find "region\reslocal.mk". Not building user-additional resource bundle files.
350 # Read the list of time zone display name resource bundle files
357 !MESSAGE Information: cannot find "zone\reslocal.mk". Not building user-additional resource bundle files
    [all...]

Completed in 890 milliseconds

12 3