Searched refs:isSystem (Results 1 - 25 of 31) sorted by relevance

12

/external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
H A DDimenResourceLoader.java18 public float getValue(String resourceName, boolean isSystem) { argument
19 return getValue(resourceExtractor.getResourceId(resourceName, isSystem));
23 protected void processNode(Node node, String name, boolean isSystem) { argument
24 dimenResolver.processResource(name, node.getTextContent(), this, isSystem);
H A DStringResourceLoader.java16 public String getValue(String resourceName, boolean isSystem) { argument
17 return getValue(resourceExtractor.getResourceId(resourceName, isSystem));
20 @Override protected void processNode(Node node, String name, boolean isSystem) { argument
21 stringResolver.processResource(name, node.getTextContent(), this, isSystem);
H A DDocumentLoader.java32 public void loadResourceXmlDirs(boolean isSystem, File... resourceXmlDirs) throws Exception { argument
34 loadResourceXmlDir(resourceXmlDir, isSystem);
46 private void loadResourceXmlDir(File resourceXmlDir, boolean isSystem) throws Exception { argument
52 loadResourceXmlFile(file, isSystem);
56 private void loadResourceXmlFile(File file, boolean isSystem) throws Exception { argument
58 xmlLoader.processResourceXml(file, parse(file), isSystem);
H A DAttrResourceLoader.java26 protected void processResourceXml(File xmlFile, Document document, boolean isSystem) throws Exception { argument
36 classAttrEnumToValue.put(key(viewName, enumName, name, isSystem), value);
37 knownClassAttrs.add(key(viewName, enumName, isSystem));
42 boolean isSystem = "android".equals(namespace);
43 String className = findKnownAttrClass(attrName, viewClass, isSystem);
44 return classAttrEnumToValue.get(key(className, attrName, attrValue, isSystem));
48 boolean isSystem = "android".equals(namespace);
49 return findKnownAttrClass(attrName, viewClass, isSystem) != null;
52 private String findKnownAttrClass(String attrName, Class<?> clazz, boolean isSystem) { argument
55 if (isSystem) {
66 key(String viewName, String attrName, String name, boolean isSystem) argument
70 key(String viewName, String attrName, boolean isSystem) argument
[all...]
H A DIntegerResourceLoader.java27 public int getValue( String resourceName, boolean isSystem ) {
28 Integer resourceId = resourceExtractor.getResourceId(resourceName, isSystem);
30 throw new IllegalArgumentException("No such resource (" + isSystem + "): " + resourceName);
48 protected void processNode( Node node, String name, boolean isSystem ) {
49 integerResolver.processResource( name, node.getTextContent(), this, isSystem );
H A DXmlLoader.java15 protected abstract void processResourceXml(File xmlFile, Document document, boolean isSystem) throws Exception; argument
H A DXTagXmlResourceLoader.java38 protected void processResourceXml( File xmlFile, Document document, boolean isSystem ) throws Exception {
48 processNode( node, name, isSystem );
69 protected abstract void processNode( Node node, String name, boolean isSystem );
H A DXpathResourceXmlLoader.java21 @Override protected void processResourceXml(File xmlFile, Document document, boolean isSystem) throws Exception { argument
27 processNode(node, name, isSystem);
31 protected abstract void processNode(Node node, String name, boolean isSystem) throws XPathExpressionException; argument
H A DStringArrayResourceLoader.java29 @Override protected void processNode(Node node, String name, boolean isSystem) throws XPathExpressionException { argument
39 arrayValues.add(stringResourceLoader.getValue(value , isSystem));
44 String valuePointer = (isSystem ? "android:" : "") + "array/" + name;
H A DColorResourceLoader.java42 protected void processNode(Node node, String name, boolean isSystem) { argument
43 colorResolver.processResource(name, node.getTextContent(), this, isSystem);
H A DResourceReferenceResolver.java21 public void processResource(String name, String rawValue, ResourceValueConverter loader, boolean isSystem) { argument
26 if (isSystem) {
H A DViewLoader.java40 protected void processResourceXml(File xmlFile, Document document, boolean isSystem) throws Exception { argument
41 ViewNode topLevelNode = new ViewNode("top-level", new HashMap<String, String>(), isSystem);
44 if (isSystem) {
73 ViewNode viewNode = new ViewNode(name, attrMap, parent.isSystem);
154 boolean isSystem = false; field in class:ViewLoader.ViewNode
156 public ViewNode(String name, Map<String, String> attributes, boolean isSystem) { argument
159 this.isSystem = isSystem;
208 TestAttributeSet attributeSet = new TestAttributeSet(attributes, resourceExtractor, attrResourceLoader, View.class, isSystem);
245 TestAttributeSet attributeSet = new TestAttributeSet(attributes, resourceExtractor, attrResourceLoader, clazz, isSystem);
[all...]
H A DPluralResourceLoader.java36 @Override protected void processNode(Node node, String name, boolean isSystem) throws XPathExpressionException { argument
46 rules.add(new Plural(quantity, stringResourceLoader.getValue(value, isSystem)));
H A DResourceExtractor.java59 boolean isSystem = false;
60 return getResourceId(value, isSystem);
H A DDrawableResourceLoader.java95 * @param isSystem System resource
101 protected void processResourceXml(File xmlFile, Document document, boolean isSystem) throws Exception { argument
104 if (isSystem) {
H A DPreferenceLoader.java34 protected void processResourceXml(File xmlFile, Document document, boolean isSystem) throws Exception { argument
H A DResourceLoader.java220 private void loadLayoutResourceXmlSubDirs( DocumentLoader layoutDocumentLoader, File xmlResourceDir, boolean isSystem )
223 layoutDocumentLoader.loadResourceXmlDirs( isSystem, xmlResourceDir.listFiles( LAYOUT_DIR_FILE_FILTER ) );
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/category/
H A DPropertyCategory.java62 Assert.isTrue(system.isSystem());
149 public boolean isSystem() { method in class:PropertyCategory
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/util/
H A DTestAttributeSet.java16 private boolean isSystem = false; field in class:TestAttributeSet
33 AttrResourceLoader attrResourceLoader, Class<? extends View> viewClass, boolean isSystem) {
38 this.isSystem = isSystem;
211 if (value != null && isSystem && value.startsWith("@+id")) {
32 TestAttributeSet(Map<String, String> attributes, ResourceExtractor resourceExtractor, AttrResourceLoader attrResourceLoader, Class<? extends View> viewClass, boolean isSystem) argument
/external/clang/include/clang/Frontend/
H A DFrontendOptions.h101 bool isSystem() const { return IsSystem; } function in class:clang::FrontendInputFile
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
H A DImeAdapter.java390 event.isSystem(), event.getUnicodeChar());
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.jobs_3.5.1.R36x_v20100824.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtztest.cpp1839 UBool isSystem;
1869 if (isSystemID != data[i].isSystem) {
/external/icu4c/test/intltest/
H A Dtztest.cpp2063 UBool isSystem; member in struct:__anon18538
2096 if (isSystemID != data[i].isSystem) {
/external/clang/include/clang/Serialization/
H A DASTReader.h181 virtual bool visitInputFile(StringRef Filename, bool isSystem) { return true;} argument

Completed in 210 milliseconds

12