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

1234567891011>>

/external/clang/test/CodeGenCXX/
H A Ddebug-info-global.cpp6 namespace ns { namespace
10 return ns::cnst + ns::cnst;
20 // CHECK: [[NS]] = !DINamespace(name: "ns"
H A Dsanitize-dtor-fn-attribute.cpp21 No_San *ns = new No_San(); local
22 ns->~No_San();
/external/clang/test/Modules/
H A Dmerge-template-friend.cpp20 ::ns::C<int> c;
/external/libcxx/test/std/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/jemalloc/test/src/
H A Dmq.c4 * Sleep for approximately ns nanoseconds. No lower *nor* upper bound on sleep
8 mq_nanosleep(unsigned ns) argument
11 assert(ns <= 1000*1000*1000);
14 Sleep(ns / 1000);
19 if (ns < 1000*1000*1000) {
21 timeout.tv_nsec = ns;
/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...]
/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/llvm/tools/llvm-cxxdump/
H A Dllvm-cxxdump.h20 #define LLVM_CXXDUMP_ENUM_ENT(ns, enum) \
21 { #enum, ns::enum }
/external/clang/test/Modules/Inputs/merge-template-friend/
H A Ddef.h1 namespace ns { namespace
H A Dfriend.h1 namespace ns { template <typename T> class C; }; namespace
3 template <typename T> friend class ::ns::C;
/external/clang/test/SemaCUDA/Inputs/
H A Doverload.h6 namespace ns { namespace
/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/clang/test/SemaCXX/
H A Dms-friend-lookup.cpp14 namespace ns { namespace in namespace:enclosing_friend_decl
23 static void f() { ns::A x; }
29 namespace ns { namespace in namespace:enclosing_friend_qualified
37 static void f() { ns::A x; }
43 namespace ns { namespace in namespace:enclosing_friend_no_tag
51 static void f() { ns::A x; }
57 namespace ns { namespace in namespace:enclosing_friend_func
59 // Amusingly, in MSVC, this declares ns::f(), and doesn't find the outer f().
65 void f() { ns::A x; } // expected-error {{calling a protected constructor of class 'enclosing_friend_func::ns
[all...]
/external/dng_sdk/source/
H A Ddng_xmp_sdk.h59 typedef bool (IteratePathsCallback) (const char *ns,
101 bool Exists (const char *ns,
104 void AppendArrayItem (const char *ns,
110 int32 CountArrayItems (const char *ns,
113 bool HasNameSpace (const char *ns) const;
115 void Remove (const char *ns,
118 void RemoveProperties (const char *ns);
120 bool IsEmptyString (const char *ns,
123 bool IsEmptyArray (const char *ns,
126 void ComposeArrayItemPath (const char *ns,
[all...]
H A Ddng_xmp.h91 bool Exists (const char *ns,
94 bool HasNameSpace (const char *ns) const;
98 const char *ns = 0,
101 void Remove (const char *ns,
104 void RemoveProperties (const char *ns);
106 void RemoveEmptyStringOrArray (const char *ns,
109 void RemoveEmptyStringsAndArrays (const char *ns = 0);
111 void Set (const char *ns,
115 bool GetString (const char *ns,
119 void SetString (const char *ns,
[all...]
/external/clang/test/Analysis/
H A Danalyze_display_progress.cpp15 namespace ns { namespace
26 // CHECK: analyze_display_progress.cpp ns::SomeStruct::f
/external/clang/test/PCH/
H A Dchain-late-anonymous-namespace.cpp10 namespace ns {} namespace
16 namespace ns {
38 namespace ns {
/external/libcxx/test/std/utilities/time/time.duration/time.duration.arithmetic/
H A Dop_divide=.pass.cpp33 std::chrono::nanoseconds ns(15);
34 ns /= 5;
35 assert(ns.count() == 3);
H A Dop_times=.pass.cpp33 std::chrono::nanoseconds ns(3);
34 ns *= 5;
35 assert(ns.count() == 15);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DPack.java24 public static void bigEndianToInt(byte[] bs, int off, int[] ns) argument
26 for (int i = 0; i < ns.length; ++i)
28 ns[i] = bigEndianToInt(bs, off);
48 public static byte[] intToBigEndian(int[] ns) argument
50 byte[] bs = new byte[4 * ns.length];
51 intToBigEndian(ns, bs, 0);
55 public static void intToBigEndian(int[] ns, byte[] bs, int off) argument
57 for (int i = 0; i < ns.length; ++i)
59 intToBigEndian(ns[i], bs, off);
71 public static void bigEndianToLong(byte[] bs, int off, long[] ns) argument
93 longToBigEndian(long[] ns) argument
100 longToBigEndian(long[] ns, byte[] bs, int off) argument
125 littleEndianToInt(byte[] bs, int off, int[] ns) argument
134 littleEndianToInt(byte[] bs, int bOff, int[] ns, int nOff, int count) argument
182 intToLittleEndian(int[] ns) argument
189 intToLittleEndian(int[] ns, byte[] bs, int off) argument
205 littleEndianToLong(byte[] bs, int off, long[] ns) argument
227 longToLittleEndian(long[] ns) argument
234 longToLittleEndian(long[] ns, byte[] bs, int off) argument
[all...]
/external/curl/lib/
H A Descape.c82 char *ns; local
90 ns = malloc(alloc);
91 if(!ns)
100 ns[strindex++]=in;
106 testing_ptr = realloc(ns, alloc);
108 free(ns);
112 ns = testing_ptr;
119 free(ns);
123 snprintf(&ns[strindex], 4, "%%%02X", in);
129 ns[strinde
149 char *ns = malloc(alloc); local
[all...]

Completed in 518 milliseconds

1234567891011>>