HomeSort by relevance Sort by last modified time
    Searched refs:namespace (Results 151 - 175 of 1830) sorted by null

1 2 3 4 5 67 8 91011>>

  /libcore/luni/src/main/java/javax/xml/xpath/
XPathExpression.java 21 import javax.xml.namespace.QName;
63 * QNames in the expression are resolved against the XPath namespace context.
  /cts/tests/autofillservice/src/android/autofillservice/cts/common/
OneTimeSettingsListener.java 45 public OneTimeSettingsListener(Context context, String namespace, String key) {
50 switch (namespace) {
58 throw new IllegalArgumentException("invalid namespace: " + namespace);
  /external/libxml2/python/tests/
nsdel.py 22 raise Exception("Error: saw %d namespace declarations. Expected %d" % (len(nsList), count))
27 # Remove single namespace
45 # Remove a namespace refered to by a child
48 namespace = root.newNs("http://example.com/sample", "s") variable
49 child = root.newChild(namespace, "child", None)
52 namespace.freeNsList()
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/android/
XmlResourceParserImpl.java 223 String namespace = currentNode != null ? currentNode.getNamespaceURI() : null; local
224 if (namespace == null) {
228 return maybeReplaceNamespace(namespace);
250 public String getAttribute(String namespace, String name) {
256 if (element.hasAttributeNS(namespace, name)) {
257 return element.getAttributeNS(namespace, name).trim();
258 } else if (applicationNamespace.equals(namespace)
275 private String maybeReplaceNamespace(String namespace) {
276 if (AttributeResource.RES_AUTO_NS_URI.equals(namespace)) {
279 return namespace;
287 String namespace = maybeReplaceNamespace(attr.getNamespaceURI()); local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncSystemProperty.java 74 String namespace; local
76 namespace = xctxt.getNamespaceContext().getNamespaceForPrefix(prefix);
80 if (namespace.startsWith("http://www.w3.org/XSL/Transform")
81 || namespace.equals("http://www.w3.org/1999/XSL/Transform"))
96 new Object[]{ namespace,
97 fullName }); //"Don't currently do anything with namespace "+namespace+" in property: "+fullName);
  /prebuilts/jdk/jdk8/darwin-x86/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/config/
ResultRecord.java 61 @XmlRootElement(name="ResultRecord",namespace=XmlConfigUtils.NAMESPACE)
110 @XmlElement(name="Filename",namespace=XmlConfigUtils.NAMESPACE)
128 @XmlElement(name="Date",namespace=XmlConfigUtils.NAMESPACE)
152 @XmlElement(name="DirectoryScanner",namespace=XmlConfigUtils.NAMESPACE)
172 @XmlElement(name="Actions",namespace=XmlConfigUtils.NAMESPACE)
    [all...]
  /prebuilts/jdk/jdk8/linux-x86/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/config/
ResultRecord.java 61 @XmlRootElement(name="ResultRecord",namespace=XmlConfigUtils.NAMESPACE)
110 @XmlElement(name="Filename",namespace=XmlConfigUtils.NAMESPACE)
128 @XmlElement(name="Date",namespace=XmlConfigUtils.NAMESPACE)
152 @XmlElement(name="DirectoryScanner",namespace=XmlConfigUtils.NAMESPACE)
172 @XmlElement(name="Actions",namespace=XmlConfigUtils.NAMESPACE)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/extensions/
ExtensionNamespacesManager.java 29 * extension namespace that is required during the transformation process
53 * objects is created, one for each predefined extension namespace.
61 * If necessary, register the extension namespace found compiling a function or
64 * If it is a predefined namespace, create a
66 * during transformation runtime. Otherwise, add the namespace, if necessary,
70 public void registerExtension(String namespace)
72 if (namespaceIndex(namespace, m_extensions) == -1)
74 int predef = namespaceIndex(namespace, m_predefExtensions);
77 else if (!(m_unregisteredExtensions.contains(namespace)))
78 m_unregisteredExtensions.add(namespace);
89 String namespace = extNsSpt.getNamespace(); local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
ExpandedNameTable.java 64 public static final int NAMESPACE = ((int)DTM.NAMESPACE_NODE) ;
145 * Given an expanded name represented by namespace, local name and node type,
150 * @param namespace The namespace
156 public int getExpandedTypeID(String namespace, String localName, int type)
158 return getExpandedTypeID(namespace, localName, type, false);
162 * Given an expanded name represented by namespace, local name and node type,
171 * @param namespace The namespace
179 public int getExpandedTypeID(String namespace, String localName, int type, boolean searchOnly
319 String namespace = m_extendedTypes[ExpandedNameID].getNamespace(); local
    [all...]
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/kdom/
Node.java 81 For no namespace, please use Xml.NO_NAMESPACE, null is not a
85 public Element createElement(String namespace, String name) {
88 e.namespace = namespace == null ? "" : namespace;
115 /** Returns the element with the given namespace and name. If the
119 public Element getElement(String namespace, String name) {
121 int i = indexOf(namespace, name, 0);
122 int j = indexOf(namespace, name, i + 1);
127 + namespace
    [all...]
  /frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
LayoutParserWrapper.java 174 public String getAttributeValue(@Nullable String namespace, String name) {
186 if (attribute.name.equals(name) && (attribute.namespace == namespace ||
187 attribute.namespace != null && attribute.namespace.equals(namespace))) {
194 returnValue = mDelegate.getAttributeValue(namespace, name);
208 public final String namespace; field in class:LayoutParserWrapper.Attribute
212 public Attribute(@Nullable String namespace, String name, String value) {
213 this.namespace = namespace
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
ElementType.java 26 private String theNamespace; // element type namespace name
57 theNamespace = namespace(name, false);
62 Return a namespace name from a Qname.
63 The attribute flag tells us whether to return an empty namespace
67 @return The namespace name
69 public String namespace(String name, boolean attribute) { method in class:ElementType
76 return "http://www.w3.org/XML/1998/namespace";
106 Returns the namespace name of this element type.
107 @return The namespace name of the element type
110 public String namespace() { return theNamespace; method in class:ElementType
194 String namespace = namespace(name, true); local
    [all...]
  /frameworks/base/core/java/android/content/res/
XmlBlock.java 227 public String getAttributeValue(String namespace, String name) {
228 int idx = nativeGetAttributeIndex(mParseState, namespace, name);
231 + namespace + ":" + name + " index = " + idx);
233 "Namespace=" + getAttributeNamespace(idx)
271 public void require(int type, String namespace, String name) throws XmlPullParserException,IOException {
273 || (namespace != null && !namespace.equals( getNamespace () ) )
318 public int getAttributeListValue(String namespace, String attribute,
320 int idx = nativeGetAttributeIndex(mParseState, namespace, attribute);
326 public boolean getAttributeBooleanValue(String namespace, String attribute
    [all...]
  /frameworks/layoutlib/bridge/src/android/util/
BridgeXmlPullAttributes.java 82 // get the attribute namespace
90 // this is not an attribute in the android namespace, we query the customviewloader, if
103 public int getAttributeListValue(String namespace, String attribute,
105 String value = getAttributeValue(namespace, attribute);
120 public boolean getAttributeBooleanValue(String namespace, String attribute,
122 String value = getAttributeValue(namespace, attribute);
137 public int getAttributeResourceValue(String namespace, String attribute, int defaultValue) {
138 String value = getAttributeValue(namespace, attribute);
144 public int getAttributeIntValue(String namespace, String attribute, int defaultValue) {
145 String value = getAttributeValue(namespace, attribute)
    [all...]
  /external/ltp/testcases/kernel/containers/pidns/
README 23 A pid namespace is a view of particular set of tasks on the system. For processes, a process may have pid 1234 in one namespace, but have pid 1 in another.This allows processes to use process ids which are in use in other pid namespaces, without having to worry about what pids exist in other namespaces.
25 "A process has a pid in every ancestor pid namespaces up to the initial pid namespace. If process B is in a child namespace relative to process A, then process A will see process B by the pid which is valid in process A's pid namespace."
27 "Another way of specifying process visibility, then is that process A will see all tasks which have a valid pid in process A's pid namespace."
34 2> After creation of container the PID Namespace of the container should have the parent group id as 1 and also session id as 1.
35 3> Create container: pass the parent namespacei id: mount /proc directory: check parent namespace id inside container: if it is exiting then PASS otherwise FAIL.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
ContextPullParser.java 105 String namespace = getAttributeNamespace(i); local
106 if (namespace != null && namespace.equals(TOOLS_URI)) {
145 public String getAttributeValue(String namespace, String localName) {
150 String value = super.getAttributeValue(namespace, localName);
157 SdkConstants.NS_RESOURCES.equals(namespace)) {
  /external/selinux/python/sepolicy/
sepolicy.py 54 def __call__(self, parser, namespace, values, option_string=None):
57 setattr(namespace, self.dest, values)
62 def __call__(self, parser, namespace, values, option_string=None):
66 setattr(namespace, self.dest, values)
68 newval = getattr(namespace, self.dest)
74 setattr(namespace, self.dest, newval)
79 def __call__(self, parser, namespace, values, option_string=None):
81 newval = getattr(namespace, self.dest)
90 setattr(namespace, self.dest, newval)
97 setattr(namespace, self.dest, newval
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
ITreeNodeStream.cs 33 namespace Antlr.Runtime.Tree {
ITreeVisitorAction.cs 33 namespace Antlr.Runtime.Tree
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
ITreeNodeStream.cs 33 namespace Antlr.Runtime.Tree
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/JavaExtensions/
ExceptionExtensions.cs 33 namespace Antlr.Runtime.JavaExtensions
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
StringBuilderExtensions.cs 39 namespace Antlr.Runtime.JavaExtensions
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
ITreeFactory.cs 33 namespace Antlr.Runtime.Tree
ITreeNodeStream`1.cs 33 namespace Antlr.Runtime.Tree
  /external/brotli/csharp/org/brotli/dec/
BitReaderTest.cs 6 namespace Org.Brotli.Dec

Completed in 881 milliseconds

1 2 3 4 5 67 8 91011>>