/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/config/ |
_dm.h | 36 appear to have problems with STLport namespaces. Summary of the issues: 41 With STLport namespaces, some identifiers such as Category_Map in 46 With STLport namespaces, the mangled names in the intermediate files no 48 and STLport namespaces with Digital Mars, the pre-defined exports in
|
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/config/ |
_dm.h | 36 appear to have problems with STLport namespaces. Summary of the issues: 41 With STLport namespaces, some identifiers such as Category_Map in 46 With STLport namespaces, the mangled names in the intermediate files no 48 and STLport namespaces with Digital Mars, the pre-defined exports in
|
/prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/config/ |
_dm.h | 36 appear to have problems with STLport namespaces. Summary of the issues: 41 With STLport namespaces, some identifiers such as Category_Map in 46 With STLport namespaces, the mangled names in the intermediate files no 48 and STLport namespaces with Digital Mars, the pre-defined exports in
|
/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/clang/test/PCH/ |
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
|
/external/chromium_org/third_party/markdown/ |
serializers.py | 169 def _serialize_html(write, elem, qnames, namespaces, format): 186 if items or namespaces: 200 if namespaces: 201 items = namespaces.items() 231 qnames, namespaces = _namespaces(root, default_namespace) 232 _serialize_html(write, root, qnames, namespaces, format) 243 # identify namespaces used in this tree 249 namespaces = {} 251 namespaces[default_namespace] = "" 258 prefix = namespaces.get(uri [all...] |
/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/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}}
|
/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...] |
/external/chromium_org/tools/json_schema_compiler/ |
model_test.py | 18 self.permissions = self.model.namespaces.get('permissions') 22 self.windows = self.model.namespaces.get('windows') 26 self.tabs = self.model.namespaces.get('tabs') 30 self.idl_namespace_chromeos = self.model.namespaces.get( 35 self.idl_namespace_all_platforms = self.model.namespaces.get( 41 self.idl_namespace_non_specific_platforms = self.model.namespaces.get( 45 self.assertEquals(6, len(self.model.namespaces))
|
/external/chromium_org/content/browser/dom_storage/ |
dom_storage_context_impl.h | 44 // Namespaces and Areas related to the owning profile. 51 // Contexts (per-profile) own Namespaces which own Areas which share Maps. 52 // Hosts(per-renderer) refer to Namespaces and Areas open in its renderer. 53 // Sessions (per-tab) cause the creation and deletion of session Namespaces. 55 // Session Namespaces are cloned by initially making a shallow copy of 132 // policies. Contained areas and namespaces will stop functioning after 178 // Deletes all namespaces which don't have an associated DOMStorageNamespace 211 // Collection of namespaces keyed by id. 237 // For cleaning up unused namespaces gradually.
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
NSInfo.java | 36 * @param hasProcessedNS Flag indicating whether namespaces 56 * @param hasProcessedNS Flag indicating whether namespaces 96 /** Flag indicating whether namespaces have been processed for this node */
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/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) 247 def iterfind(elem, path, namespaces=None): 258 next = iter(xpath_tokenizer(path, namespaces)).next 283 def find(elem, path, namespaces=None): 285 return iterfind(elem, path, namespaces).next() 292 def findall(elem, path, namespaces=None): 293 return list(iterfind(elem, path, namespaces)) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/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) 247 def iterfind(elem, path, namespaces=None): 258 next = iter(xpath_tokenizer(path, namespaces)).next 283 def find(elem, path, namespaces=None): 285 return iterfind(elem, path, namespaces).next() 292 def findall(elem, path, namespaces=None): 293 return list(iterfind(elem, path, namespaces)) [all...] |
/external/chromium_org/chrome/browser/media_galleries/ |
media_file_system_context.h | 8 // Manages isolated filesystem namespaces for media file systems.
|
/external/chromium_org/extensions/browser/api/storage/ |
settings_namespace.h | 14 // The namespaces of the storage areas.
|
/external/chromium_org/ppapi/cpp/documentation/ |
removefilesCPP.sh | 17 rm namespaces.html
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/Images/src/ |
breakpoint.svg | 1 <?xml version="1.0" encoding="utf-8"?><svg height="11" version="1.1" width="26" xmlns="http://www.w3.org/2000/svg" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
breakpointConditional.svg | 1 <?xml version="1.0" encoding="utf-8"?><svg height="11" version="1.1" width="26" xmlns="http://www.w3.org/2000/svg" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/namespace.unnamed/ |
p1.cpp | 26 // Test that all anonymous namespaces in a translation unit are
|
/external/clang/test/SemaCXX/ |
libstdcxx_atomic_ns_hack.cpp | 4 // non-inline namespace, then selects one of those namespaces and reopens it
|
/external/tagsoup/ |
TODO | 3 Squelch namespaces better in --nons mode
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/ |
__init__.py | 6 Namespaces.
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/ |
__init__.py | 6 Namespaces.
|
/system/media/camera/docs/ |
metadata_model_test.py | 35 combined_ins = [i for i in combined_children_namespace.namespaces] 80 self.assertIn(ins1, combined_kind.namespaces) 81 self.assertIn(ins2, combined_kind.namespaces) 115 combined_ins = [i for i in combined_children_kind.namespaces]
|