Searched refs:ns (Results 1 - 25 of 526) sorted by relevance

1234567891011>>

/external/clang/test/CodeGenCXX/
H A Ddebug-info-global.cpp6 namespace ns { namespace
10 return ns::cnst + ns::cnst;
18 // CHECK: [[NS]] = {{.*}}; [ DW_TAG_namespace ] [ns]
/external/chromium-trace/trace-viewer/third_party/gl-matrix/spec/helpers/
H A Dnode-helper.js3 for (var ns in glm) {
4 global[ns] = glm[ns];
/external/lldb/test/lang/objc/objc-builtin-types/
H A Dmain.cpp1 namespace ns { namespace
7 ns::id foo = 0;
/external/libcxx/test/utilities/time/time.duration/time.duration.nonmember/
H A Dop_times_rep.pass.cpp30 std::chrono::nanoseconds ns(3);
31 ns = ns * 5;
32 assert(ns.count() == 15);
33 ns = 6 * ns;
34 assert(ns.count() == 90);
38 constexpr std::chrono::nanoseconds ns(3);
39 constexpr std::chrono::nanoseconds ns2 = ns * 5;
41 constexpr std::chrono::nanoseconds ns3 = 6 * ns;
[all...]
H A Dop_divide_rep.pass.cpp25 std::chrono::nanoseconds ns(15);
26 ns = ns / 5;
27 assert(ns.count() == 3);
31 constexpr std::chrono::nanoseconds ns(15);
32 constexpr std::chrono::nanoseconds ns2 = ns / 5;
H A Dop_mod_rep.pass.cpp25 std::chrono::nanoseconds ns(15);
26 ns = ns % 6;
27 assert(ns.count() == 3);
31 constexpr std::chrono::nanoseconds ns(15);
32 constexpr std::chrono::nanoseconds ns2 = ns % 6;
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udir/
H A Dp6.cpp6 namespace ns { namespace
9 using namespace ns;
13 namespace ns { namespace
/external/libcxx/test/utilities/time/time.duration/time.duration.arithmetic/
H A Dop_divide=.pass.cpp21 std::chrono::nanoseconds ns(15);
22 ns /= 5;
23 assert(ns.count() == 3);
H A Dop_times=.pass.cpp21 std::chrono::nanoseconds ns(3);
22 ns *= 5;
23 assert(ns.count() == 15);
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
H A Dp11.cpp16 namespace ns { void foo(); } // expected-note {{target of using declaration}} namespace in namespace:test0
18 using ns::foo; // expected-error {{target of using declaration conflicts with declaration already in scope}}
22 namespace ns { void foo(); } // expected-note {{target of using declaration}} namespace in namespace:test1
23 using ns::foo; //expected-note {{using declaration}}
28 namespace ns { void foo(); } // expected-note 2 {{target of using declaration}} namespace in namespace:test2
31 using ns::foo; // expected-error {{target of using declaration conflicts with declaration already in scope}}
35 using ns::foo; //expected-note {{using declaration}}
41 namespace ns { void foo(); } // expected-note 2 {{target of using declaration}} namespace in namespace:test3
45 using ns::foo; // expected-error {{target of using declaration conflicts with declaration already in scope}}
51 using ns
58 namespace ns { void foo(); } // expected-note 2 {{target of using declaration}} namespace in namespace:test4
76 namespace ns { void foo(int); } namespace in namespace:test5
96 namespace ns { void foo(); } // expected-note {{target of using declaration}} namespace in namespace:test6
98 namespace ns { namespace in namespace:test6
[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...]
H A Dp10.cpp24 namespace ns { namespace in namespace:test1
28 using ns::foo;
31 namespace ns { namespace in namespace:test1
/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}}
/external/libutf/
H A Drunestrdup.c23 Rune *ns; local
25 ns = (Rune*)malloc(sizeof(Rune)*(runestrlen(s) + 1));
26 if(ns == 0)
29 return runestrcpy(ns, s);
/external/smack/src/org/jivesoftware/smackx/pubsub/packet/
H A DPubSubNamespace.java38 String ns = "http://jabber.org/protocol/pubsub";
41 ns += '#' + fragment;
43 return ns;
51 public static PubSubNamespace valueOfFromXmlns(String ns) argument
53 int index = ns.lastIndexOf('#');
57 String suffix = ns.substring(ns.lastIndexOf('#')+1);
H A DPubSub.java29 private PubSubNamespace ns = PubSubNamespace.BASIC; field in class:PubSub
52 return ns.getXmlns();
60 * @param ns - The new value for the namespace.
62 public void setPubSubNamespace(PubSubNamespace ns) argument
64 this.ns = ns;
80 return ns;
/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);
38 public static byte[] intToBigEndian(int[] ns) argument
40 byte[] bs = new byte[4 * ns.length];
41 intToBigEndian(ns, bs, 0);
45 public static void intToBigEndian(int[] ns, byte[] bs, int off) argument
47 for (int i = 0; i < ns.length; ++i)
49 intToBigEndian(ns[i], bs, off);
61 public static void bigEndianToLong(byte[] bs, int off, long[] ns) argument
83 longToBigEndian(long[] ns) argument
90 longToBigEndian(long[] ns, byte[] bs, int off) argument
108 littleEndianToInt(byte[] bs, int off, int[] ns) argument
132 intToLittleEndian(int[] ns) argument
139 intToLittleEndian(int[] ns, byte[] bs, int off) argument
155 littleEndianToLong(byte[] bs, int off, long[] ns) argument
177 longToLittleEndian(long[] ns) argument
184 longToLittleEndian(long[] ns, byte[] bs, int off) argument
[all...]
/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);
/external/clang/test/PCH/
H A Dchain-late-anonymous-namespace.cpp10 namespace ns {} namespace
16 namespace ns {
38 namespace ns {
/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/chromium_org/third_party/libxslt/libxslt/
H A Dnamespaces.c203 * Store the ns-node in the alias-object.
323 * Find a matching (prefix and ns-name) ns-declaration
325 * If none is found then a new ns-declaration will be
327 * already in use, then a ns-declaration with a modified ns-prefix
329 * preserve ns-prefixes; it will only change a prefix if there's
341 xmlNsPtr ns; local
349 * NOTE: Namespace exclusion and ns-aliasing is performed at
360 * the ns
634 xsltGetNamespace(xsltTransformContextPtr ctxt, xmlNodePtr cur, xmlNsPtr ns, xmlNodePtr out) argument
707 xsltGetPlainNamespace(xsltTransformContextPtr ctxt, xmlNodePtr cur, xmlNsPtr ns, xmlNodePtr out) argument
825 xsltCopyNamespace(xsltTransformContextPtr ctxt ATTRIBUTE_UNUSED, xmlNodePtr elem, xmlNsPtr ns) argument
[all...]
/external/chromium_org/components/policy/core/common/cloud/
H A Dcomponent_cloud_policy_updater.cc58 PolicyNamespace ns; local
60 if (!store_->ValidatePolicy(response.Pass(), &ns, &data)) {
66 const std::string& cached_hash = store_->GetCachedHash(ns);
74 const std::string key = NamespaceToKey(ns);
82 store_->Delete(ns);
92 ns,
98 void ComponentCloudPolicyUpdater::CancelUpdate(const PolicyNamespace& ns) { argument
99 external_policy_data_updater_.CancelExternalDataFetch(NamespaceToKey(ns));
103 const PolicyNamespace& ns) {
104 const std::string domain = base::IntToString(ns
102 NamespaceToKey( const PolicyNamespace& ns) argument
[all...]
/external/chromium_org/chrome/browser/resources/print_preview/previewarea/
H A Dmargin_control_container.css6 cursor: ns-resize;
/external/libcxx/test/utilities/time/time.duration/time.duration.literals/
H A Dliterals1.pass.cpp43 nanoseconds ns = 645ns; local
44 assert ( ns == nanoseconds(645));
45 auto ns2 = 645.ns;
46 assert ( ns == ns2 );
/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'}}
98 namespace ns { namespace in namespace:test6
113 ns::B::foo(); // expected-error {{'foo' is a private member of 'test6::ns::B'}}
121 namespace ns { namespace in namespace:test7a
125 using namespace ns;
131 class ns
138 namespace ns { namespace in namespace:test7b
[all...]

Completed in 7900 milliseconds

1234567891011>>