Searched refs:Get (Results 1 - 25 of 4314) sorted by path

1234567891011>>

/external/aac/libSYS/include/
H A DgenericStds.h151 #define H_ALLOC_MEM(name,type) type * Get ## name(int n=0); void Free ## name(type** p); \
155 #define H_ALLOC_MEM_OVERLAY(name,type) type * Get ## name(int n=0); void Free ## name(type** p); \
161 type * Get ## name(int n) { FDK_ASSERT((n) == 0); return ((type*)FDKcalloc(num, sizeof(type))); } \
167 static type * Get ## name(int n) { FDK_ASSERT((n) == 0); return ((type*)FDKcalloc(num, sizeof(type))); } \
173 type * Get ## name (int n) { FDK_ASSERT((n) < (n2)); return ((type*)FDKcalloc(n1, sizeof(type))); } \
179 type * Get ## name(int n) { FDK_ASSERT((n) == 0); return ((type*)FDKaalloc((num)*sizeof(type), ALIGNMENT_DEFAULT)); } \
185 type * Get ## name (int n) { FDK_ASSERT((n) < (n2)); return ((type*)FDKaalloc((n1)*sizeof(type), ALIGNMENT_DEFAULT)); } \
191 type * Get ## name(int n) { FDK_ASSERT((n) == 0); return ((type*)FDKcalloc_L(num, sizeof(type), s)); } \
197 type * Get ## name (int n) { FDK_ASSERT((n) < (n2)); return (type*)FDKcalloc_L(n1, sizeof(type), s); } \
203 type * Get ## nam
[all...]
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DBaseRecognizer.as278 /** Get number of recognition errors (lexer, parser, tree parser). Each
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DDebugTokenStream.cs88 dbg.ConsumeHiddenToken(input.Get(i));
97 dbg.ConsumeHiddenToken(input.Get(i));
118 public virtual IToken Get(int i) { method in class:Antlr.Runtime.Debug.DebugTokenStream
119 return input.Get(i);
H A DProfiler.cs163 " @ " + input.Get(input.Index) +
167 DecisionDescriptor descriptor = decisions.Get(g, decisionNumber);
468 // IToken t = input.Get(i);
608 DecisionDescriptor s = decisions.Get(fileName, d);
639 /** Get num hidden tokens between i..j inclusive */
644 IToken t = input.Get(ti);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
H A DDoubleKeyMap.cs23 public virtual TValue Get(TKey1 k1, TKey2 k2) { method in class:Antlr.Runtime.Debug.Misc.DoubleKeyMap
34 public virtual IDictionary<TKey2, TValue> Get(TKey1 k1) { method in class:Antlr.Runtime.Debug.Misc.DoubleKeyMap
40 /** Get all values associated with primary key */
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DBufferedTokenStream.cs205 public virtual IToken Get(int i) { method in class:Antlr.Runtime.BufferedTokenStream
214 /// Get all tokens from start..(start+count-1) inclusively
216 public virtual List<IToken> Get(int start, int count) method in class:Antlr.Runtime.BufferedTokenStream
H A DITokenStream.cs36 /** <summary>Get Token at current input pointer + i ahead where i=1 is next Token.
53 * Get a token at an absolute index i; 0..n-1. This is really only
61 IToken Get(int i); method in interface:Antlr.Runtime.ITokenStream
H A DLegacyCommonTokenStream.cs281 * Get the ith token from the current position 1..n where k=1 is the
350 public virtual IToken Get(int i) { method in class:Antlr.Runtime.LegacyCommonTokenStream
355 /** Get all tokens from start..stop inclusively */
356 public virtual List<IToken> Get(int start, int count) method in class:Antlr.Runtime.LegacyCommonTokenStream
H A DTokenRewriteStream.cs370 if (Get(i).Type != CharStreamConstants.EndOfFile)
371 buf.Append(Get(i).Text);
590 /** <summary>Get all operations before an index of a particular kind</summary> */
610 buf.Append(Get(i));
H A DUnbufferedTokenStream.cs88 public IToken Get(int i) { method in class:Antlr.Runtime.UnbufferedTokenStream
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DDebugTokenStream.cs102 dbg.ConsumeHiddenToken( input.Get( i ) );
113 dbg.ConsumeHiddenToken( input.Get( i ) );
138 public virtual IToken Get( int i ) method in class:Antlr.Runtime.Debug.DebugTokenStream
140 return input.Get( i );
H A DProfiler.cs175 " @ " + input.Get(input.Index) +
179 DecisionDescriptor descriptor = decisions.Get(g, decisionNumber);
515 // IToken t = input.Get(i);
662 DecisionDescriptor s = decisions.Get(fileName, d);
695 /** Get num hidden tokens between i..j inclusive */
702 IToken t = input.Get(ti);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/Misc/
H A DDoubleKeyMap`3.cs27 public virtual TValue Get(TKey1 k1, TKey2 k2) method in class:Antlr.Runtime.Debug.Misc.DoubleKeyMap
39 public virtual IDictionary<TKey2, TValue> Get(TKey1 k1) method in class:Antlr.Runtime.Debug.Misc.DoubleKeyMap
46 /** Get all values associated with primary key */
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/SlimParsing/
H A DITokenStream`1.cs39 T Get(int i); method in interface:Antlr.Runtime.T
H A DSlimTokenStream.cs240 * Get the ith token from the current position 1..n where k=1 is the
318 public SlimToken Get( int i ) method in class:Antlr.Runtime.FastTokenStream
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DBufferedTokenStream.cs236 public virtual IToken Get(int i) method in class:Antlr.Runtime.BufferedTokenStream
247 /// Get all tokens from start..(start+count-1) inclusively
249 public virtual List<IToken> Get(int start, int count) method in class:Antlr.Runtime.BufferedTokenStream
H A DITokenStream.cs38 /** <summary>Get Token at current input pointer + i ahead where i=1 is next Token.
56 * Get a token at an absolute index i; 0..n-1. This is really only
64 IToken Get( int i ); method in interface:Antlr.Runtime.ITokenStream
H A DLegacyCommonTokenStream.cs317 * Get the ith token from the current position 1..n where k=1 is the
399 public virtual IToken Get( int i ) method in class:Antlr.Runtime.LegacyCommonTokenStream
405 /** Get all tokens from start..stop inclusively */
406 public virtual List<IToken> Get(int start, int count) method in class:Antlr.Runtime.LegacyCommonTokenStream
H A DTokenRewriteStream.cs429 if (Get(i).Type != CharStreamConstants.EndOfFile)
430 buf.Append(Get(i).Text);
699 /** <summary>Get all operations before an index of a particular kind</summary> */
724 buf.Append( Get( i ) );
H A DUnbufferedTokenStream.cs152 public IToken Get(int i) method in class:Antlr.Runtime.UnbufferedTokenStream
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tree.pas276 /// Get the token start index for this subtree; return -1 if no such index
281 /// Get the token stop index for this subtree; return -1 if no such index
287 /// <summary>Get a child 0..n-1 node </summary>
342 /// <summary>Get a tree node at an absolute index i; 0..n-1.</summary>
347 function Get(const I: Integer): IANTLRInterface; function
350 /// Get tree node at current input pointer + i ahead where i=1 is next node.
400 /// Get the ITokenStream from which this stream's Tree was created
575 /// Get the children internal list of children. Manipulating the list
726 function Get(const I: Integer): IANTLRInterface;
868 /// Get nex
[all...]
H A DAntlr.Runtime.pas73 /// Get int at current input pointer + I ahead (where I=1 is next int)
198 /// Get the ith character of lookahead. This is usually the same as
323 /// Get Token at current input pointer + I ahead (where I=1 is next
333 /// Get a token at an absolute index I; 0..N-1. This is really only
340 function Get(const I: Integer): IToken;
906 /// Get number of recognition errors (lexer, parser, tree parser). Each
2360 function Get(const I: Integer): IToken; virtual;
2795 /// Get all operations before an index of a particular kind
4820 function TCommonTokenStream.Get(const I: Integer): IToken;
6162 Buf.Append(Get(
[all...]
/external/bison/build-aux/
H A Dtexinfo.tex5138 % Get the available space for the double columns -- the normal
7002 % Get the values of \leftskip and \rightskip as they were outside the @def...
7900 % Get args without leading/trailing spaces.
/external/bison/
H A Dmaint.mk656 # Get the list of symbol names with this:
/external/blktrace/doc/
H A Dblktrace.tex637 G & Get request \\ \hline

Completed in 3441 milliseconds

1234567891011>>