HomeSort by relevance Sort by last modified time
    Searched refs:Namespace (Results 51 - 75 of 93) sorted by null

1 23 4

  /external/clang/include/clang/AST/
DeclBase.h 25 namespace clang {
51 namespace llvm {
65 namespace clang {
105 /// C++ can look into the "tag" namespace during ordinary lookup.
128 /// Namespaces, declared with 'namespace foo {}'.
140 /// declaration is always in this namespace but may also be in
145 /// declaration is always in this namespace but may also be in
152 /// but the actual using declarations go in this namespace.
223 /// namespace A {
224 /// void f(); // SemanticDC == LexicalDC == 'namespace A
    [all...]
RecursiveASTVisitor.h 67 namespace clang {
644 case NestedNameSpecifier::Namespace:
668 case NestedNameSpecifier::Namespace:
    [all...]
Decl.h 27 namespace clang {
74 /// The (most recently entered) anonymous namespace for this
154 /// declaration, like A::B::i, for i being member of namespace A::B.
156 /// namespace), it will return same result as getNameAsString().
390 /// NamespaceDecl - Represent a C++ namespace.
397 /// to either the namespace or the inline keyword.
402 /// \brief A pointer to either the anonymous namespace that lives just inside
403 /// this namespace or to the first namespace in the chain (the latter case
405 /// boolean value indicating whether this is an inline namespace
    [all...]
  /external/clang/lib/Sema/
DeclSpec.cpp 29 using namespace clang;
78 void CXXScopeSpec::Extend(ASTContext &Context, NamespaceDecl *Namespace,
81 Builder.Extend(Context, Namespace, NamespaceLoc, ColonColonLoc);
    [all...]
SemaCodeComplete.cpp 37 using namespace clang;
38 using namespace sema;
40 namespace {
464 if (NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(Parent)) {
465 if (!Namespace->getIdentifier())
468 Result = NestedNameSpecifier::Create(Context, Result, Namespace);
863 if (NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(Ctx))
864 R.Qualifier = NestedNameSpecifier::Create(SemaRef.Context, 0, Namespace);
925 if (NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(Ctx))
926 R.Qualifier = NestedNameSpecifier::Create(SemaRef.Context, 0, Namespace);
    [all...]
SemaType.cpp 35 using namespace clang;
110 namespace {
236 namespace llvm {
    [all...]
  /external/llvm/utils/TableGen/
FixedLenDecoderEmitter.cpp 36 using namespace llvm;
38 namespace {
77 } // End anonymous namespace
79 namespace {
102 StringRef Namespace) const;
121 } // End anonymous namespace
176 namespace {
178 } // End anonymous namespace
219 namespace {
277 } // End anonymous namespace
    [all...]
CodeGenInstruction.cpp 22 using namespace llvm;
292 Namespace = R->getValueAsString("Namespace");
DAGISelMatcherGen.cpp 18 using namespace llvm;
49 namespace {
141 } // end anon namespace.
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
debug.rb 41 Namespace for all debugging-related class and module definitions.
  /external/clang/tools/libclang/
RecursiveASTVisitor.h 67 namespace clang {
68 namespace cxindex {
580 case NestedNameSpecifier::Namespace:
604 case NestedNameSpecifier::Namespace:
    [all...]
CIndex.cpp 51 using namespace clang;
52 using namespace clang::cxcursor;
53 using namespace clang::cxstring;
54 using namespace clang::cxtu;
55 using namespace clang::cxindex;
900 namespace {
    [all...]
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
session.cc 43 namespace {
49 } // namespace
51 namespace cricket {
721 if (transproxy && transproxy->type() == error->Name().Namespace()) {
    [all...]
  /external/chromium/third_party/libjingle/source/talk/session/phone/
mediasessionclient.cc 44 using namespace talk_base;
46 namespace {
50 namespace cricket {
738 const std::string& content_type = content_elem->Name().Namespace();
    [all...]
  /frameworks/base/services/java/com/android/server/connectivity/
Vpn.java 742 daemon, LocalSocketAddress.Namespace.RESERVED);
    [all...]
  /external/clang/lib/AST/
Decl.cpp 34 using namespace clang;
202 "Not a name having namespace scope");
206 // A name having namespace scope (3.3.6) has internal linkage if it
282 // If we're declared in a namespace with a visibility attribute,
283 // use that namespace's visibility, but don't call it explicit.
307 // A name having namespace scope has external linkage if it is the
320 // - the entity is declared within an unnamed namespace, or
468 // - a namespace (7.3), unless it is declared within an unnamed
469 // namespace.
784 // Handle linkage for namespace-scope names
    [all...]
ItaniumMangle.cpp 39 using namespace clang;
41 namespace {
499 /// isStd - Return whether a given namespace is the 'std' namespace.
510 // namespace.
555 // is that of the containing namespace, or the translation unit.
798 case NestedNameSpecifier::Namespace:
    [all...]
  /external/clang/include/clang/Sema/
DeclSpec.h 38 namespace clang {
112 /// nested-name-specifier component of the form 'namespace::'.
117 /// \param Namespace The namespace.
119 /// \param NamespaceLoc The location of the namespace name.
122 void Extend(ASTContext &Context, NamespaceDecl *Namespace,
126 /// nested-name-specifier component of the form 'namespace-alias::'.
131 /// \param Alias The namespace alias.
133 /// \param AliasLoc The location of the namespace alias
    [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp 29 using namespace clang;
30 using namespace clang::serialization;
36 namespace clang {
    [all...]
ASTReader.cpp 55 using namespace clang;
56 using namespace clang::serialization;
57 using namespace clang::serialization::reader;
112 namespace {
433 using namespace clang::io;
441 using namespace clang::io;
462 using namespace clang::io;
493 using namespace clang::io;
508 using namespace clang::io;
675 using namespace clang::io
    [all...]
ASTWriter.cpp 51 using namespace clang;
52 using namespace clang::serialization;
71 namespace {
404 namespace {
    [all...]
  /external/clang/lib/CodeGen/
CGDecl.cpp 29 using namespace clang;
30 using namespace CodeGen;
36 case Decl::Namespace:
81 case Decl::UsingDirective: // using namespace X; [C++]
342 namespace {
    [all...]
CodeGenModule.cpp 48 using namespace clang;
49 using namespace CodeGen;
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
BaseRecognizer.as 26 public var state:RecognizerSharedState; // TODO - Place in private Namespace - cannot be private
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ecf.provider.filetransfer_3.1.0.v20100529-0735.jar 

Completed in 931 milliseconds

1 23 4