/libcore/luni/src/main/java/java/util/ |
PropertyResourceBundle.java | 25 * {@code PropertyResourceBundle} loads resources from an {@code InputStream}. All resources are 26 * Strings. The resources must be of the form {@code key=value}, one 35 Properties resources; field in class:PropertyResourceBundle 51 resources = new Properties(); 52 resources.load(stream); 63 resources = new Properties(); 64 resources.load(reader); 68 return resources.stringPropertyNames(); 73 return (Enumeration<String>) resources.propertyNames() [all...] |
/libcore/luni/src/test/java/libcore/java/util/jar/ |
OldJarFileTest.java | 33 private File resources = Support_Resources.createTempFolder(); field in class:OldJarFileTest 42 Support_Resources.copyFile(resources, null, jarName); 43 new JarFile(new File(resources, jarName)); 53 Support_Resources.copyFile(resources, null, jarName); 54 String fileName = (new File(resources, jarName)).getCanonicalPath(); 65 Support_Resources.copyFile(resources, null, jarName); 66 String fileName = (new File(resources, jarName)).getCanonicalPath(); 77 Support_Resources.copyFile(resources, null, jarName); 78 new JarFile(new File(resources, jarName), false); 89 Support_Resources.copyFile(resources, null, jarName) [all...] |
/external/apache-harmony/support/src/test/java/tests/resources/subfolder/tests/resources/ |
hyts_resource_fr_FR.java | 18 package tests.resources.subfolder.tests.resources;
|
/external/chromium_org/chrome/browser/resources/ |
PRESUBMIT.py | 5 """Presubmit script for Chromium WebUI resources. 25 resources = input_api.PresubmitLocalPath() 30 path.join(resources, 'PRESUBMIT.py'), 31 path.join(resources, 'test_presubmit.py'), 32 path.join(resources, 'web_dev_style', 'css_checker.py'), 33 path.join(resources, 'web_dev_style', 'js_checker.py'), 36 tests = [path.join(resources, 'test_presubmit.py')] 44 sys.path = [resources] + old_path 48 return p.endswith(('.html', '.css', '.js')) and p.startswith(resources)
|
/external/chromium_org/chrome/browser/chromeos/drive/ |
test_util.cc | 76 const TestCacheResource resources[] = { local 116 resources, 117 resources + ARRAYSIZE_UNSAFE(resources)); 122 const std::vector<TestCacheResource>& resources) { 132 for (size_t i = 0; i < resources.size(); ++i) { 134 if (!resources[i].source_file.empty()) { 137 resources[i].resource_id, 138 resources[i].md5, 147 if (resources[i].is_pinned) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/manager/ |
ResourceManager.java | 17 package com.android.ide.eclipse.adt.internal.resources.manager; 20 import com.android.ide.common.resources.FrameworkResources; 21 import com.android.ide.common.resources.ResourceFile; 22 import com.android.ide.common.resources.ResourceFolder; 23 import com.android.ide.common.resources.ResourceRepository; 24 import com.android.ide.common.resources.ScanningContext; 27 import com.android.ide.eclipse.adt.internal.resources.ResourceHelper; 28 import com.android.ide.eclipse.adt.internal.resources.manager.GlobalProjectMonitor.IProjectListener; 29 import com.android.ide.eclipse.adt.internal.resources.manager.GlobalProjectMonitor.IRawDeltaListener; 35 import com.android.resources.ResourceFolderType 157 ProjectResources resources = mMap.get(project); local 228 ProjectResources resources; local 327 ProjectResources resources; local 461 ProjectResources resources = getProjectResources(project); local 476 ProjectResources resources = getProjectResources(project); local 493 FrameworkResources resources = new FrameworkResources(frameworkRes); local [all...] |
/packages/apps/Dialer/src/com/android/dialer/calllog/ |
CallTypeHelper.java | 19 import android.content.res.Resources; 41 public CallTypeHelper(Resources resources) { 43 mIncomingName = resources.getString(R.string.type_incoming); 44 mOutgoingName = resources.getString(R.string.type_outgoing); 45 mMissedName = resources.getString(R.string.type_missed); 46 mVoicemailName = resources.getString(R.string.type_voicemail); 47 mNewMissedColor = resources.getColor(R.color.call_log_missed_call_highlight_color); 48 mNewVoicemailColor = resources.getColor(R.color.call_log_voicemail_highlight_color);
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
UserInitializeReceiver.java | 28 import android.content.res.Resources; 37 final Resources resources = context.getResources(); local 39 // com.android.launcher2; Resources needs the real package name, 40 // com.android.launcher. So we ask Resources for what it thinks the 42 final String packageName = resources.getResourcePackageName(R.array.wallpapers); 44 addWallpapers(resources, packageName, R.array.wallpapers, list); 45 addWallpapers(resources, packageName, R.array.extra_wallpapers, list); 60 private void addWallpapers(Resources resources, String packageName, int resid [all...] |
/external/chromium_org/chrome/browser/ui/webui/options/chromeos/ |
proxy_handler.cc | 38 static OptionsStringResource resources[] = { local 60 RegisterStrings(localized_strings, resources, arraysize(resources));
|
/external/chromium_org/tools/grit/grit/format/ |
data_pack.py | 27 # one uint8 (encoding of text resources) 36 'DataPackContents', 'resources encoding') 63 resources = {} 65 return DataPackContents(resources, encoding) 74 resources[id] = original_data[offset:next_offset] 76 return DataPackContents(resources, encoding) 79 def WriteDataPackToString(resources, encoding): 82 ids = sorted(resources.keys()) 97 data_offset += len(resources[id]) 103 ret.append(resources[id] [all...] |
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
WebPageNewSerializerTest.cpp | 162 // Server the delayed resources. 172 static bool resourceVectorContains(const WebVector<WebPageSerializer::Resource>& resources, const char* url, const char* mimeType) 175 for (size_t i = 0; i < resources.size(); ++i) { 176 const WebPageSerializer::Resource& resource = resources[i]; 194 // Tests that a page with resources and sub-frame is reported with all its resources. 208 WebVector<WebPageSerializer::Resource> resources; local 209 WebPageSerializer::serialize(m_webView, &resources); 210 ASSERT_FALSE(resources.isEmpty()); 213 const WebPageSerializer::Resource& resource = resources[0] 235 WebVector<WebPageSerializer::Resource> resources; local 271 WebVector<WebPageSerializer::Resource> resources; local 298 WebVector<WebPageSerializer::Resource> resources; local [all...] |
/external/chromium_org/ui/ |
ui_resources.target.darwin-arm.mk | 21 $(gyp_shared_intermediate_dir)/ui/ui_resources/grit/ui_resources.h: $(LOCAL_PATH)/tools/gritsettings/resource_ids $(LOCAL_PATH)/ui/resources/ui_resources.grd $(LOCAL_PATH)/ui/resources/default_100_percent/app_top_center.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_bottom.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_bottom_left.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_bottom_right.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_left.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_pointer_bottom.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_pointer_left.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_pointer_right.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_pointer_top.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_r (…) [all...] |
ui_resources.target.darwin-mips.mk | 21 $(gyp_shared_intermediate_dir)/ui/ui_resources/grit/ui_resources.h: $(LOCAL_PATH)/tools/gritsettings/resource_ids $(LOCAL_PATH)/ui/resources/ui_resources.grd $(LOCAL_PATH)/ui/resources/default_100_percent/app_top_center.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_bottom.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_bottom_left.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_bottom_right.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_left.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_pointer_bottom.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_pointer_left.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_pointer_right.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_pointer_top.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_r (…) [all...] |
ui_resources.target.darwin-x86.mk | 21 $(gyp_shared_intermediate_dir)/ui/ui_resources/grit/ui_resources.h: $(LOCAL_PATH)/tools/gritsettings/resource_ids $(LOCAL_PATH)/ui/resources/ui_resources.grd $(LOCAL_PATH)/ui/resources/default_100_percent/app_top_center.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_bottom.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_bottom_left.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_bottom_right.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_left.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_pointer_bottom.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_pointer_left.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_pointer_right.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_pointer_top.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_r (…) [all...] |
ui_resources.target.linux-arm.mk | 21 $(gyp_shared_intermediate_dir)/ui/ui_resources/grit/ui_resources.h: $(LOCAL_PATH)/tools/gritsettings/resource_ids $(LOCAL_PATH)/ui/resources/ui_resources.grd $(LOCAL_PATH)/ui/resources/default_100_percent/app_top_center.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_bottom.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_bottom_left.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_bottom_right.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_left.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_pointer_bottom.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_pointer_left.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_pointer_right.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_pointer_top.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_r (…) [all...] |
ui_resources.target.linux-mips.mk | 21 $(gyp_shared_intermediate_dir)/ui/ui_resources/grit/ui_resources.h: $(LOCAL_PATH)/tools/gritsettings/resource_ids $(LOCAL_PATH)/ui/resources/ui_resources.grd $(LOCAL_PATH)/ui/resources/default_100_percent/app_top_center.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_bottom.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_bottom_left.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_bottom_right.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_left.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_pointer_bottom.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_pointer_left.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_pointer_right.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_pointer_top.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_r (…) [all...] |
ui_resources.target.linux-x86.mk | 21 $(gyp_shared_intermediate_dir)/ui/ui_resources/grit/ui_resources.h: $(LOCAL_PATH)/tools/gritsettings/resource_ids $(LOCAL_PATH)/ui/resources/ui_resources.grd $(LOCAL_PATH)/ui/resources/default_100_percent/app_top_center.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_bottom.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_bottom_left.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_bottom_right.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_left.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_pointer_bottom.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_pointer_left.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_pointer_right.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_pointer_top.png $(LOCAL_PATH)/ui/resources/default_100_percent/bubble_r (…) [all...] |
/external/apache-harmony/support/src/test/resources/tests/resources/subfolder/tests/norootresources/ |
hyts_resource_en_US.java | 18 package tests.resources.subfolder.tests.norootresources;
|
hyts_resource_en_US_VAR.java | 18 package tests.resources.subfolder.tests.norootresources;
|
hyts_resource_fr.java | 18 package tests.resources.subfolder.tests.norootresources;
|
hyts_resource_fr_FR.java | 18 package tests.resources.subfolder.tests.norootresources;
|
hyts_resource_fr_FR_VAR.java | 17 package tests.resources.subfolder.tests.norootresources;
|
/external/chromium_org/cc/output/ |
compositor_frame_ack.h | 11 #include "cc/resources/transferable_resource.h" 20 TransferableResourceArray resources; member in class:cc::CompositorFrameAck
|
/external/chromium_org/chrome/renderer/safe_browsing/ |
malware_dom_details.cc | 48 std::vector<SafeBrowsingHostMsg_MalwareDOMDetails_Node> resources; local 49 ExtractResources(&resources); 52 render_view()->GetRoutingID(), resources)); 56 std::vector<SafeBrowsingHostMsg_MalwareDOMDetails_Node>* resources) { 70 resources->push_back(details_node); 83 HandleElement(element, &details_node, resources); 84 if (resources->size() >= kMaxNodes) { 86 resources->push_back(details_node); 92 resources->push_back(details_node); 99 std::vector<SafeBrowsingHostMsg_MalwareDOMDetails_Node>* resources) { [all...] |
/external/chromium_org/chrome/test/chromeos/autotest/files/client/deps/pyauto_dep/ |
setup_test_links.sh | 12 [ -L $(dirname $0)/resources ] || ln -f -s /opt/google/chrome/resources \ 13 $(dirname $0)/resources
|