HomeSort by relevance Sort by last modified time
    Searched full:namespaces (Results 26 - 50 of 2171) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/test/Parser/
namespaces.cpp 7 namespace a { typedef g::o o; } // expected-error{{namespaces can only be defined in global or namespace scope}}
  /external/clang/test/PCH/
cxx-namespaces.cpp 2 // RUN: %clang_cc1 -include %S/cxx-namespaces.h -fsyntax-only -verify %s
5 // RUN: %clang_cc1 -x c++-header -emit-pch -o %t %S/cxx-namespaces.h
10 // RUN: %clang_cc1 -fmodules -x c++-header -emit-pch -o %t %S/cxx-namespaces.h
namespaces.cpp 2 // RUN: %clang_cc1 -x c++ -include %S/Inputs/namespaces.h -fsyntax-only %s
5 // RUN: %clang_cc1 -x c++ -emit-pch -o %t %S/Inputs/namespaces.h
  /compatibility/cdd/3_software/
3_6_api-namespaces.md 1 ## 3.6\. API Namespaces
6 these package namespaces:
21 or System APIs to the APIs in the above namespaces. A ?publicly exposed
38 Google MUST NOT add APIs to other companies' namespaces.
43 If a device implementer proposes to improve one of the package namespaces above
  /external/tensorflow/tensorflow/compiler/aot/
codegen.h 38 // Namespaces specifies a list of C++ namespaces to add to the generated
40 std::vector<string> namespaces; member in struct:tensorflow::tfcompile::CodegenOpts
80 // ParseCppClass parses `cpp_class` into its `class_name` and `namespaces`
82 // mirrors the C++ syntax for referring to a class, where multiple namespaces
85 std::vector<string>* namespaces);
  /external/ImageMagick/m4/
