/build/tools/droiddoc/templates-sdk-dyn/assets/css/ |
default.css | [all...] |
/external/chromium_org/chrome/browser/task_manager/ |
web_contents_resource_provider.cc | 154 scoped_ptr<RendererResource> resource = info_->MakeResource(web_contents); local 155 if (!resource) 158 task_manager_->AddResource(resource.get()); 159 resources_[web_contents] = resource.release(); 175 RendererResource* resource = resource_iter->second; local 176 task_manager_->RemoveResource(resource); 178 // Remove the resource from the Task Manager. 182 // Finally, delete the resource. 183 delete resource;
|
/external/chromium_org/native_client_sdk/src/tests/nacl_io_test/fake_ppapi/ |
fake_resource_manager.cc | 17 EXPECT_EQ(0, resource_tracker->ref_count()) << "Leaked resource " 28 PP_Resource FakeResourceManager::Create(FakeResource* resource, 35 new FakeResourceTracker(resource, classname, file, line); 46 ASSERT_NE(resource_map_.end(), iter) << "AddRefing unknown resource " 50 EXPECT_LT(0, resource_tracker->ref_count()) << "AddRefing freed resource " 65 ASSERT_NE(resource_map_.end(), iter) << "Releasing unknown resource " 69 EXPECT_LT(0, resource_tracker->ref_count()) << "Releasing freed resource " 79 // Remove the resource from this tracker. 80 FakeResource* resource = resource_tracker->Pass(); local 86 resource->Destroy() [all...] |
fake_resource_manager.h | 24 PP_Resource Create(FakeResource* resource, 45 // resource, including its refcount, the type of resource, etc. 48 FakeResourceTracker(FakeResource* resource, 58 // Give up ownership of this resource. It is the responsibility of the caller 67 T* resource() { function in class:FakeResourceTracker 74 FakeResource* resource() { return resource_; } function in class:FakeResourceTracker 95 // Called when the resource is destroyed. For debugging purposes, this does 96 // not happen until the resource manager is destroyed. 98 // Called when the last reference to the resource is released [all...] |
/external/chromium_org/ppapi/cpp/ |
compositor_layer.cc | 26 const CompositorLayer& other) : Resource(other) { 29 CompositorLayer::CompositorLayer(const Resource& resource) 30 : Resource(resource) { 31 PP_DCHECK(IsCompositorLayer(resource)); 34 CompositorLayer::CompositorLayer(PassRef, PP_Resource resource) 35 : Resource(PASS_REF, resource) { 134 bool CompositorLayer::IsCompositorLayer(const Resource& resource) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorResourceContentLoader.cpp | 12 #include "core/fetch/Resource.h" 31 void waitForResource(Resource* resource) 33 resource->addClient(this); 44 void InspectorResourceContentLoader::ResourceClient::setCSSStyleSheet(const String&, const KURL& url, const String&, const CSSStyleSheetResource* resource) 48 const_cast<CSSStyleSheetResource*>(resource)->removeClient(this); 78 ResourcePtr<Resource> resource = document->fetcher()->fetchCSSStyleSheet(request); local 79 // Prevent garbage collection by holding a reference to this resource. 80 m_resources.append(resource.get()) [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
lp_texture.h | 164 llvmpipe_resource_stride(struct pipe_resource *resource, 167 struct llvmpipe_resource *lpr = llvmpipe_resource(resource); 174 llvmpipe_resource_map(struct pipe_resource *resource, 181 llvmpipe_resource_unmap(struct pipe_resource *resource, 187 llvmpipe_resource_data(struct pipe_resource *resource); 191 llvmpipe_resource_size(const struct pipe_resource *resource); 200 llvmpipe_get_texture_image(struct llvmpipe_resource *resource,
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_texture.h | 164 llvmpipe_resource_stride(struct pipe_resource *resource, 167 struct llvmpipe_resource *lpr = llvmpipe_resource(resource); 174 llvmpipe_resource_map(struct pipe_resource *resource, 181 llvmpipe_resource_unmap(struct pipe_resource *resource, 187 llvmpipe_resource_data(struct pipe_resource *resource); 191 llvmpipe_resource_size(const struct pipe_resource *resource); 200 llvmpipe_get_texture_image(struct llvmpipe_resource *resource,
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/ |
ImageView.js | 33 WebInspector.ImageView = function(resource) 35 WebInspector.ResourceView.call(this, resource); 64 imagePreviewElement.classList.add("resource-image-view"); 74 imageNameElement.textContent = this.resource.displayName; 80 this.resource.populateImageSource(imagePreviewElement); 87 var content = this.resource.content; 91 var resourceSize = this.resource.resourceSize; 96 { name: WebInspector.UIString("MIME type"), value: this.resource.mimeType } 113 dd.appendChild(WebInspector.linkifyURLAsNode(this.resource.url, undefined, undefined, externalResource)); 151 InspectorFrontendHost.copyText(this.resource.url) [all...] |
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/ |
EngineJob.java | 69 public void onResourceReady(final Resource resource) { 79 resource.recycle(); 82 resource.setCacheable(isCacheable); 85 // Hold on to resource for duration of request so we don't recycle it in the middle of notifying if it 87 resource.acquire(1); 88 listener.onEngineJobComplete(key, resource); 90 resource.acquire(cbs.size()); 92 cb.onResourceReady(resource); 95 resource.acquire(1) [all...] |
/bionic/libc/bionic/ |
legacy_32_bit_support.cpp | 32 #include <sys/resource.h> 98 int getrlimit64(int resource, rlimit64* limits64) { 99 return prlimit64(0, resource, NULL, limits64); 103 int setrlimit64(int resource, const rlimit64* limits64) { 104 return prlimit64(0, resource, limits64, NULL);
|
/external/chromium_org/chrome/installer/util/ |
l10n_string_util.cc | 52 NOTREACHED() << "Unable to find resource id " << message_id; 73 // The resource names are more or less the upcased language names. 78 std::wstring resource(L"IDR_OEMPG_"); 79 resource.append(language).append(L".HTML"); 81 // Fall back on "en" if we don't have a resource for this language. 82 if (NULL == FindResource(NULL, resource.c_str(), RT_HTML)) 83 resource = L"IDR_OEMPG_EN.HTML"; 87 base::StringPrintf(L"res://%ls/#23/%ls", full_exe_path, resource.c_str()); 90 // (see the definition of full_exe_path and resource).
|
/external/chromium_org/android_webview/test/shell/src/org/chromium/android_webview/test/ |
TestContentProvider.java | 44 private static Uri createRequestUri(final String target, String resource) { 45 return Uri.parse(createContentUrl(target) + "?" + resource); 48 public static int getResourceRequestCount(Context context, String resource) { 49 Uri uri = createRequestUri(GET_RESOURCE_REQUEST_COUNT, resource); 59 public static void resetResourceRequestCount(Context context, String resource) { 60 Uri uri = createRequestUri(RESET_RESOURCE_REQUEST_COUNT, resource); 77 String resource = uri.getLastPathSegment(); local 78 if (mResourceRequestCount.containsKey(resource)) { 79 mResourceRequestCount.put(resource, mResourceRequestCount.get(resource) + 1) 186 String resource = uri.getQuery(); local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/fetch/ |
MemoryCache.cpp | 109 void MemoryCache::add(Resource* resource) 112 RELEASE_ASSERT(!m_resources.contains(resource->url())); 113 m_resources.set(resource->url(), MemoryCacheEntry::create(resource)); 114 update(resource, 0, resource->size(), true); 116 WTF_LOG(ResourceLoading, "MemoryCache::add Added '%s', resource %p\n", resource->url().string().latin1().data(), resource); 321 Resource* resource = entry->m_resource.get(); local 575 Resource* resource = i->value->m_resource.get(); local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/ |
r600_texture.c | 43 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->buf, NULL) 271 struct pipe_resource resource; local 475 struct si_resource *resource; local 631 struct pipe_resource resource; local [all...] |
/external/mesa3d/src/gallium/drivers/radeonsi/ |
r600_texture.c | 43 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->buf, NULL) 271 struct pipe_resource resource; local 475 struct si_resource *resource; local 631 struct pipe_resource resource; local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/refactorings/core/ |
RenameResourceParticipantTest.java | 287 "ERROR: File-based resource names must start with a lowercase letter.\n" + 339 @NonNull Object resource, 343 renameResource(testData, resource, updateReferences, newName, expected, null); 348 @NonNull Object resource, 354 renameResource(project, resource, updateReferences, newName, expected, expectedWarnings); 359 @NonNull Object resource, 365 if (resource instanceof String) { 366 String url = (String) resource; 367 assert url.startsWith("@") : resource; 378 } else if (resource instanceof IResource) [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/ |
ResourceTreeModel.js | 208 // Do nothing unless cached resource tree is processed - it will overwrite everything. 230 // Do nothing unless cached resource tree is processed - it will overwrite everything. 267 // Do nothing unless cached resource tree is processed - it will overwrite everything. 296 var resource = frame._addRequest(request); 297 this._addPendingConsoleMessagesToResource(resource); 318 var resource = new WebInspector.Resource(null, url, frame.url, frameId, event.data.loaderId, WebInspector.resourceTypes[event.data.resourceType], event.data.mimeType); 319 frame.addResource(resource); 332 * @param {function(!WebInspector.Resource)} callback 356 var resource = msg.url ? this.resourceForURL(msg.url) : null [all...] |
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
PageSerializerTest.cpp | 125 const SerializedResource& resource = m_resources[i]; local 126 if (resource.url == kURL && !resource.data->isEmpty() 127 && (mime.isNull() || equalIgnoringCase(resource.mimeType, mime))) 128 return &resource; 140 const SerializedResource* resource = getResource(url, mimeType); local 141 if (resource) 142 return String(resource->data->data(), resource->data->size());
|
/external/chromium_org/third_party/libjingle/source/talk/xmpp/ |
jid_unittest.cc | 13 EXPECT_EQ("", jid.resource()); 25 EXPECT_EQ("", jid.resource()); 37 EXPECT_EQ("bowlingalley", jid.resource()); 49 EXPECT_EQ("bowlingalley", jid.resource()); 61 EXPECT_EQ("", jid.resource()); 73 EXPECT_EQ("", jid.resource()); 85 EXPECT_EQ("", jid.resource()); 97 EXPECT_EQ("walter@dude", jid.resource()); 109 EXPECT_EQ("walter@dude", jid.resource());
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/i915/ |
i915_resource_buffer.c | 46 struct pipe_resource *resource, 54 struct pipe_resource *resource) 56 struct i915_buffer *buffer = i915_buffer(resource); 65 struct pipe_resource *resource, 76 transfer->resource = resource; 99 struct i915_buffer *buffer = i915_buffer(transfer->resource); 106 struct pipe_resource *resource, 114 struct i915_buffer *buffer = i915_buffer(resource);
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/ |
memory.hpp | 36 class resource; 50 virtual clover::resource &resource(cl_command_queue q) = 0; 84 virtual clover::resource &resource(cl_command_queue q); 96 virtual clover::resource &resource(cl_command_queue q); 116 virtual clover::resource &resource(cl_command_queue q);
|
/external/mesa3d/src/gallium/drivers/i915/ |
i915_resource_buffer.c | 46 struct pipe_resource *resource, 54 struct pipe_resource *resource) 56 struct i915_buffer *buffer = i915_buffer(resource); 65 struct pipe_resource *resource, 76 transfer->resource = resource; 99 struct i915_buffer *buffer = i915_buffer(transfer->resource); 106 struct pipe_resource *resource, 114 struct i915_buffer *buffer = i915_buffer(resource);
|
/external/mesa3d/src/gallium/state_trackers/clover/core/ |
memory.hpp | 36 class resource; 50 virtual clover::resource &resource(cl_command_queue q) = 0; 84 virtual clover::resource &resource(cl_command_queue q); 96 virtual clover::resource &resource(cl_command_queue q); 116 virtual clover::resource &resource(cl_command_queue q);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/ |
PatternBasedDeltaVisitor.java | 85 IResource resource = delta.getResource(); local 87 if (resource.getType() == IResource.FOLDER) { 89 return BuildHelper.checkFolderForPackaging((IFolder)resource); 91 } else if (resource.getType() == IResource.FILE) { 92 IPath path = resource.getFullPath().makeRelativeTo(mDeltaProject.getFullPath()); 108 resource.getFullPath().toString()); 112 resource.getFullPath().toString()); 126 resource.getFullPath().toString()); 130 resource.getFullPath().toString());
|