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

1 2

  /external/chromium_org/extensions/browser/api/storage/
settings_namespace.h 10 namespace extensions {
12 namespace settings_namespace {
15 enum Namespace {
22 // Converts a namespace to its string representation.
23 // Namespace must not be INVALID.
24 std::string ToString(Namespace settings_namespace);
26 // Converts a string representation of a namespace to its namespace, or INVALID
28 Namespace FromString(const std::string& ns_string);
30 } // namespace settings_namespac
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLTreeBuilderSimulator.h 32 namespace blink {
41 enum Namespace {
48 typedef Vector<Namespace, 1> State;
  /external/chromium_org/third_party/libjingle/source/talk/xmllite/
qname.h 33 namespace buzz {
61 const std::string& Namespace() const { return namespace_; }
98 } // namespace buzz
  /external/chromium_org/third_party/webrtc/libjingle/xmllite/
qname.h 16 namespace buzz {
44 const std::string& Namespace() const { return namespace_; }
81 } // namespace buzz
  /external/lldb/test/
argparse_compat.py 47 return Namespace(d)
70 class Namespace(object):
  /external/chromium_org/chrome/common/extensions/docs/server2/
reference_resolver_test.py 13 from third_party.json_schema_compiler.model import Namespace
18 'namespace': 'baz',
69 'namespace': 'bar.bon',
120 'namespace': 'bar',
185 'namespace': 'foo',
268 return Future(value=Namespace(self._apis[name], 'fake/path.json'))
291 }, apps_resolver.GetLink('foo', namespace='baz'))
296 }, apps_resolver.GetLink('foo.foo_t1', namespace='baz'))
301 }, apps_resolver.GetLink('baz.baz_e1', namespace='baz'))
306 }, apps_resolver.GetLink('baz_e1', namespace='baz')
    [all...]
