/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
|
ITokenSource.cs | 36 namespace Antlr.Runtime
|
ITokenStreamInformation.cs | 29 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/libunwind/tests/ |
run-check-namespace | 2 chmod +x ./check-namespace.sh 3 ./check-namespace.sh $*
|
/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/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/ |
SoapPrimitive.java | 33 * namespace, name and string value (this is how the stockquote example works). 37 String namespace; field in class:SoapPrimitive 41 public SoapPrimitive(String namespace, String name, String value) { 42 this.namespace = namespace; 53 && (namespace == null ? p.namespace == null : namespace.equals(p.namespace)) 59 return name.hashCode() ^ (namespace == null ? 0 : namespace.hashCode()) [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
|
/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 71 print "Adding to namespace: %s" % node 119 def DumpFailure(namespace, node, msg): 128 namespace.Dump() 133 def AddOkay(namespace, node): 134 okay = namespace.AddNode(node) 136 DumpFailure(namespace, node, 'Expected success') 139 def AddWarn(namespace, node, msg): 140 okay = namespace.AddNode(node) 142 DumpFailure(namespace, node, 'Expected warnings' [all...] |
/external/chromium_org/chrome/common/extensions/docs/server2/ |
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...] |