HomeSort by relevance Sort by last modified time
    Searched refs:resource (Results 1251 - 1275 of 2392) sorted by null

<<51525354555657585960>>

  /prebuilts/ndk/9/platforms/android-17/arch-x86/usr/include/sys/
wait.h 33 #include <sys/resource.h>
  /prebuilts/ndk/9/platforms/android-18/arch-arm/usr/include/sys/
wait.h 33 #include <sys/resource.h>
  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/sys/
wait.h 33 #include <sys/resource.h>
  /prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/sys/
wait.h 33 #include <sys/resource.h>
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/sys/
wait.h 33 #include <sys/resource.h>
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/sys/
wait.h 33 #include <sys/resource.h>
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/sys/
wait.h 33 #include <sys/resource.h>
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/binaryxml/
XmlStorageEditorInput.java 21 import org.eclipse.jface.resource.ImageDescriptor;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/ui/
ResourcePreviewHelper.java 51 * The {@link ResourcePreviewHelper} provides help to {@link TrayDialog} resource choosers
88 * Updates the preview based on the current selection and resource type, possibly
91 * @param type the resource type for the selected resource
92 * @param resource the full resource url
94 public void updatePreview(ResourceType type, String resource) {
129 ResourceValue value = resources.findResValue(resource, false);
140 ResourceValue drawable = resources.findResValue(resource, false);
176 // AdtPlugin.log(t, "Can't generate preview for %1$s", resource);
    [all...]
  /system/extras/tests/storage/
opentest.c 24 #include <sys/resource.h>
  /external/chromium_org/chrome/browser/web_applications/
web_app.cc 33 #include "ui/base/resource/resource_bundle.h"
109 // If the image failed to load (e.g. if the resource being loaded was empty)
164 extensions::ExtensionResource resource = local
167 if (!resource.empty()) {
169 resource,
183 extensions::ExtensionResource resource = local
186 if (resource.empty()) {
187 resource = extensions::IconsInfo::GetIconResource(
191 resource,
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
kernel.cpp 24 #include "core/resource.hpp"
236 ctx.g_buffers[idx] = obj->resource(ctx.q).pipe;
301 ctx.resources[idx] = st = obj->resource(ctx.q).bind_surface(*ctx.q, false);
306 obj->resource(ctx.q).unbind_surface(*ctx.q, st);
331 ctx.sviews[idx] = st = obj->resource(ctx.q).bind_sampler_view(*ctx.q);
336 obj->resource(ctx.q).unbind_sampler_view(*ctx.q, st);
361 ctx.resources[idx] = st = obj->resource(ctx.q).bind_surface(*ctx.q, true);
366 obj->resource(ctx.q).unbind_surface(*ctx.q, st);
  /external/mesa3d/src/gallium/state_trackers/clover/core/
kernel.cpp 24 #include "core/resource.hpp"
236 ctx.g_buffers[idx] = obj->resource(ctx.q).pipe;
301 ctx.resources[idx] = st = obj->resource(ctx.q).bind_surface(*ctx.q, false);
306 obj->resource(ctx.q).unbind_surface(*ctx.q, st);
331 ctx.sviews[idx] = st = obj->resource(ctx.q).bind_sampler_view(*ctx.q);
336 obj->resource(ctx.q).unbind_sampler_view(*ctx.q, st);
361 ctx.resources[idx] = st = obj->resource(ctx.q).bind_surface(*ctx.q, true);
366 obj->resource(ctx.q).unbind_surface(*ctx.q, st);
  /external/smack/src/org/jivesoftware/smack/
BOSHConnection.java 304 public void login(String username, String password, String resource)
320 response = saslAuthentication.authenticate(username, password, resource);
322 response = saslAuthentication.authenticate(username, resource, config.getCallbackHandler());
326 response = new NonSASLAuthentication(this).authenticate(username, password, resource);
336 if (resource != null) {
337 this.user += "/" + resource;
363 config.setLoginInfo(username, password, resource);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
BaseBuilder.java 81 * Base Resource Delta Visitor to handle XML error
114 // compare segments. We want the path of the resource
165 * @param resource the resource to check
166 * @param visitor a valid resource delta visitor
168 protected final void checkXML(IResource resource, BaseDeltaVisitor visitor) {
171 if (resource instanceof IFile) {
172 IFile file = (IFile)resource;
214 * Removes markers from a resource and only the resource (not its children)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
RefactoringAssistant.java 109 ResourceUrl resource = null; local
125 resource = RenameResourceXmlTextAction.findResource(doc, offset);
144 resource = RenameResourceXmlTextAction.findResource(doc, offset);
154 if (isTagName || isAttributeName || isValue || resource != null) {
186 } else if (resource != null) {
188 file.getProject(), resource.type, resource.name, null);
  /external/chromium_org/chrome/browser/safe_browsing/
safe_browsing_blocking_page_unittest.cc 189 SafeBrowsingUIManager::UnsafeResource resource; local
190 InitResource(&resource, is_subresource, GURL(url));
191 SafeBrowsingBlockingPage::ShowBlockingPage(ui_manager_.get(), resource);
234 void InitResource(SafeBrowsingUIManager::UnsafeResource* resource,
237 resource->callback =
240 resource->url = url;
241 resource->is_subresource = is_subresource;
242 resource->threat_type = SB_THREAT_TYPE_URL_MALWARE;
243 resource->render_process_host_id =
245 resource->render_view_id
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/ntp/
new_tab_ui.cc 350 std::string NewTabUI::NewTabHTMLSource::GetMimeType(const std::string& resource)
353 resource_map_.find(resource);
367 void NewTabUI::NewTabHTMLSource::AddResource(const char* resource,
370 DCHECK(resource);
372 resource_map_[std::string(resource)] =
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8ScriptRunner.cpp 42 return compileScript(v8String(isolate, source.source()), source.url(), source.startPosition(), source.resource(), isolate, corsStatus);
45 v8::Local<v8::Script> V8ScriptRunner::compileScript(v8::Handle<v8::String> code, const String& fileName, const TextPosition& scriptStartPosition, ScriptResource* resource, v8::Isolate* isolate, AccessControlStatus corsStatus)
67 if (resource) {
68 CachedMetadata* cachedMetadata = resource->cachedMetadata(dataTypeID);
83 resource->setCachedMetadata(dataTypeID, reinterpret_cast<const char*>(newCachedData->data), newCachedData->length);
  /frameworks/base/core/java/android/preference/
GenericInflater.java 209 * Inflate a new item hierarchy from the specified xml resource. Throws
212 * @param resource ID for an XML resource to load (e.g.,
219 public T inflate(int resource, P root) {
220 return inflate(resource, root, root != null);
244 * Inflate a new hierarchy from the specified xml resource. Throws
247 * @param resource ID for an XML resource to load (e.g.,
259 public T inflate(int resource, P root, boolean attachToRoot) {
260 if (DEBUG) System.out.println("INFLATING from resource: " + resource)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
EclipseLintClient.java 132 * @param document the associated document, or null if the {@code resource}
327 for (IResource resource : mResources) {
328 IProject p = resource.getProject();
389 IResource resource = AdtUtils.fileToResource(location.getFile());
390 if (resource != null && resource.isAccessible()) {
391 marker = BaseProjectHelper.markResource(resource, MARKER_LINT,
471 * Clears any lint markers from the given resource (project, folder or file)
473 * @param resource the resource to remove markers fro
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/
ProjectClassLoader.java 348 IResource resource = ResourcesPlugin.getWorkspace().getRoot().findMember(path); local
349 if (resource != null && resource.exists() &&
350 resource.getType() == IResource.FILE) {
353 oslibraryList.add(new File(resource.getLocation().toOSString())
361 // if the jar path doesn't match a workspace resource,
  /external/icu/icu4c/source/i18n/
numfmt.cpp 124 // Keys used for accessing resource bundles
1422 UResourceBundle *resource = ownedResource.orphan(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
ProjectHelper.java 480 // get the java project from the IProject resource object
497 // get the java project from the IProject resource object
736 * Saves a String property into the persistent storage of a resource.
737 * @param resource The resource into which the string value is saved.
742 public static boolean saveStringProperty(IResource resource, String propertyName,
747 resource.setPersistentProperty(qname, value);
756 * Loads a String property from the persistent storage of a resource.
757 * @param resource The resource from which the string value is loaded
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
numfmt.cpp 107 // Keys used for accessing resource bundles
1093 UResourceBundle *resource = ures_open(NULL, desiredLocale.getName(), &status); local
    [all...]

Completed in 1243 milliseconds

<<51525354555657585960>>