HomeSort by relevance Sort by last modified time
    Searched refs:namespace (Results 251 - 275 of 1118) sorted by null

<<11121314151617181920>>

  /external/chromium_org/ppapi/generators/
idl_ast.py 48 # A specialized visitor which traverses the AST, building a namespace tree
49 # as it goes. The namespace tree is mapping from a name to a version list.
55 # When we arrive at a node we must assign it a namespace and if the
56 # node is named, then place it in the appropriate namespace.
70 # If this object is not a namespace aware object, use the parent's one
72 node.namespace = parent_namespace
75 node.namespace = IDLNamespace(parent_namespace)
77 # If this node is named, place it in its parent's namespace
94 # Pass this namespace to each child in case they inherit it
95 return node.namespace
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
ContextPullParser.java 105 String namespace = getAttributeNamespace(i); local
106 if (namespace != null && namespace.equals(TOOLS_URI)) {
145 public String getAttributeValue(String namespace, String localName) {
150 String value = super.getAttributeValue(namespace, localName);
157 SdkConstants.NS_RESOURCES.equals(namespace)) {
  /external/chromium_org/chrome/common/extensions/docs/server2/
object_store_creator_test.py 25 store.namespace)
32 store.namespace)
37 self.assertEqual('class=_FooClass', store.namespace)
test_object_store.py 9 '''An object store which records its namespace and behaves like a dict.
14 def __init__(self, namespace, start_empty=False, init=None):
15 self.namespace = namespace
persistent_object_store.py 15 def __init__(self, namespace):
16 self._namespace = namespace
  /external/chromium_org/tools/json_schema_compiler/
features_compiler.py 20 def _GenerateSchema(filename, root, destdir, namespace):
47 code = generator.Generate(feature_list, full_path, namespace).Render()
65 parser.add_option('-n', '--namespace', default='generated_features',
66 help='C++ namespace for generated files. e.g extensions::api.')
74 opts.namespace)
features_h_generator.py 12 def Generate(self, features, source_file, namespace):
13 return _Generator(features, source_file, namespace).Generate()
19 def __init__(self, features, source_file, namespace):
24 self._namespace = namespace
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
ITreeNodeStream.cs 33 namespace Antlr.Runtime.Tree {
ITreeVisitorAction.cs 33 namespace Antlr.Runtime.Tree
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
ITreeNodeStream.cs 33 namespace Antlr.Runtime.Tree
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/JavaExtensions/
ExceptionExtensions.cs 33 namespace Antlr.Runtime.JavaExtensions
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
StringBuilderExtensions.cs 39 namespace Antlr.Runtime.JavaExtensions
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/Tree/
ITreeFactory.cs 33 namespace Antlr.Runtime.Tree
ITreeNodeStream`1.cs 33 namespace Antlr.Runtime.Tree
  /external/chromium_org/third_party/webrtc/test/mac/
run_test.mm 50 namespace webrtc {
51 namespace test {
74 } // namespace test
75 } // namespace webrtc
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/mock/
MockXmlNode.java 44 // namespace stuff only set in the root node
45 /** map from namespace to prefix. */
51 * @param namespace The namespace of the node or null if none
56 public MockXmlNode(String namespace, String localName, short node_type,
59 mNamespace = namespace;
68 * @param namespace The namespace of the node or null if none
72 public MockXmlNode(String namespace, String localName, String value) {
74 mNamespace = namespace;
    [all...]
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
SoapSerializationEnvelope.java 90 * Map from Java class names to XML name and namespace pairs
191 if ((name.equals(info.name) && info.namespace == null)
193 (name.equals(info.name) && parser.getNamespace().equals(info.namespace))) {
236 String namespace = parser.getNamespace(); local
288 parser.require(XmlPullParser.END_TAG, namespace, name);
303 String namespace = null; local
313 namespace = parser.getNamespace(prefix);
333 v.setElementAt(read(parser, v, position, namespace, name, elementType), position);
345 public Object read(XmlPullParser parser, Object owner, int index, String namespace,
383 namespace = parser.getNamespace(prefix)
605 String namespace; local
    [all...]
  /bionic/libstdc++/include/
cmath 42 namespace std
71 } // namespace std
cstring 42 namespace std
66 } // namespace std
new 9 namespace std {
  /external/apache-xml/src/main/java/org/apache/xalan/extensions/
ExtensionNamespaceSupport.java 29 * namespace the stylesheet uses. At the beginning of a transformation, TransformerImpl generates
34 // Namespace, ExtensionHandler class name, constructor signature
41 public ExtensionNamespaceSupport(String namespace,
45 m_namespace = namespace;
  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
JAXPVariableStack.java 59 javax.xml.namespace.QName name =
60 new javax.xml.namespace.QName(
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/mac/
IntRectMac.mm 29 namespace WebCore {
  /external/chromium_org/third_party/WebKit/Source/platform/mac/
KillRingMac.mm 29 namespace WebCore {
83 } // namespace WebCore
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
split-file-by-class 133 $line =~ s/namespace DOM/namespace WebCore/;
134 $line =~ s/namespace khtml/namespace WebCore/;

Completed in 1243 milliseconds

<<11121314151617181920>>