Searched refs:map (Results 1 - 25 of 5687) sorted by path

1234567891011>>

/external/aac/libPCMutils/src/
H A Dpcmutils_lib.cpp700 /* Get the appropriate channel map */
752 /* Always map side channels to the multipurpose group. */
2068 int inCh, outCh, map[PCM_DMX_MAX_CHANNELS]; local
2073 map[ch++] = inCh;
2080 if (inCh != map[inCh]) {
2083 mixFactors[outCh][inCh] = mixFactors[outCh][map[inCh]];
2093 map[ch++] = outCh;
2100 if (outCh != map[outCh]) {
2101 FDKmemcpy(&mixFactors[outCh], &mixFactors[map[outCh]], PCM_DMX_MAX_CHANNELS*sizeof(FIXP_DMX));
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jar ... .util.Map stateToAltSetWithSemanticPredicatesMap protected java.util.Map stateToIncompletelyCoveredAltsMap protected java.util.Set danglingStates protected java ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DDictionaryExtensions.cs45 public static bool containsKey(IDictionary map, object key) { argument
46 return map.Contains(key);
50 public static object get(IDictionary map, object key) { argument
51 return map[key];
55 public static TValue get<TKey, TValue>(IDictionary<TKey, TValue> map, TKey key) { argument
57 if (map.TryGetValue(key, out value))
67 public static TValue get<TKey, TValue>(Dictionary<TKey, TValue> map, TKey key) { argument
69 if (map.TryGetValue(key, out value))
78 public static TValue get<TKey, TValue>(SortedList<TKey, TValue> map, TKey key) { argument
80 if (map
91 put(IDictionary map, object key, object value) argument
96 put(IDictionary<TKey, TValue> map, TKey key, TValue value) argument
101 put(Dictionary<TKey, TValue> map, TKey key, TValue value) argument
106 keySet(IDictionary map) argument
111 keySet(IDictionary<TKey, TValue> map) argument
117 keySet(Dictionary<TKey, TValue> map) argument
122 keySet(SortedList<TKey, TValue> map) argument
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DDictionaryExtensions.cs44 public static bool containsKey( this IDictionary map, object key ) argument
46 return map.Contains( key );
50 public static object get( this IDictionary map, object key ) argument
52 return map[key];
55 public static TValue get<TKey, TValue>( this IDictionary<TKey, TValue> map, TKey key ) argument
58 if ( map.TryGetValue( key, out value ) )
68 public static TValue get<TKey, TValue>( this Dictionary<TKey, TValue> map, TKey key ) argument
71 if ( map.TryGetValue( key, out value ) )
80 public static TValue get<TKey, TValue>( this SortedList<TKey, TValue> map, TKey key ) argument
83 if ( map
93 put( this IDictionary map, object key, object value ) argument
99 put( this IDictionary<TKey, TValue> map, TKey key, TValue value ) argument
105 put( this Dictionary<TKey, TValue> map, TKey key, TValue value ) argument
[all...]
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tree.pas913 /// of tokens so you have to pass in a map or array of token names (from which
914 /// this class can build the map). I.e., Token DECL means nothing unless the
939 /// Using the map of token names to token types, return the type.
1263 /// <summary>A map of tree node to unique IDs.</summary>
4208 // map label in pattern to node in t1
H A DAntlr.Runtime.pas2744 /// Return a map from token index to operation.
2782 /// Later we can throw as we add to index -> op map.
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRHashMap.h60 - (ANTLRHashMap *)PushScope:( ANTLRHashMap **)map;
61 - (ANTLRHashMap *)PopScope:( ANTLRHashMap **)map;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRHashMap.h60 - (ANTLRHashMap *)PushScope:( ANTLRHashMap **)map;
61 - (ANTLRHashMap *)PopScope:( ANTLRHashMap **)map;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRHashMap.h60 - (ANTLRHashMap *)PushScope:( ANTLRHashMap **)map;
61 - (ANTLRHashMap *)PopScope:( ANTLRHashMap **)map;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRHashMap.h57 - (ANTLRHashMap *)PushScope:( ANTLRHashMap **)map;
58 - (ANTLRHashMap *)PopScope:( ANTLRHashMap **)map;
/external/antlr/antlr-3.4/runtime/Ruby/lib/
H A Dantlr3.rb93 extra utilities to generate DOT map specifications for graphical.
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
H A Dsocket.rb307 elements.map! do |elem|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Ddot.rb98 @node_to_number_map = Hash.new do |map, node|
99 map[ node ] = @node_number
H A Dprofile.rb350 $stderr.puts( error.backtrace.map { |call| " - #{ call }" }.join( "\n" ) )
H A Drecognizers.rb159 parameters = names.map do | name |
224 @antlr_version = [ $1, $2, $3, $4 ].map! { |str| str.to_i }
H A Dstreams.rb789 tokens = stream.tokens.map { | t | t.dup }
1084 @tokens[ start..stop ].map! { |t| t.text }.join( '' )
H A Dtask.rb121 @load_path = grammar_files.map { | f | File.dirname( f ) }
130 @grammars = grammar_files.map do | file |
153 @grammars.map { | gram | gram.target_files }.flatten
216 return parts.map! { | t | escape( t ) }.join( ' ' )
304 LANGUAGES.fetch( @language ).map do | ext |
392 @imported_grammars = @imports.map do | imp |
H A Dtemplate.rb173 init = params.names.map do | param |
303 names = map { | param | param.name.to_s }
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
H A Drewrite.rb262 @operations.inject( {} ) do |map, operation|
263 other_operaiton = map[ operation.index ] and
268 map[ operation.index ] = operation
269 map
333 first, last = args.shift( 2 ).map! { |arg| arg.to_i }
397 return( self[ start..finish ].map { |t| t.text }.join( '' ) )
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
H A Dgroup-file-lexer.rb16 load_path = $LOAD_PATH.map { |dir| ' - ' << dir }.join( $/ )
H A Dgroup-file-parser.rb16 load_path = $LOAD_PATH.map { |dir| ' - ' << dir }.join( $/ )
H A Dparameter.rb26 names = map { | param | param.name.to_s }
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
H A Dcore-extensions.rb60 self.scan( /^ *(?=\S)/ ).map { |space| space.length }.min || 0
188 pair = [ target, reference ].map! do |path|
214 entries.map! do |entry|
H A Dgrammar.rb159 imports.map! do |delegate|
257 parts.map! { |part| shell_escape( part ) }.join( ' ' ) << ' 2>&1'

Completed in 1141 milliseconds

1234567891011>>