HomeSort by relevance Sort by last modified time
    Searched refs:NAMESPACE (Results 1 - 25 of 110) sorted by null

1 2 3 4 5

  /external/clang/test/Modules/
extern_c.cpp 21 #ifdef NAMESPACE
22 namespace M {
41 #if defined(NAMESPACE)
42 // expected-error-re@-3 {{import of module '{{c_library.inner|cxx_library}}' appears within namespace 'M'}}
43 // expected-note@-21 {{namespace 'M' begins here}}
57 #ifdef NAMESPACE
59 using namespace M;
63 namespace N {
73 #if !defined(CXX_HEADER) && !defined(NAMESPACE)
83 #if !defined(NAMESPACE)
    [all...]
  /libcore/luni/src/test/java/libcore/xml/
KxmlSerializerTest.java 32 private static final String NAMESPACE = null;
39 serializer.startTag(NAMESPACE, "a");
40 serializer.attribute(NAMESPACE, "cr", "\r");
41 serializer.attribute(NAMESPACE, "lf", "\n");
42 serializer.attribute(NAMESPACE, "tab", "\t");
43 serializer.attribute(NAMESPACE, "space", " ");
44 serializer.endTag(NAMESPACE, "a");
55 serializer.startTag(NAMESPACE, "foo");
56 serializer.attribute(NAMESPACE, "quux", "abc");
57 serializer.startTag(NAMESPACE, "bar")
    [all...]
  /packages/apps/Dialer/java/com/android/contacts/common/model/dataitem/
IdentityDataItem.java 37 return getContentValues().getAsString(Identity.NAMESPACE);
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
Axis.java 26 * document (ignoring attribute and namespace nodes): they do not overlap
60 * descendant axis never contains attribute or namespace nodes.
73 * any descendants and excluding attribute nodes and namespace nodes.
79 * context node; if the context node is an attribute node or namespace node,
85 * The namespace axis contains the namespace nodes of the context node; the
91 * The namespace axis contains the namespace nodes of the context node; the
94 public static final int NAMESPACE = 9;
105 * ancestors and excluding attribute nodes and namespace node
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/model/dataitem/
IdentityDataItem.java 38 return getContentValues().getAsString(Identity.NAMESPACE);
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForIdentity.java 40 if (values.containsKey(Identity.IDENTITY) || values.containsKey(Identity.NAMESPACE)) {
55 if (values.containsKey(Identity.IDENTITY) || values.containsKey(Identity.NAMESPACE)) {
  /external/testng/src/main/java/org/testng/internal/
Constants.java 18 private static final String NAMESPACE = "testng";
23 public static final String PROP_OUTPUT_DIR = NAMESPACE + "." + "outputDir";
24 // public static final String PROP_NAME = NAMESPACE + "." + "name";
25 // public static final String PROP_INCLUDED_GROUPS = NAMESPACE + "." + "includedGroups";
26 // public static final String PROP_EXCLUDED_GROUPS = NAMESPACE + "." + "excludedGroups";
27 // public static final String PROP_CLASS_NAMES = NAMESPACE + "." + "classNames";
28 // public static final String PROP_VERBOSE = NAMESPACE + "." + "verbose";
29 // public static final String PROP_JUNIT= NAMESPACE + "." + "junit";
30 // public static final String PROP_QUIET= NAMESPACE + "." + "quiet";
31 // public static final String PROP_GROUP= NAMESPACE + "." + "group"
    [all...]
  /frameworks/rs/tests/lldb/tests/harness/
util_log.py 31 NAMESPACE = 'RS_LLDB_TESTSUITE'
69 log = logging.getLogger(NAMESPACE)
141 return logging.getLogger(NAMESPACE)
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
MarshalHashtable.java 35 * namespace 'http://xml.apache.org/xml-soap'. Other soap implementations
42 public static final String NAMESPACE = "http://xml.apache.org/xml-soap";
49 public Object readInstance(XmlPullParser parser, String namespace, String name,
119 cm.addMapping(MarshalHashtable.NAMESPACE, MarshalHashtable.NAME, HASHTABLE_CLASS, this);
  /external/apache-xml/src/main/java/org/apache/xpath/patterns/
ContextMatchStepPattern.java 163 xaxis = Axis.NAMESPACE;
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/imap/
ImapConstants.java 66 public static final String NAMESPACE = "NAMESPACE";
  /packages/apps/Email/provider_src/com/android/email/mail/store/imap/
ImapConstants.java 67 public static final String NAMESPACE = "NAMESPACE";
  /frameworks/support/compat/java/android/support/v4/content/res/
TypedArrayUtils.java 48 private static final String NAMESPACE = "http://schemas.android.com/apk/res/android";
55 return parser.getAttributeValue(NAMESPACE, attrName) != null;
  /packages/apps/Email/provider_src/com/android/email/mail/store/
ImapConnection.java 55 /** NAMESPACE capability per RFC 2342 */
174 // NAMESPACE (only valid in the Authenticated state)
229 if (capabilities.contains(ImapConstants.NAMESPACE)) {
458 * Gets the user's Personal Namespace from the IMAP server per RFC 2342. If the user
459 * explicitly sets a namespace (using setup UI) or if the server does not support the
460 * namespace command, this will perform no operation.
468 responseList = executeSimpleCommand(ImapConstants.NAMESPACE);
479 if (response.isDataResponse(0, ImapConstants.NAMESPACE)) {
481 ImapList namespace = namespaceList.getListOrEmpty(0); local
482 String namespaceString = namespace.getStringOrEmpty(0).getString()
    [all...]
  /system/tools/hidl/c2hal/
c2hal_l.ll 49 using namespace android;
202 "namespace" { return NAMESPACE; }
c2hal_y.yy 37 using namespace android;
102 %token NAMESPACE
265 | NAMESPACE ID '{' declarations '}'
272 $$->setComment("/* from namespace declaration */");
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-plugin-parameter-documenter/2.0.9/
maven-plugin-parameter-documenter-2.0.9.jar 
  /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...]
DTMDefaultBaseIterators.java 152 case Axis.NAMESPACE :
219 case Axis.NAMESPACE :
507 * Iterator that returns children within a given namespace for a
580 * Iterator that returns the namespace nodes as defined by the XPath data model
638 * Iterator that returns the namespace nodes as defined by the XPath data model
740 * Iterator that returns the namespace nodes as defined by the XPath data model
797 * Iterator that returns attributes within a given namespace for a node.
1125 || ExpandedNameTable.NAMESPACE == type )
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
WalkerFactory.java 320 return Axis.NAMESPACE;
373 case Axis.NAMESPACE :
677 // String namespace = compiler.getStepNS(stepOpCodePos);
678 // boolean isNSWild = (null != namespace)
679 // ? namespace.equals(NodeTest.WILD) : false;
870 // If we have an attribute or namespace axis that went up, then
895 Axis.ATTRIBUTE : Axis.NAMESPACE;
    [all...]
  /prebuilts/misc/common/robolectric/lib/
maven-repository-metadata-2.2.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-plugin-registry/2.0.9/
maven-plugin-registry-2.0.9.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-repository-metadata/2.0.9/
maven-repository-metadata-2.0.9.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-repository-metadata/2.2.1/
maven-repository-metadata-2.2.1.jar 
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
ContactAggregator.java 308 * mismatch between them on the same namespace, otherwise, keep them separate.
322 // any raw contact in other accounts on the same namespace, and there is at least
330 "and has mis-matching identity on the same namespace between rid=" +
    [all...]

Completed in 1120 milliseconds

1 2 3 4 5