/external/eigen/doc/ |
UsingIntelMKL.dox | 33 namespace Eigen {
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
CharStreamConstants.cs | 33 namespace Antlr.Runtime {
|
CharStreamState.cs | 35 namespace Antlr.Runtime
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
CharStreamConstants.cs | 33 namespace Antlr.Runtime
|
IAstRuleReturnScope.cs | 33 namespace Antlr.Runtime
|
ITemplateRuleReturnScope.cs | 33 namespace Antlr.Runtime
|
TokenChannels.cs | 33 namespace Antlr.Runtime
|
CharStreamState.cs | 33 namespace Antlr.Runtime
|
IAstRuleReturnScope`1.cs | 33 namespace Antlr.Runtime
|
IRuleReturnScope.cs | 33 namespace Antlr.Runtime
|
ITemplateRuleReturnScope`1.cs | 33 namespace Antlr.Runtime
|
Tokens.cs | 33 namespace Antlr.Runtime
|
/external/smack/src/org/jivesoftware/smack/filter/ |
PacketExtensionFilter.java | 33 private String namespace; field in class:PacketExtensionFilter 38 * and namespace. 41 * @param namespace the XML namespace of the packet extension. 43 public PacketExtensionFilter(String elementName, String namespace) { 45 this.namespace = namespace; 50 * extension that matches the specified namespace. 52 * @param namespace the XML namespace of the packet extension [all...] |
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
ExtendedType.java | 30 private String namespace; field in class:ExtendedType 35 * Create an ExtendedType object from node type, namespace and local name. 36 * The hash code is calculated from the node type, namespace and local name. 39 * @param namespace Namespace of the node 42 public ExtendedType (int nodetype, String namespace, String localName) 45 this.namespace = namespace; 47 this.hash = nodetype + namespace.hashCode() + localName.hashCode(); 51 * Create an ExtendedType object from node type, namespace, local nam [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/ |
TestExpressionFeatures.g3.lexer.cs | 33 namespace Antlr3.Runtime.Test
|
TestExpressionFeatures.g3.parser.cs | 33 namespace Antlr3.Runtime.Test
|
/ndk/tests/build/cpp-extensions/jni/ |
foo2.cp | 0 namespace cpp { 9 } // namespace cpp
|
/frameworks/base/core/java/android/net/ |
LocalSocketAddress.java | 24 * abstract (non-filesystem) UNIX domain namespace. 29 * The namespace that this address exists in. See also 32 public enum Namespace { 33 /** A socket in the Linux abstract namespace */ 36 * A socket in the Android reserved namespace in /dev/socket. 47 Namespace (int id) { 60 private final Namespace namespace; field in class:LocalSocketAddress 66 * @param namespace namespace the name should be created in [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/ |
DebugEventListenerConstants.cs | 33 namespace Antlr.Runtime.Debug
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/ |
LexerExtensions.cs | 33 namespace Antlr.Runtime.JavaExtensions
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/ |
DebugEventListenerConstants.cs | 33 namespace Antlr.Runtime.Debug
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/ |
LexerExtensions.cs | 33 namespace Antlr.Runtime.JavaExtensions
|
/external/chromium_org/ppapi/generators/ |
idl_namespace.py | 9 This file defines the behavior of the AST namespace which allows for resolving 72 print "Adding to namespace: %s" % node 121 def DumpFailure(namespace, node, msg): 130 namespace.Dump() 135 def AddOkay(namespace, node): 136 okay = namespace.AddNode(node) 138 DumpFailure(namespace, node, 'Expected success') 141 def AddWarn(namespace, node, msg): 142 okay = namespace.AddNode(node) 144 DumpFailure(namespace, node, 'Expected warnings' [all...] |
/external/chromium_org/chrome/common/extensions/docs/server2/ |
reference_resolver_test.py | 45 }, resolver.GetLink('foo', namespace='baz')) 50 }, resolver.GetLink('foo.foo_t1', namespace='baz')) 55 }, resolver.GetLink('baz.baz_e1', namespace='baz')) 60 }, resolver.GetLink('baz_e1', namespace='baz')) 65 }, resolver.GetLink('foo.foo_f1', namespace='baz')) 70 }, resolver.GetLink('foo.foo_p3', namespace='baz')) 75 }, resolver.GetLink('bar.bon.bar_bon_t3', namespace='baz')) 80 }, resolver.GetLink('bar_bon_p3', namespace='bar.bon')) 85 }, resolver.GetLink('bar.bon.bar_bon_p3', namespace='bar.bon')) 90 }, resolver.GetLink('bar.bar_e2', namespace='bar') [all...] |
blob_reference_store.py | 17 def _Query(self, namespace, key): 18 return _Model.gql('WHERE key_ = :1', self._MakeKey(namespace, key)).get() 20 def _MakeKey(self, namespace, key): 21 return '.'.join((namespace, key)) 23 def Set(self, namespace, key, value): 24 _Model(key_=self._MakeKey(namespace, key), value=value).put() 26 def Get(self, namespace, key): 27 result = self._Query(namespace, key) 32 def Delete(self, namespace, key): 33 result = self._Query(namespace, key [all...] |