api_models.py 17 from third_party.json_schema_compiler.model import Namespace, UnixName
82 return Namespace(DeleteNodes(
  /external/chromium_org/tools/json_schema_compiler/
idl_schema.py 334 class Namespace(object):
336 Given an IDLNode representing an IDL namespace, converts into a Python
348 self.namespace = namespace_node
361 for node in self.namespace.GetChildren():
379 return {'namespace': self.namespace.GetName(),
417 if node.cls == 'Namespace':
420 print('%s must have a namespace-level comment. This will '
423 namespace = Namespace(node, description, nodoc, internal
    [all...]
model.py 25 - |namespaces| a map of a namespace name to its model.Namespace
35 """Add a namespace's json to the model and returns the namespace.
37 namespace = Namespace(json,
41 self.namespaces[namespace.name] = namespace
42 return namespace
83 class Namespace(object)
    [all...]
  /external/chromium_org/cc/test/
test_web_graphics_context_3d.cc 19 namespace cc {
31 TestWebGraphicsContext3D::Namespace*
34 TestWebGraphicsContext3D::Namespace::Namespace()
40 TestWebGraphicsContext3D::Namespace::~Namespace() {
86 namespace_ = new Namespace;
334 // The caller is expected to lock the namespace for texture access.
735 } // namespace cc
test_web_graphics_context_3d.h 25 namespace cc {
412 struct Namespace : public base::RefCountedThreadSafe<Namespace> {
413 Namespace();
425 friend class base::RefCountedThreadSafe<Namespace>;
426 ~Namespace();
427 DISALLOW_COPY_AND_ASSIGN(Namespace);
467 scoped_refptr<Namespace> namespace_;
468 static Namespace* shared_namespace_;
473 } // namespace c
    [all...]
  /external/clang/include/clang/AST/
NestedNameSpecifier.h 22 namespace clang {
39 /// specifiers, each of which can be a namespace, type, identifier
42 /// nested-namespace-specifier.
66 /// IdentifierInfo*, Namespace*, or Type*, depending on the kind of
76 /// \brief A namespace, stored as a NamespaceDecl*.
77 Namespace,
78 /// \brief A namespace alias, stored as a NamespaceAliasDecl*.
118 /// \brief Builds a nested name specifier that names a namespace.
123 /// \brief Builds a nested name specifier that names a namespace alias.
167 /// \brief Retrieve the namespace stored in this nested nam
    [all...]
DeclCXX.h 28 namespace clang {
69 } // end namespace clang
71 namespace llvm {
87 } // end namespace llvm
89 namespace clang {
    [all...]
  /external/clang/test/SemaCXX/
cxx11-user-defined-literals.cpp 60 namespace N {
63 using namespace N;
69 namespace Using {
70 namespace M {
79 namespace AmbiguousRawTemplate {
85 namespace Inner {
93 namespace N {
102 namespace M {
131 namespace Namespace {
    [all...]
expression-traits.cpp 289 namespace Namespace
297 // expr.prim/8 A nested-name-specifier that names a namespace
298 // (7.3), followed by the name of a member of that namespace (or
299 // the name of a member of a namespace made visible by a
301 // lookup for namespace members that appear in qualified-ids. The
305 ASSERT_LVALUE(Namespace::x);
306 ASSERT_LVALUE(Namespace::function);
  /external/llvm/utils/TableGen/
CodeGenTarget.cpp 26 using namespace llvm;
122 /// namespace qualifier if the record contains one.
125 std::string Namespace;
126 if (R->getValue("Namespace"))
127 Namespace = R->getValueAsString("Namespace");
128 if (Namespace.empty()) return R->getName();
129 return Namespace + "::" + R->getName();
158 // the namespace off the PHI instruction or something.
159 if ((*i)->Namespace != "TargetOpcode"
    [all...]
InstrInfoEmitter.cpp 29 using namespace llvm;
31 namespace {
63 const std::string &Namespace,
73 } // End anonymous namespace
203 const std::string &Namespace,
221 OperandMap[OpList].push_back(Namespace + "::" + Inst->TheDef->getName());
229 /// - An enum in the llvm::TargetNamespace::OpName namespace, with one entry
240 const std::string &Namespace = Target.getInstNamespace();
247 initOperandMapData(NumberedInstructions, Namespace, Operands, OperandMap);
251 OS << "namespace llvm {"
    [all...]
CodeGenInstruction.h 24 namespace llvm {
209 std::string Namespace; // The namespace the instruction is in.
RegisterInfoEmitter.cpp 30 using namespace llvm;
32 namespace {
66 } // End anonymous namespace
76 std::string Namespace = Registers[0]->TheDef->getValueAsString("Namespace");
83 OS << "namespace llvm {\n\n";
86 << "extern const MCRegisterClass " << Namespace
89 if (!Namespace.empty())
90 OS << "namespace " << Namespace << " {\n"
    [all...]
AsmWriterEmitter.cpp 31 using namespace llvm;
35 namespace {
64 } // end anonymous namespace
110 O << " case " << FirstInst.CGI->Namespace << "::"
113 O << " case " << SimilarInsts[i].CGI->Namespace << "::"
124 OpsToPrint.push_back(std::make_pair(FirstInst.CGI->Namespace + "::" +
130 OpsToPrint.push_back(std::make_pair(AWI.CGI->Namespace+"::"+
610 std::string Namespace = AltNameIndices[1]->getValueAsString("Namespace");
612 O << " case " << Namespace << "::" << AltNam
    [all...]
CodeGenRegisters.h 32 namespace llvm {
39 std::string Namespace;
55 const std::string &getNamespace() const { return Namespace; }
276 std::string Namespace;
453 CodeGenSubRegIndex *createSubRegIndex(StringRef Name, StringRef NameSpace);
  /external/clang/lib/Frontend/
PrintPreprocessedOutput.cpp 31 using namespace clang;
80 namespace {
136 void PragmaMessage(SourceLocation Loc, StringRef Namespace,
139 void PragmaDiagnosticPush(SourceLocation Loc, StringRef Namespace) override;
140 void PragmaDiagnosticPop(SourceLocation Loc, StringRef Namespace) override;
141 void PragmaDiagnostic(SourceLocation Loc, StringRef Namespace,
178 } // end anonymous namespace
388 StringRef Namespace,
394 if (!Namespace.empty())
395 OS << Namespace << ' ';
    [all...]
  /external/clang/lib/Lex/
Pragma.cpp 28 using namespace clang;
67 "A handler with this name is already registered in this namespace");
75 "Handler not registered in this namespace");
82 // Read the 'namespace' that the directive is in, e.g. STDC. Do not macro
116 // Invoke the first level of pragma handlers which reads the namespace id.
126 namespace {
727 /// If 'Namespace' is non-null, then it is a token required to exist on the
729 void Preprocessor::AddPragmaHandler(StringRef Namespace,
733 // If this is specified to be in a namespace, step down into it.
734 if (!Namespace.empty())
    [all...]
  /external/clang/utils/TableGen/
ClangAttrEmitter.cpp 28 using namespace llvm;
36 const std::string &Namespace, bool KnownToGCC) :
37 V(Variety), N(Name), NS(Namespace), K(KnownToGCC) {}
45 NS = Spelling.getValueAsString("Namespace");
52 const std::string &nameSpace() const { return NS; }
163 namespace {
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.ecf.identity_3.1.0.v20100529-0735.jar 

Completed in 830 milliseconds

1 2