HomeSort by relevance Sort by last modified time
    Searched full:namespace (Results 351 - 375 of 21984) sorted by null

<<11121314151617181920>>

  /external/clang/test/CodeGenCXX/
mangle-template.cpp 2 namespace test1 {
9 namespace test1 {
17 namespace test2 {
26 namespace test3 {
30 // FIXME: Fails because we tack on a namespace.
35 namespace test4 {
48 namespace test5 {
59 namespace test6 {
69 namespace test7 {
89 namespace test8
    [all...]
  /external/clang/test/PCH/
chain-friend-instantiation.cpp 8 namespace NS {
27 namespace NS {
38 namespace std {
  /external/clang/test/Parser/
cxx-using-declaration.cpp 3 namespace A {
32 namespace E {
38 namespace F {
  /external/clang/test/SemaCXX/
exception-spec-no-exceptions.cpp 8 namespace test0 {
14 namespace test1 {
27 namespace test2 {
missing-namespace-qualifier-typo-corrections.cpp 3 namespace fizbin { class Foobar {}; } // expected-note 2 {{'fizbin::Foobar' declared here}} \
9 namespace barstool { int toFoobar() { return 1; } } // expected-note 3 {{'barstool::toFoobar' declared here}}
15 namespace fizbin {
16 namespace baztool { bool toFoobar() { return true; } } // expected-note{{'fizbin::baztool' declared here}}
17 namespace nested { bool moreFoobar() { return true; } } // expected-note{{'fizbin::nested::moreFoobar' declared here}}
18 namespace nested { bool lessFoobar() { return true; } } // expected-note{{'fizbin::nested' declared here}} \
42 namespace N {
43 namespace inner {
52 namespace realstd {
53 inline namespace __1
    [all...]
scope-check.cpp 4 namespace test0 {
18 namespace test1 {
30 namespace test2 {
45 namespace test3 {
61 namespace test4 {
79 namespace test5 {
100 namespace test6 {
127 namespace test7 {
139 namespace test8 {
156 namespace test9
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-local-class.cpp 15 namespace PR5764 {
36 namespace local_class_with_virtual_functions {
54 namespace PR8801 {
  /external/webkit/Source/WebKit2/Shared/
WebURLRequest.cpp 15 using namespace WebCore;
17 namespace WebKit {
44 } // namespace WebKit
  /frameworks/base/opengl/libagl/
array.h 25 namespace android {
27 namespace gl {
34 }; // namespace android
primitives.h 26 namespace android {
28 namespace gl {
34 }; // namespace android
  /frameworks/compile/libbcc/lib/Disassembler/
Disassembler.h 26 namespace llvm {
31 namespace bcc {
42 } // namespace bcc
  /external/chromium/base/nix/
xdg_util_unittest.cc 16 namespace base {
17 namespace nix {
19 namespace {
33 } // namespace
75 } // namespace nix
76 } // namespace base
  /external/chromium/base/win/
scoped_bstr_unittest.cc 8 namespace base {
9 namespace win {
11 namespace {
69 } // namespace
76 } // namespace win
77 } // namespace base
  /external/chromium/chrome/browser/chromeos/login/
screen_lock_view.h 16 namespace views {
18 } // namespace views
20 namespace chromeos {
25 namespace test {
27 } // namespace test
92 } // namespace chromeos
  /external/chromium/chrome/browser/chromeos/
webui_menu_control.h 9 namespace gfx {
11 } // namespace gfx
13 namespace ui {
15 } // namespace ui
17 namespace chromeos {
64 } // namespace chromeos
  /external/chromium/chrome/browser/sync/notifier/
cache_invalidation_packet_handler.h 20 namespace invalidation {
23 } // namespace invalidation
25 namespace talk_base {
27 } // namespace
29 namespace sync_notifier {
72 } // namespace sync_notifier
  /external/chromium/chrome/browser/sync/sessions/
test_util.cc 7 namespace browser_sync {
8 namespace sessions {
9 namespace test_util {
55 } // namespace test_util
56 } // namespace sessions
57 } // namespace browser_sync
  /external/clang/include/clang/Basic/
TargetBuiltins.h 16 namespace clang {
19 namespace ARM {
29 namespace PPC {
39 namespace PTX {
50 namespace X86 {
59 } // end namespace clang.
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SummaryManager.h 21 namespace clang {
23 namespace ento {
25 namespace summMgr {
45 } // end namespace clang::summMgr
57 } // end GR namespace
59 } // end clang namespace
  /external/clang/test/CXX/temp/temp.decls/temp.friend/
p5.cpp 3 namespace test0 {
17 namespace test1 {
39 namespace test2 {
61 namespace test3 {
82 namespace test4 {
96 namespace test5 {
  /external/protobuf/src/google/protobuf/compiler/
zip_writer.h 37 namespace google {
38 namespace protobuf {
39 namespace compiler {
61 } // namespace google
62 } // namespace protobuf
63 } // namespace compiler
  /external/protobuf/src/google/protobuf/
generated_message_util.cc 39 namespace google {
40 namespace protobuf {
41 namespace internal {
51 } // namespace internal
52 } // namespace protobuf
53 } // namespace google
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream.cc 38 namespace google {
39 namespace protobuf {
40 namespace io {
46 } // namespace io
47 } // namespace protobuf
48 } // namespace google
  /libcore/luni/src/main/java/org/xml/sax/
Attributes.java 1 // Attributes.java - attribute list with Namespace support
25 * <li>by Namespace-qualified name; or</li>
31 * contain attributes used as Namespace declarations (xmlns*) unless
32 * the <code>http://xml.org/sax/features/namespace-prefixes</code>
37 * give namespace declaration attributes a namespace URI.
45 * defining a default element namespace.) For portability, handler
49 * <p>If the namespace-prefixes feature (see above) is
52 * <var>false</var>, access by Namespace-qualified names may not be
57 * contain Namespace support. In addition to Namespace support, i
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncExtElementAvailable.java 51 String namespace; local
60 namespace = Constants.S_XSLNAMESPACEURL;
66 namespace = xctxt.getNamespaceContext().getNamespaceForPrefix(prefix);
67 if (null == namespace)
72 if (namespace.equals(Constants.S_XSLNAMESPACEURL)
73 || namespace.equals(Constants.S_BUILTIN_EXTENSIONS_URL))
79 new QName(namespace, methName))
91 return extProvider.elementAvailable(namespace, methName)

Completed in 507 milliseconds

<<11121314151617181920>>