HomeSort by relevance Sort by last modified time
    Searched defs:ns (Results 1 - 25 of 149) sorted by null

1 2 3 4 5 6

  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udir/
p6.cpp 5 namespace ns { namespace
8 using namespace ns;
12 namespace ns { namespace
  /external/clang/test/PCH/
chain-late-anonymous-namespace.cpp 8 namespace ns {} namespace
14 namespace ns {
36 namespace ns {
  /external/clang/test/SemaCXX/
literal-operators.cpp 10 namespace ns { void operator "" _ns_good (const char *); } namespace
  /frameworks/base/tools/localize/
XMLNode.h 10 string ns; member in struct:XMLAttribute
15 const string& ns, const string& name, const string& def);
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
p10.cpp 23 namespace ns { namespace in namespace:test1
27 using ns::foo;
30 namespace ns { namespace in namespace:test1
p11.cpp 14 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::foo; //expected-note {{using declaration}
56 namespace ns { void foo(); } \/\/ expected-note 2 {{target of using declaration}} namespace in namespace:test4
76 namespace ns { void foo(int); } \/\/ expected-note {{target of using declaration}} namespace in namespace:test5
    [all...]
p8.cpp 8 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::foo
    [all...]
  /external/clang/test/SemaTemplate/
dependent-names-no-std.cpp 7 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}}
temp_arg_type.cpp 19 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/
util.h 41 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);
verify.h 39 StateId ns = 0; local
43 ++ns;
45 if (start == kNoStateId && ns > 0) {
48 } else if (start >= ns) {
90 } else if (arc.nextstate >= ns) {