ax_cxx_namespaces.m4 11 # If the compiler can prevent names clashes using namespaces, define
29 [AC_CACHE_CHECK(whether the compiler implements namespaces,
38 AC_DEFINE(HAVE_NAMESPACES,,[define if the compiler implements namespaces])
  /external/libxml2/doc/examples/
xpath1.c 5 * known namespaces in XPath context.
69 fprintf(stderr, "where <known-ns-list> is a list of known namespaces\n");
77 * @nsList: the optional list of known namespaces in
108 /* Register namespaces from list (if any) */
110 fprintf(stderr,"Error: failed to register namespaces list \"%s\"\n", nsList);
139 * @nsList: the list of known namespaces in
142 * Registers namespaces from @nsList in @xpathCtx.
158 fprintf(stderr, "Error: unable to strdup namespaces list\n");
172 fprintf(stderr,"Error: invalid namespaces list format\n");
  /external/libxml2/test/schemas/
any2_0.xml 2 <!-- Tests xsd:any with a set of namespaces, icluding
  /external/ltp/testcases/kernel/containers/
TEST_PLAN.txt 21 PID NAMESPACES (NEAR FUTURE)
22 NETWORK NAMESPACES (NEAR FUTURE)
23 POSIX IPC NAMESPACES (NEAR FUTURE)
24 TTY+CONSOLE+DEVPTS NAMESPACES (NEAR FUTURE)
  /external/python/cpython3/Lib/xml/
__init__.py 6 Namespaces.
  /external/swiftshader/third_party/subzero/crosstest/
mem_intrin.h 5 * under different namespaces.
  /libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
DocumentBuilderFactoryImpl.java 31 private static final String NAMESPACES =
32 "http://xml.org/sax/features/namespaces";
48 if (NAMESPACES.equals(name)) {
96 if (NAMESPACES.equals(name)) {
SAXParserFactoryImpl.java 33 private static final String NAMESPACES
34 = "http://xml.org/sax/features/namespaces";
57 return getFeature(NAMESPACES);
107 setFeature(NAMESPACES, value);
  /external/apache-xml/src/main/java/org/apache/xalan/extensions/
ExtensionNamespacesManager.java 45 * Vector of extension namespaces for which sufficient information is not yet available to
67 * to a vector of undefined extension namespaces, to be defined later.
115 * Get the vector of extension namespaces. Used to provide
117 * namespaces encountered during composition of a stylesheet.
125 * Attempt to register any unregistered extension namespaces.
146 * the remaining extension namespaces.
206 * Set up a Vector for predefined extension namespaces.
227 lang = "javaclass"; // for remaining predefined extension namespaces.
236 // Xalan extension namespaces (redirect, pipe and SQL).
253 //EXSLT namespaces (not including EXSLT function namespaces which ar
    [all...]
  /external/v8/tools/clang/rewrite_to_chrome_style/tests/
namespaces-expected.cc 10 // Stuff in nested namespaces should be renamed.
27 // Stuff in nested namespaces should be renamed.
namespaces-original.cc 10 // Stuff in nested namespaces should be renamed.
27 // Stuff in nested namespaces should be renamed.
  /external/markdown/markdown/
html4.py 128 def _serialize_html(write, elem, encoding, qnames, namespaces):
145 if items or namespaces:
156 if namespaces:
157 items = namespaces.items()
190 qnames, namespaces = _namespaces(
194 write, root, encoding, qnames, namespaces
201 # identify namespaces used in this tree
207 namespaces = {}
209 namespaces[default_namespace] = ""
219 prefix = namespaces.get(uri
    [all...]
  /external/python/cpython3/Lib/xml/etree/
ElementPath.py 14 # 2007-11-30 fl added namespaces support
73 def xpath_tokenizer(pattern, namespaces=None):
79 if not namespaces:
81 yield token[0], "{%s}%s" % (namespaces[prefix], uri)
256 def iterfind(elem, path, namespaces=None):
258 cache_key = (path, None if namespaces is None
259 else tuple(sorted(namespaces.items())))
269 next = iter(xpath_tokenizer(path, namespaces)).__next__
297 def find(elem, path, namespaces=None):
298 return next(iterfind(elem, path, namespaces), None
    [all...]
  /bionic/linker/
ld.config.format.md 22 Every section starts with `[section_name]` (which is used in mappings) and it defines namespaces
28 # The following line maps section to a dir. Binraies ran from this location will use namespaces
41 # This property can be used to declare additional namespaces.Note that there is always the default
44 additional.namespaces = ns1
65 # This declares linked namespaces - comma separated list.
  /external/clang/test/Modules/
namespaces.cpp 44 // Test namespaces merged without a common first declaration.
64 // Test merging of declarations within namespaces that themselves were
72 // Test merging when using anonymous namespaces, which does not
79 // expected-note@Inputs/namespaces-right.h:60 {{passing argument to parameter here}}
80 // expected-note@Inputs/namespaces-right.h:67 {{passing argument to parameter here}}
  /external/ltp/doc/
namespaces-helper-tools.txt 1 LTP namespaces helper tools
8 LTP provides helper tools for creating and working with namespaces. These are
26 namespaces even on older kernels which do not provide tooling (i.e. unshare(1)
27 or nsenter(1) from util-linux) required for working with namespaces. The only
33 The following code shows how test cases can use the namespaces helper tools:
  /libcore/luni/src/main/java/javax/xml/
XMLConstants.java 30 * @see <a href="http://www.w3.org/TR/xml-names11/">Namespaces in XML 1.1</a>
31 * @see <a href="http://www.w3.org/TR/REC-xml-names">Namespaces in XML</a>
32 * @see <a href="http://www.w3.org/XML/xml-names-19990114-errata">Namespaces in XML Errata</a>
50 * Namespaces in XML, 5.2 Namespace Defaulting</a>
60 * Namespaces in XML, 3. Qualified Names</a>
71 * Namespaces in XML, 3. Qualified Names</a>
82 * Namespaces in XML, 3. Qualified Names</a>
95 * Namespaces in XML, 3. Qualified Names</a>
97 * Namespaces in XML Errata</a>
111 * Namespaces in XML, 3. Qualified Names</a
    [all...]
  /system/core/libnativeloader/include/nativeloader/
dlext_namespaces.h 25 * Initializes anonymous namespaces. The shared_libs_sonames is the list of sonames
49 * which means that they are shared between namespaces - the caller namespace and the new one
54 * Shared namespaces can be isolated or regular. Note that they do not inherit the search path nor
95 * Creates a link between namespaces. Every link has list of sonames of
101 * The lookup order of the libraries in namespaces with links is following:
103 * 2. Look in linked namespaces
107 * step will not go deeper into linked namespaces for this library but
  /art/tools/
generate_operator_out.py 47 namespaces = []
69 _NAMESPACES[enum_name] = '::'.join(namespaces)
77 namespaces.append(m.group(1))
81 namespaces = namespaces[0:len(namespaces) - 1]
188 namespaces = _NAMESPACES[enum_name].split('::')
189 for namespace in namespaces:
202 for namespace in reversed(namespaces):
  /build/soong/android/
namespace.go 29 // This file implements namespaces
78 // find a module from namespaces based on a query string.
86 // All namespaces, without duplicates.
138 // It would probably confuse readers if namespaces were declared anywhere but
139 // the top of the file, so we forbid declaring namespaces after anything else.
174 // if this module is a namespace, then save it to our list of namespaces
297 // determine which namespaces the module can be found in
306 // determine which namespaces are visible to dependerNamespace
313 text += fmt.Sprintf("\nModule %q is defined in namespace %q which can read these %v namespaces: %q", depender, dependerNs.Path, len(importedNames), importedNames)
314 text += fmt.Sprintf("\nModule %q can be found in these namespaces: %q", depName, foundInNamespaces
    [all...]

Completed in 943 milliseconds

12 3 4 5 6 7 8 91011>>