Searched defs:Map (Results 1 - 25 of 172) sorted by last modified time

1234567

/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dmap.h63 // The Map functions and classes below will use the FinalAction()
81 void Map(MutableFst<A> *fst, C* mapper) { function in namespace:fst
149 void Map(MutableFst<A> *fst, C mapper) { function in namespace:fst
150 Map(fst, &mapper);
158 void Map(const Fst<A> &ifst, MutableFst<B> *ofst, C* mapper) { function in namespace:fst
231 void Map(const Fst<A> &ifst, MutableFst<B> *ofst, C mapper) { function in namespace:fst
232 Map(ifst, ofst, &mapper);
792 typename Map::iterator miter = map_.find(w1);
838 typedef std::unordered_map<SW, Label, StringKey> Map; typedef in struct:fst::GallicToNewSymbolsMapper
841 Map map
[all...]
/external/smack/src/com/kenai/jbosh/
H A DComposableBody.java21 import java.util.Map;
65 * Map of all attributes to their values.
67 private final Map<BodyQName, String> attrs;
88 private Map<BodyQName, String> map;
196 final Map<BodyQName, String> attrMap,
271 public Map<BodyQName, String> getAttributes() {
320 for (Map.Entry<BodyQName, String> entry : attrs.entrySet()) {
195 ComposableBody( final Map<BodyQName, String> attrMap, final String payloadXML) argument
H A DStaticBody.java23 import java.util.Map;
53 * Map of all attributes to their values.
55 private final Map<BodyQName, String> attrs;
69 final Map<BodyQName, String> attrMap,
122 public Map<BodyQName, String> getAttributes() {
68 StaticBody( final Map<BodyQName, String> attrMap, final String rawXML) argument
/external/smack/src/org/jivesoftware/smack/util/collections/
H A DDefaultMapEntry.java20 import java.util.Map;
23 * A restricted implementation of {@link java.util.Map.Entry} that prevents
61 public DefaultMapEntry(final Map.Entry<K, V> entry) { argument
/external/smack/src/org/jivesoftware/smackx/packet/
H A DVCard.java34 import java.util.Map;
35 import java.util.Map.Entry;
93 private Map<String, String> homePhones = new HashMap<String, String>();
94 private Map<String, String> workPhones = new HashMap<String, String>();
102 private Map<String, String> homeAddr = new HashMap<String, String>();
103 private Map<String, String> workAddr = new HashMap<String, String>();
121 private Map<String, String> otherSimpleFields = new HashMap<String, String>();
124 private Map<String, String> otherUnescapableFields = new HashMap<String, String>();
771 private void appendPhones(Map<String, String> phones, final String code) {
772 Iterator<Map
785 appendAddress(final Map<String, String> addr, final String code) argument
[all...]
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/impl/client/
H A DDefaultRequestDirector.java68 import java.util.Map;
779 Map<String, Header> challenges = this.proxyAuthHandler.getChallenges(
1004 Map<String, Header> challenges = this.targetAuthHandler.getChallenges(
1034 Map<String, Header> challenges = this.proxyAuthHandler.getChallenges(
1092 final Map<String, Header> challenges,
1091 processChallenges( final Map<String, Header> challenges, final AuthState authState, final AuthenticationHandler authHandler, final HttpResponse response, final HttpContext context) argument
/external/protobuf/src/google/protobuf/
H A Ddynamic_message.cc432 typedef hash_map<const Descriptor*, const DynamicMessage::TypeInfo*> Map; typedef in struct:google::protobuf::DynamicMessageFactory::PrototypeMap
433 Map map_;
447 for (PrototypeMap::Map::iterator iter = prototypes_->map_.begin();
/external/protobuf/gtest/samples/
H A Dsample3-inl.h154 Queue * Map(F function) const { function in class:Queue
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DUnknownFieldSet.java42 import java.util.Map;
89 private UnknownFieldSet(final Map<Integer, Field> fields) { argument
92 private Map<Integer, Field> fields;
109 public Map<Integer, Field> asMap() {
129 for (final Map.Entry<Integer, Field> entry : fields.entrySet()) {
199 for (final Map.Entry<Integer, Field> entry : fields.entrySet()) {
211 for (final Map.Entry<Integer, Field> entry : fields.entrySet()) {
223 for (final Map.Entry<Integer, Field> entry : fields.entrySet()) {
284 private Map<Integer, Field> fields;
378 for (final Map
[all...]
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DElementAndAttributePolicies.java31 import java.util.Map;
52 Map<? extends String, ? extends AttributePolicy>
67 for (Map.Entry<String, AttributePolicy> e : this.attrPolicies.entrySet()) {
76 for (Map.Entry<String, AttributePolicy> e : p.attrPolicies.entrySet()) {
104 Map<String, AttributePolicy> globalAttrPolicies) {
106 Map<String, AttributePolicy> anded = null;
107 for (Map.Entry<String, AttributePolicy> e : this.attrPolicies.entrySet()) {
123 for (Map.Entry<String, AttributePolicy> e : globalAttrPolicies.entrySet()) {
103 andGlobals( Map<String, AttributePolicy> globalAttrPolicies) argument
H A DTrie.java34 import java.util.Map;
53 public Trie(Map<String, Integer> elements) {
57 private Trie(List<Map.Entry<String, Integer>> elements, int depth) {
70 List<Map.Entry<String, Integer>> elements, int depth,
148 private static <T> List<Map.Entry<String, T>> sortedUniqEntries( argument
149 Map<String, T> m) {
150 return new ArrayList<Map.Entry<String, T>>(
/external/openfst/src/include/fst/
H A Darc-map.h901 typename Map::iterator miter = map_.find(w1);
955 typedef unordered_map<SW, Label, StringKey> Map; typedef in struct:fst::GallicToNewSymbolsMapper
958 Map map_;
H A Dmap.h19 // Compatability file for old-style Map() functions and MapFst class
32 void Map(MutableFst<A> *fst, C* mapper) { function in namespace:fst
37 void Map(MutableFst<A> *fst, C mapper) { function in namespace:fst
42 void Map(const Fst<A> &ifst, MutableFst<B> *ofst, C* mapper) { function in namespace:fst
47 void Map(const Fst<A> &ifst, MutableFst<B> *ofst, C mapper) { function in namespace:fst
H A Dsparse-power-weight.h38 W Map(const K& k, const W& v1, const W& v2) const { function in struct:fst::SparseTupleWeightPlusMapper
45 W Map(const K& k, const W& v1, const W& v2) const { function in struct:fst::SparseTupleWeightTimesMapper
55 W Map(const K& k, const W& v1, const W& v2) const { function in struct:fst::SparseTupleWeightDivideMapper
64 W Map(const K& k, const W& v1, const W& v2) const { function in struct:fst::SparseTupleWeightApproxMapper
/external/openfst/src/include/fst/script/
H A Dmap.h56 void Map(MapArgs *args) { function in namespace:fst::script
114 %newobject Map; member in namespace:fst::script
116 FstClass *Map(const FstClass& f, MapType map_type,
/external/openfst/src/lib/
H A Dmapped-file.cc61 MappedFile* MappedFile::Map(istream* s, const FstReadOptions &opts, function in class:fst::MappedFile
/external/openfst/src/script/
H A Dmap.cc24 FstClass *Map(const FstClass& ifst, MapType map_type, function in namespace:fst::script
29 Apply<Operation<MapArgs> >("Map", ifst.ArcType(), &args_with_retval);
34 REGISTER_FST_OPERATION(Map, StdArc, MapArgs);
35 REGISTER_FST_OPERATION(Map, LogArc, MapArgs);
36 REGISTER_FST_OPERATION(Map, Log64Arc, MapArgs);
/external/oauth/core/src/main/java/net/oauth/
H A DOAuth.java28 import java.util.Map;
92 public static String formEncode(Iterable<? extends Map.Entry> parameters)
103 public static void formEncode(Iterable<? extends Map.Entry> parameters,
107 for (Map.Entry parameter : parameters) {
180 * Construct a Map containing a copy of the given parameters. If several
181 * parameters have the same name, the Map will contain the first value,
184 public static Map<String, String> newMap(Iterable<? extends Map.Entry> from) {
185 Map<String, String> map = new HashMap<String, String>();
187 for (Map
286 addParameters(String url, Iterable<? extends Map.Entry<String, String>> parameters) argument
[all...]
H A DOAuthMessage.java29 import java.util.Map;
50 Collection<? extends Map.Entry> parameters) {
54 this.parameters = new ArrayList<Map.Entry<String, String>>();
56 this.parameters = new ArrayList<Map.Entry<String, String>>(parameters.size());
57 for (Map.Entry p : parameters) {
67 private final List<Map.Entry<String, String>> parameters;
68 private Map<String, String> parameterMap;
70 private final List<Map.Entry<String, String>> headers = new ArrayList<Map.Entry<String, String>>();
91 public List<Map
105 addParameters( Collection<? extends Map.Entry<String, String>> parameters) argument
[all...]
/external/mesa3d/src/mesa/swrast/
H A Ds_context.h143 GLubyte *Map; /**< Pointer to mapped image memory */ member in struct:swrast_texture_image
178 GLubyte *Map; member in struct:swrast_renderbuffer
473 assert(srb->Map);
474 return (GLubyte *) srb->Map + y * rowStride + x * bpp;
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
H A DFragmentedMp4Builder.java85 protected List<Track> sortTracksInSequence(List<Track> tracks, final int cycle, final Map<Track, long[]> intersectionMap) { argument
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d11/
H A Dd3d11_context.h1479 virtual HRESULT STDMETHODCALLTYPE Map( function in struct:GalliumD3D11DeviceContext
H A Dd3d11_objects.h406 virtual HRESULT STDMETHODCALLTYPE Map( function in struct:GalliumD3D10Buffer
412 HRESULT hr = device->Map(this, 0, map_type, map_flags, &msr);
431 virtual HRESULT STDMETHODCALLTYPE Map( function in struct:GalliumD3D10Texture1D
438 HRESULT hr = device->Map(this, subresource, map_type, map_flags, &msr);
460 virtual HRESULT STDMETHODCALLTYPE Map( function in struct:GalliumD3D10Texture2D
467 HRESULT hr = device->Map(this, subresource, map_type, map_flags, &msr);
490 virtual HRESULT STDMETHODCALLTYPE Map( function in struct:GalliumD3D10Texture3D
497 HRESULT hr = device->Map(this, subresource, map_type, map_flags, &msr);
560 virtual HRESULT STDMETHODCALLTYPE Map( function in struct:GalliumD3D11Surface
580 HRESULT hres = this->device->get_immediate_context()->Map(thi
[all...]
/external/mesa3d/src/mesa/main/
H A Dmtypes.h876 * \name Map Grid endpoints and divisions and calculated du values
1007 GLfloat Map[MAX_PIXEL_MAP_TABLE]; member in struct:gl_pixelmap
1953 /** Map from sampler unit to texture unit (set by glUniform1i()) */
2375 * Map of active uniform names to locations
2385 * Map from sampler unit to texture unit (set by glUniform1i())

Completed in 1509 milliseconds

1234567