/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
SVGResourcesCache.cpp | 48 // Build a list of all resources associated with the passed RenderObject 54 SVGResources* resources = m_cache.set(object, newResources.release()).iterator->value.get(); 57 SVGResourcesCycleSolver solver(object, resources); 60 // Walk resources and register the render object at each resources. 62 resources->buildSetOfResources(resourceSet); 74 OwnPtr<SVGResources> resources = m_cache.take(object); 76 // Walk resources and register the render object at each resources. 78 resources->buildSetOfResources(resourceSet) 107 SVGResources* resources = SVGResourcesCache::cachedResourcesForRenderObject(object); local 179 SVGResources* resources = SVGResourcesCache::cachedResourcesForRenderObject(renderer); local [all...] |
/packages/apps/Dialer/tests/src/com/android/dialer/util/ |
LocaleTestUtils.java | 21 import android.content.res.Resources; 87 mSavedSystemLocale = setResourcesLocale(Resources.getSystem(), locale); 101 setResourcesLocale(Resources.getSystem(), mSavedSystemLocale); 106 * Sets the locale for the given resources and returns the previous locale. 108 * @param resources the resources on which to set the locale 110 * @return the previous value of the locale for the resources 112 private Locale setResourcesLocale(Resources resources, Locale locale) { 113 Configuration contextConfiguration = new Configuration(resources.getConfiguration()) [all...] |
/packages/apps/Launcher2/src/com/android/launcher2/ |
IconCache.java | 26 import android.content.res.Resources; 67 return getFullResIcon(Resources.getSystem(), 71 public Drawable getFullResIcon(Resources resources, int iconId) { 74 d = resources.getDrawableForDensity(iconId, mIconDpi); 75 } catch (Resources.NotFoundException e) { 83 Resources resources; local 85 resources = mPackageManager.getResourcesForApplication(packageName); 87 resources = null 103 Resources resources; local [all...] |
/packages/apps/Launcher3/src/com/android/launcher3/ |
IconCache.java | 26 import android.content.res.Resources; 69 return getFullResIcon(Resources.getSystem(), 73 public Drawable getFullResIcon(Resources resources, int iconId) { 76 d = resources.getDrawableForDensity(iconId, mIconDpi); 77 } catch (Resources.NotFoundException e) { 85 Resources resources; local 87 resources = mPackageManager.getResourcesForApplication(packageName); 89 resources = null 105 Resources resources; local [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/utils/ |
VeiledAddressMatcher.java | 19 import android.content.res.Resources; 117 public static final VeiledAddressMatcher newInstance(Resources resources) { 119 instance.mVeiledMatchingEnabled = resources.getBoolean(VEILED_MATCHING_ENABLED); 121 instance.loadPattern(resources.getString(VEILED_RESOURCE)); 128 * values of the veiled address pattern and the value is read once from resources.
|
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/ |
EdgeSwipeDetector.java | 19 import android.content.res.Resources; 36 final Resources resources = context.getResources(); local 37 mEdgeSwipeGutter = resources.getInteger(R.integer.table_edge_swipe_gutter) / 1000000f; 38 mEdgeSwipeThreshold = resources.getInteger(R.integer.table_edge_swipe_threshold) / 1000000f;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/ |
CyclicDependencyValidator.java | 16 package com.android.ide.eclipse.adt.internal.resources; 21 import org.eclipse.core.resources.IFile; 22 import org.eclipse.core.resources.IProject;
|
/external/chromium_org/third_party/angle_dx11/src/compiler/ |
Compiler.cpp | 77 bool TCompiler::Init(const ShBuiltInResources& resources) 80 resources.MaxVertexUniformVectors : 81 resources.MaxFragmentUniformVectors; 82 maxExpressionComplexity = resources.MaxExpressionComplexity; 83 maxCallStackDepth = resources.MaxCallStackDepth; 87 if (!InitBuiltInSymbolTable(resources)) 89 InitExtensionBehavior(resources, extensionBehavior); 90 fragmentPrecisionHigh = resources.FragmentPrecisionHigh == 1; 92 arrayBoundsClamper.SetClampingStrategy(resources.ArrayIndexClampingStrategy); 93 clampingStrategy = resources.ArrayIndexClampingStrategy [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/ |
LayoutReloadMonitor.java | 22 import com.android.ide.common.resources.ResourceFile; 23 import com.android.ide.common.resources.ResourceFolder; 26 import com.android.ide.eclipse.adt.internal.resources.manager.GlobalProjectMonitor; 27 import com.android.ide.eclipse.adt.internal.resources.manager.GlobalProjectMonitor.IFileListener; 28 import com.android.ide.eclipse.adt.internal.resources.manager.GlobalProjectMonitor.IResourceEventListener; 29 import com.android.ide.eclipse.adt.internal.resources.manager.ResourceManager; 30 import com.android.ide.eclipse.adt.internal.resources.manager.ResourceManager.IResourceListener; 33 import com.android.resources.ResourceType; 35 import org.eclipse.core.resources.IFile; 36 import org.eclipse.core.resources.IMarkerDelta 67 public boolean resources = false; field in class:LayoutReloadMonitor.ChangeFlags [all...] |
/external/chromium_org/tools/android/ |
find_unused_resources.py | 6 """Lists unused Java strings and other resources.""" 15 """Returns the types and names of resources packaged in an APK. 21 The resources in the APK as a list of tuples (type, name). Example: 25 ['aapt', 'dump', 'resources', apk_path], 36 """Returns the types and names of resources used in Java or resource files. 45 The resources referenced by the Java and resource files as a list of tuples 52 resources = [] 68 resources.append((type_, name)) 69 return resources 72 def FormatResources(resources) [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jar | |
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
SVGRenderStyle.cpp | 48 resources = defaultStyle->resources; 63 resources.init(); 75 resources = other.resources; 93 && resources == other.resources 125 resources = other->resources; 136 // If resources change, we need a relayout, as the presence of resources influences the repaint rect [all...] |
/packages/apps/Calendar/tests/src/com/android/calendar/ |
DbTestUtils.java | 23 import android.content.res.Resources; 51 private Resources resources; field in class:DbTestUtils.FakeContext 54 FakeContext(ContentResolver contentResolver, Resources resources) { 56 this.resources = resources; 65 public Resources getResources() { 66 return resources; 173 public DbTestUtils(Resources resources) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
CreateNewConfigJob.java | 19 import com.android.ide.common.resources.configuration.FolderConfiguration; 23 import com.android.ide.eclipse.adt.internal.resources.manager.ResourceManager; 24 import com.android.resources.ResourceFolderType; 27 import org.eclipse.core.resources.IFile; 28 import org.eclipse.core.resources.IFolder; 29 import org.eclipse.core.resources.IWorkspaceRoot; 30 import org.eclipse.core.resources.ResourcesPlugin; 82 // Ensure that the project resources updates itself to notice the new configuration.
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
LintDeltaProcessor.java | 27 import com.android.ide.eclipse.adt.internal.resources.manager.GlobalProjectMonitor; 28 import com.android.ide.eclipse.adt.internal.resources.manager.GlobalProjectMonitor.IFileListener; 29 import com.android.ide.eclipse.adt.internal.resources.manager.ResourceManager; 31 import org.eclipse.core.resources.IFile; 32 import org.eclipse.core.resources.IMarkerDelta; 33 import org.eclipse.core.resources.IResource; 34 import org.eclipse.core.resources.IResourceDelta;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/ |
GlobalProjectMonitor.java | 17 package com.android.ide.eclipse.adt.internal.resources.manager; 21 import com.android.ide.common.resources.ResourceFile; 22 import com.android.ide.common.resources.ResourceFolder; 27 import org.eclipse.core.resources.IFile; 28 import org.eclipse.core.resources.IFolder; 29 import org.eclipse.core.resources.IMarkerDelta; 30 import org.eclipse.core.resources.IProject; 31 import org.eclipse.core.resources.IResource; 32 import org.eclipse.core.resources.IResourceChangeEvent; 33 import org.eclipse.core.resources.IResourceChangeListener [all...] |
/external/chromium_org/webkit/ |
webkit_strings.target.darwin-arm.mk | 21 $(gyp_shared_intermediate_dir)/webkit/grit/webkit_strings.h: $(LOCAL_PATH)/tools/gritsettings/resource_ids $(LOCAL_PATH)/webkit/glue/webkit_strings.grd $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_am.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_ar.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_bg.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_bn.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_ca.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_cs.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_da.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_de.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_el.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_en-GB.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_es-419.xtb $(LOCAL_PAT (…) [all...] |
webkit_strings.target.darwin-mips.mk | 21 $(gyp_shared_intermediate_dir)/webkit/grit/webkit_strings.h: $(LOCAL_PATH)/tools/gritsettings/resource_ids $(LOCAL_PATH)/webkit/glue/webkit_strings.grd $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_am.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_ar.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_bg.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_bn.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_ca.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_cs.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_da.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_de.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_el.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_en-GB.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_es-419.xtb $(LOCAL_PAT (…) [all...] |
webkit_strings.target.darwin-x86.mk | 21 $(gyp_shared_intermediate_dir)/webkit/grit/webkit_strings.h: $(LOCAL_PATH)/tools/gritsettings/resource_ids $(LOCAL_PATH)/webkit/glue/webkit_strings.grd $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_am.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_ar.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_bg.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_bn.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_ca.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_cs.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_da.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_de.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_el.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_en-GB.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_es-419.xtb $(LOCAL_PAT (…) [all...] |
webkit_strings.target.linux-arm.mk | 21 $(gyp_shared_intermediate_dir)/webkit/grit/webkit_strings.h: $(LOCAL_PATH)/tools/gritsettings/resource_ids $(LOCAL_PATH)/webkit/glue/webkit_strings.grd $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_am.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_ar.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_bg.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_bn.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_ca.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_cs.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_da.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_de.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_el.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_en-GB.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_es-419.xtb $(LOCAL_PAT (…) [all...] |
webkit_strings.target.linux-mips.mk | 21 $(gyp_shared_intermediate_dir)/webkit/grit/webkit_strings.h: $(LOCAL_PATH)/tools/gritsettings/resource_ids $(LOCAL_PATH)/webkit/glue/webkit_strings.grd $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_am.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_ar.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_bg.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_bn.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_ca.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_cs.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_da.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_de.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_el.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_en-GB.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_es-419.xtb $(LOCAL_PAT (…) [all...] |
webkit_strings.target.linux-x86.mk | 21 $(gyp_shared_intermediate_dir)/webkit/grit/webkit_strings.h: $(LOCAL_PATH)/tools/gritsettings/resource_ids $(LOCAL_PATH)/webkit/glue/webkit_strings.grd $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_am.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_ar.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_bg.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_bn.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_ca.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_cs.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_da.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_de.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_el.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_en-GB.xtb $(LOCAL_PATH)/webkit/glue/resources/webkit_strings_es-419.xtb $(LOCAL_PAT (…) [all...] |
/development/tools/findunused/ |
findunusedresources | 9 -p option prints out unused resources, otherwise a total count is printed 39 resources= 42 resources="$resources $(echo $res | grep -v '\-mcc\|[a-z]*-[a-z][a-z]$\|[a-z]*-[a-z][a-z]-.*')" 62 find $resources $sources $app/AndroidManifest.xml -type f -print |xargs cat | tr -d '\n ' > /tmp/everything$$ 82 echo $app: $count unused resources
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ |
PackageTest.java | 28 private File resources; field in class:PackageTest 34 Support_Resources.copyFile(resources, "Package", resourceJar); 44 resources = Support_Resources.createTempFolder(); 45 resPath = resources.toString(); 295 Support_Resources.copyFile(resources, "Package", "hyts_c.jar"); 296 Support_Resources.copyFile(resources, "Package", "hyts_d.jar"); 297 Support_Resources.copyFile(resources, "Package", "hyts_d1.jar"); 298 Support_Resources.copyFile(resources, "Package", "hyts_d2.jar"); 319 Support_Resources.copyFile(resources, "p", ""); 321 Support_Resources.copyLocalFileTo(new File(resources.toString() [all...] |
/external/chromium_org/chrome/browser/resources/identity_scope_approval_dialog/ |
scope_approval_dialog.js | 50 chrome.identityPrivate.getResources(function(resources) { 58 insertRule('.titlebar-close-button', resources.IDR_CLOSE_DIALOG); 59 insertRule('.titlebar-close-button:hover', resources.IDR_CLOSE_DIALOG_H); 60 insertRule('.titlebar-close-button:active', resources.IDR_CLOSE_DIALOG_P); 62 document.title = resources.IDS_EXTENSION_PERMISSIONS_PROMPT_TITLE;
|