Searched refs:mapping (Results 1 - 25 of 216) sorted by relevance

123456789

/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dresource.hpp34 class mapping;
59 friend class mapping;
76 std::list<mapping> maps;
102 /// Class that represents a mapping of some resource into the CPU
105 class mapping { class in namespace:clover
107 mapping(command_queue &q, resource &r, cl_map_flags flags,
110 mapping(const mapping &m) = delete;
111 mapping(mapping
[all...]
H A Dqueue.hpp33 class mapping;
55 friend class clover::mapping;
/external/jetty/src/java/org/eclipse/jetty/servlet/
H A DFilterHolder.java195 FilterMapping mapping = new FilterMapping();
196 mapping.setFilterHolder(FilterHolder.this);
197 mapping.setServletNames(servletNames);
198 mapping.setDispatcherTypes(dispatcherTypes);
200 _servletHandler.addFilterMapping(mapping);
202 _servletHandler.prependFilterMapping(mapping);
208 FilterMapping mapping = new FilterMapping();
209 mapping.setFilterHolder(FilterHolder.this);
210 mapping.setPathSpecs(urlPatterns);
211 mapping
[all...]
/external/jetty/src/java/org/eclipse/jetty/servlet/jmx/
H A DFilterMappingMBean.java36 FilterMapping mapping = (FilterMapping)_managed;
37 String name = mapping.getFilterName();
H A DServletMappingMBean.java36 ServletMapping mapping = (ServletMapping)_managed;
37 String name = mapping.getServletName();
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DLocalVariablesSorter.java50 * i of size 1 is remapped to 'mapping[2*i]', while a local variable at
51 * index i of size 2 is remapped to 'mapping[2*i+1]'.
55 int[] mapping = new int[40]; field in class:LocalVariablesSorter.State
130 int length = state.mapping.length;
133 System.arraycopy(state.mapping, 0, newMapping, 0, length);
134 state.mapping = newMapping;
136 int value = state.mapping[key];
139 state.mapping[key] = value;
150 int value = key < state.mapping.length ? state.mapping[ke
[all...]
/external/libopus/src/
H A Dopus_multistream.c50 if (layout->mapping[i] >= max_channel && layout->mapping[i] != 255)
63 if (layout->mapping[i]==stream_id*2)
75 if (layout->mapping[i]==stream_id*2+1)
87 if (layout->mapping[i]==stream_id+layout->nb_coupled_streams)
/external/google-breakpad/src/client/linux/minidump_writer/
H A Dlinux_dumper.cc60 const google_breakpad::MappingInfo& mapping) {
65 return my_strncmp(mapping.name,
96 LinuxDumper::ElfFileIdentifierForMapping(const MappingInfo& mapping, argument
102 if (IsMappedFileOpenUnsafe(mapping))
106 if (my_strcmp(mapping.name, kLinuxGateLibraryName) == 0) {
109 linux_gate = reinterpret_cast<void*>(mapping.start_addr);
111 linux_gate = allocator_.Alloc(mapping.size);
113 reinterpret_cast<const void*>(mapping.start_addr),
114 mapping.size);
120 size_t filename_len = my_strlen(mapping
59 IsMappedFileOpenUnsafe( const google_breakpad::MappingInfo& mapping) argument
192 ElfFileSoName( const MappingInfo& mapping, char* soname, size_t soname_size) argument
223 GetMappingEffectiveNameAndPath(const MappingInfo& mapping, char* file_path, size_t file_path_size, char* file_name, size_t file_name_size) argument
412 const MappingInfo* mapping = FindMapping(stack_pointer); local
[all...]
/external/jetty/src/java/org/eclipse/jetty/security/
H A DConstraintAware.java43 * @param mapping
45 void addConstraintMapping(ConstraintMapping mapping); argument
H A DConstraintSecurityHandler.java182 for (ConstraintMapping mapping:constraintMappings)
184 if (pathSpec.equals(mapping.getPathSpec()))
186 mappings.add(mapping);
207 for (ConstraintMapping mapping:constraintMappings)
210 if (!pathSpec.equals(mapping.getPathSpec()))
212 mappings.add(mapping);
235 //Create a mapping for the pathSpec for the default case
253 ConstraintMapping mapping = new ConstraintMapping();
254 mapping.setConstraint(mconstraint);
255 mapping
404 addConstraintMapping(ConstraintMapping mapping) argument
475 processConstraintMapping(ConstraintMapping mapping) argument
548 processConstraintMappingWithMethodOmissions(ConstraintMapping mapping, Map<String, RoleInfo> mappings) argument
575 configureRoleInfo(RoleInfo ri, ConstraintMapping mapping) argument
[all...]
/external/jmonkeyengine/engine/src/test/jme3test/input/combomoves/
H A DComboMoveExecution.java64 for (String mapping : state.getPressedMappings()){
65 if (!pressedMappings.contains(mapping))
68 for (String mapping : state.getUnpressedMappings()){
69 if (pressedMappings.contains(mapping))
/external/valgrind/gdbserver_tests/
H A Dmcsigpass.stdoutB.exp8 110 mapping[0] = 'x';
12 115 mapping[FILESIZE+10];
/external/google-breakpad/src/common/windows/
H A Domap.cc33 // OMAP information is a lightweight description of a mapping between two
44 // the lengths associated with a mapping are implicit as the distance between
84 // mapping to an original address, and looking up a symbol), but the symbol
264 void FillInRemovedLengths(Mapping* mapping) { argument
265 assert(mapping != NULL);
285 for (size_t find = 0; find < mapping->size(); ++find) {
289 assert(mapping->at(find - 1).rva_original <=
290 mapping->at(find).rva_original);
294 if (rva_front < mapping->at(find).rva_original) {
297 DWORD removed = mapping
317 BuildMapping(const OmapData& omap_data, Mapping* mapping) argument
411 const Mapping& mapping = image_map->mapping; local
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dsprpdata.c37 compareMapping(UStringPrepProfile* data, uint32_t codepoint, uint32_t* mapping, int32_t mapLength,
50 uint32_t mapping[40]; local
79 /* parse the mapping string */
80 length=u_parseCodePoints(map, mapping, sizeof(mapping)/4, pErrorCode);
82 /* compare the mapping */
83 compareMapping(data, code,mapping, length,USPREP_MAP);
116 * Initial value stored in the mapping table
147 compareMapping(UStringPrepProfile* data, uint32_t codepoint, uint32_t* mapping,int32_t mapLength, argument
192 if(mapping[
[all...]
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/
H A DPropertyBoxParserImpl.java36 Properties mapping; field in class:PropertyBoxParserImpl
41 mapping = new Properties();
43 mapping.load(is);
50 mapping.load(customIS);
56 mapping.load(new BufferedInputStream(getClass().getResourceAsStream(customProperty)));
71 public PropertyBoxParserImpl(Properties mapping) { argument
72 this.mapping = mapping;
170 constructor = mapping.getProperty((parent) + "-uuid[" + Hex.encodeHex(userType).toUpperCase() + "]");
172 constructor = mapping
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/input/
H A DInputManager.java55 * The input manager has two concepts, a {@link Trigger} and a mapping.
57 * or a mouse axis. A mapping represents a link onto one or several triggers,
59 * mapping will be invoked. Any listeners registered to receive an event
60 * from the mapping will have an event raised.
162 Mapping mapping = maps.get(i);
163 ArrayList<InputListener> listeners = mapping.listeners;
168 ((ActionListener) listener).onAction(mapping.name, pressed, frameTPF);
237 Mapping mapping = maps.get(i);
238 ArrayList<InputListener> listeners = mapping.listeners;
244 ((AnalogListener) listener).onAnalog(mapping
[all...]
/external/libopus/include/
H A Dopus_multistream.h128 * A <code>mapping</code> table defines which decoded channel <code>i</code>
131 * Let <code>i = mapping[j]</code> be the index for I/O channel <code>j</code>.
145 * to the mapping the encoder used to achieve a different output channel
236 * @param[in] mapping <code>const unsigned char[channels]</code>: Mapping from
262 const unsigned char *mapping,
273 unsigned char *mapping,
306 * @param[in] mapping <code>const unsigned char[channels]</code>: Mapping from
332 const unsigned char *mapping,
343 unsigned char *mapping,
497 * @param[in] mapping <cod
[all...]
/external/libphonenumber/internal/prefixmapper/test/com/google/i18n/phonenumbers/prefixmapper/
H A DMappingFileProviderTest.java44 SortedMap<Integer, Set<String>> mapping = new TreeMap<Integer, Set<String>>();
45 mapping.put(1, newHashSet("en"));
46 mapping.put(86, newHashSet("zh", "en", "zh_Hant"));
47 mapping.put(41, newHashSet("de", "fr", "it", "rm"));
48 mapping.put(65, newHashSet("en", "zh_Hans", "ms", "ta"));
50 mappingProvider.readFileConfigs(mapping);
/external/valgrind/none/tests/
H A Dfaultstatus.c51 static char volatile *volatile mapping; variable
110 mapping[0] = 'x';
115 mapping[FILESIZE+10];
150 mapping = mmap(0, MAPSIZE, PROT_READ, MAP_PRIVATE, fd, 0);
157 T(2, SIGSEGV, SEGV_ACCERR, mapping),
158 T(3, SIGBUS, BUS_ADRERR, &mapping[FILESIZE+10]),
/external/llvm/autoconf/m4/
H A Dneed_dev_zero_for_mmap.m416 [Define if /dev/zero should be used when mapping RWX memory, or undefine if its not necessary])
/external/google-breakpad/src/client/linux/microdump_writer/
H A Dmicrodump_writer.cc276 // If there is caller-provided information about this mapping
278 bool HaveMappingInfo(const MappingInfo& mapping) { argument
284 if (mapping.start_addr >= iter->first.start_addr &&
285 (mapping.start_addr + mapping.size) <=
293 // Dump information about the provided |mapping|. If |identifier| is non-NULL,
294 // use it instead of calculating a file ID from the mapping.
295 void DumpModule(const MappingInfo& mapping, argument
305 mapping,
314 mapping, file_pat
343 const MappingInfo& mapping = *dumper_->mappings()[i]; local
[all...]
/external/icu/icu4c/source/tools/gensprep/
H A Dgensprep.h49 storeMapping(uint32_t codepoint, uint32_t* mapping,int32_t length, UStringPrepType type, UErrorCode* status);
/external/llvm/unittests/MC/
H A DYAMLTest.cpp24 static void mapping(IO &IO, BinaryHolder &BH) { function in struct:llvm::yaml::MappingTraits
/external/llvm/include/llvm/Object/
H A DCOFFYAML.h167 static void mapping(IO &IO, COFFYAML::Relocation &Rel);
172 static void mapping(IO &IO, COFFYAML::PEHeader &PH);
177 static void mapping(IO &IO, COFF::DataDirectory &DD);
182 static void mapping(IO &IO, COFF::header &H);
186 static void mapping(IO &IO, COFF::AuxiliaryFunctionDefinition &AFD);
190 static void mapping(IO &IO, COFF::AuxiliarybfAndefSymbol &AAS);
194 static void mapping(IO &IO, COFF::AuxiliaryWeakExternal &AWE);
198 static void mapping(IO &IO, COFF::AuxiliarySectionDefinition &ASD);
202 static void mapping(IO &IO, COFF::AuxiliaryCLRToken &ACT);
207 static void mapping(I
[all...]
/external/v8/tools/
H A DSourceMap.js196 var mapping = this._mappings[middle];
197 if (lineNumber < mapping[0] || (lineNumber === mapping[0] && columnNumber < mapping[1]))
219 var mapping = mappings[lineNumber];
220 if (mapping)
221 return mapping;
289 var mapping = this._mappings[i];
290 var url = mapping[2];
296 var sourceLine = mapping[
[all...]

Completed in 763 milliseconds

123456789