Searched defs:ns (Results 1 - 25 of 132) sorted by relevance

123456

/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udir/
H A Dp6.cpp5 namespace ns { namespace
8 using namespace ns;
12 namespace ns { namespace
/external/clang/test/PCH/
H A Dchain-late-anonymous-namespace.cpp8 namespace ns {} namespace
14 namespace ns {
36 namespace ns {
/external/clang/test/SemaCXX/
H A Dliteral-operators.cpp10 namespace ns { void operator "" _ns_good (const char *); } namespace
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
H A Dp10.cpp23 namespace ns { namespace in namespace:test1
27 using ns::foo;
30 namespace ns { namespace in namespace:test1
H A Dp11.cpp14 namespace ns { void foo(); } // expected-note {{target of using declaration}} namespace in namespace:test0
16 using ns::foo; // expected-error {{target of using declaration conflicts with declaration already in scope}}
20 namespace ns { void foo(); } // expected-note {{target of using declaration}} namespace in namespace:test1
21 using ns::foo; //expected-note {{using declaration}}
26 namespace ns { void foo(); } // expected-note 2 {{target of using declaration}} namespace in namespace:test2
29 using ns::foo; // expected-error {{target of using declaration conflicts with declaration already in scope}}
33 using ns::foo; //expected-note {{using declaration}}
39 namespace ns { void foo(); } // expected-note 2 {{target of using declaration}} namespace in namespace:test3
43 using ns::foo; // expected-error {{target of using declaration conflicts with declaration already in scope}}
49 using ns
56 namespace ns { void foo(); } // expected-note 2 {{target of using declaration}} namespace in namespace:test4
74 namespace ns { void foo(int); } namespace in namespace:test5
[all...]
H A Dp8.cpp8 namespace ns { namespace in namespace:test0
12 using ns::foo;
13 using ns::foo;
19 namespace ns { namespace in namespace:test0
27 using ns::foo;
33 using ns::foo;
38 namespace ns { namespace in namespace:test1
43 using ns::foo;
50 namespace ns { namespace in namespace:test1
59 using ns
[all...]
/external/clang/test/SemaTemplate/
H A Ddependent-names-no-std.cpp7 namespace ns { namespace in namespace:PR10053
18 void f(ns::Data); // expected-note {{in namespace 'PR10053::ns'}}
20 A<ns::Data> a; // expected-note {{in instantiation of member function}}
H A Dtemp_arg_type.cpp19 namespace ns { namespace
22 A<ns::B> a8; // expected-error{{use of class template ns::B requires template arguments}}
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dutil.h41 int32 ns = 0; local
42 strm.read(reinterpret_cast<char *>(&ns), sizeof(ns));
43 for (int i = 0; i < ns; ++i) {
61 int32 ns = s.size(); local
62 strm.write(reinterpret_cast<const char *>(&ns), sizeof(ns));
63 return strm.write(s.data(), ns);
H A Dverify.h39 StateId ns = 0; local
43 ++ns;
45 if (start == kNoStateId && ns > 0) {
48 } else if (start >= ns) {
90 } else if (arc.nextstate >= ns) {
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DSerializerSwitcher.java49 * @param ns Namespace URI of the element
55 TransformerImpl transformer, String ns, String localName)
62 if (((null == ns) || (ns.length() == 0))
143 * @param ns Namespace URI of the element
150 String ns, String localName, Properties props, Serializer oldSerializer)
155 if (((null == ns) || (ns.length() == 0))
54 switchSerializerIfHTML( TransformerImpl transformer, String ns, String localName) argument
149 switchSerializerIfHTML( String ns, String localName, Properties props, Serializer oldSerializer) argument
/external/apache-xml/src/main/java/org/apache/xpath/
H A DExtensionsProvider.java38 public boolean functionAvailable(String ns, String funcName) argument
44 public boolean elementAvailable(String ns, String elemName) argument
50 public Object extFunction(String ns, String funcName, argument
/external/apache-xml/src/main/java/org/apache/xpath/jaxp/
H A DJAXPExtensionsProvider.java64 public boolean functionAvailable(String ns, String funcName) argument
74 javax.xml.namespace.QName myQName = new QName( ns, funcName );
92 public boolean elementAvailable(String ns, String elemName) argument
100 public Object extFunction(String ns, String funcName, Vector argVec, argument
111 javax.xml.namespace.QName myQName = new QName( ns, funcName );
/external/chromium/third_party/libjingle/overrides/talk/xmllite/
H A Dqname.cc16 QName::QName(const std::string & ns, const std::string & local) : argument
17 namespace_(ns), local_part_(local) {}
19 QName::QName(bool add, const std::string & ns, const std::string & local) : argument
20 namespace_(ns), local_part_(local) {}
/external/clang/test/Parser/
H A Dcxx-ambig-paren-expr.cpp32 namespace ns { namespace
51 if (result((ns::type) i).check())
60 if (result((ns::rec) i).check())
/external/flac/include/share/
H A Dalloc.h40 size_t ns = n; local
42 return n == ns ? malloc(ns) : NULL;
49 size_t ns = n; local
51 return n == ns ? malloc(ns) : NULL;
58 size_t ns = n; local
60 return n == ns ? malloc(ns) : NULL;
67 size_t ns local
[all...]
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
H A DCondVar.cpp110 long ns = absoluteTime.tv_nsec + ((millisec % 1000) * 1000000); local
111 if (ns > 1000000000)
114 absoluteTime.tv_nsec = ns - 1000000000;
117 absoluteTime.tv_nsec = ns;
/external/apache-xml/src/main/java/org/apache/xalan/extensions/
H A DExtensionNamespacesManager.java131 String ns = (String)m_unregisteredExtensions.get(i);
132 ExtensionNamespaceSupport extNsSpt = defineJavaNamespace(ns);
148 * @param ns The extension namespace URI.
155 public ExtensionNamespaceSupport defineJavaNamespace(String ns) argument
157 return defineJavaNamespace(ns, ns);
159 public ExtensionNamespaceSupport defineJavaNamespace(String ns, String classOrPackage) argument
161 if(null == ns || ns.trim().length() == 0) // defensive. I don't think it's needed. -sb
184 ns,
[all...]
H A DExtensionsTable.java101 * @param ns the URI of namespace in which the function is needed
108 public boolean functionAvailable(String ns, String funcName) argument
113 if (null != ns)
116 (ExtensionHandler) m_extensionFunctionNamespaces.get(ns);
125 * @param ns the URI of namespace in which the function is needed
132 public boolean elementAvailable(String ns, String elemName) argument
136 if (null != ns)
139 (ExtensionHandler) m_extensionFunctionNamespaces.get(ns);
148 * @param ns the URI of namespace in which the function is needed
161 public Object extFunction(String ns, Strin argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/util/
H A DPack.java14 public static void bigEndianToInt(byte[] bs, int off, int[] ns) argument
16 for (int i = 0; i < ns.length; ++i)
18 ns[i] = bigEndianToInt(bs, off);
31 public static void intToBigEndian(int[] ns, byte[] bs, int off) argument
33 for (int i = 0; i < ns.length; ++i)
35 intToBigEndian(ns[i], bs, off);
62 public static void littleEndianToInt(byte[] bs, int off, int[] ns) argument
64 for (int i = 0; i < ns.length; ++i)
66 ns[i] = littleEndianToInt(bs, off);
79 public static void intToLittleEndian(int[] ns, byt argument
[all...]
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/namespace.memdef/
H A Dp3.cpp75 namespace ns { namespace in namespace:test5
83 A::foo(); // expected-error {{'foo' is a private member of 'test5::ns::A'}}
88 ns::A::foo(); // expected-error {{'foo' is a private member of 'test5::ns::A'}}
/external/openfst/src/include/fst/
H A Dverify.h42 StateId ns = 0; local
46 ++ns;
48 if (start == kNoStateId && ns > 0) {
51 } else if (start >= ns) {
93 } else if (arc.nextstate >= ns) {
/external/chromium/third_party/libjingle/source/talk/xmllite/
H A Dqname.cc36 static int QName_Hash(const std::string & ns, const char * local) { argument
37 int result = static_cast<int>(ns.size()) * 101;
53 AllocateOrFind(const std::string & ns, const char * local) { argument
54 int index = QName_Hash(ns, local);
60 return new QName::Data(ns, local);
63 qname_table[index].namespace_ == ns) {
72 Add(const std::string & ns, const char * local) { argument
73 int index = QName_Hash(ns, local);
79 qname_table[index].namespace_ = ns;
86 qname_table[index].namespace_ == ns) {
102 QName(bool add, const std::string & ns, const char * local) argument
105 QName(bool add, const std::string & ns, const std::string & local) argument
108 QName(const std::string & ns, const char * local) argument
[all...]
H A Dqname.h41 explicit QName(bool add, const std::string & ns, const char * local);
42 explicit QName(bool add, const std::string & ns, const std::string & local);
43 explicit QName(const std::string & ns, const char * local);
63 Data(const std::string & ns, const std::string & local) : argument
64 namespace_(ns),
/external/clang/test/Misc/
H A Ddiag-aka-types.cpp33 namespace ns { namespace
43 void helper(callback cb) {} // expected-note{{candidate function not viable: no known conversion from 'void (*)(struct data *)' (aka 'void (*)(ns::data *)') to 'callback' (aka 'void (*)(struct data *)') for 1st argument}}
46 helper(&ns::str::method); // expected-error{{no matching function for call to 'helper'}}

Completed in 942 milliseconds

123456