Searched refs:definition (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/tools/aapt2/tools/consumers/
H A Dduplicates.py25 # Extract the duplicate resource definitions, ignoring the last definition
39 for definition in duplicates:
40 print "{0}: removing duplicate resource '{1}'".format(xml_path, definition.name)
42 if last_line_no < definition.start[0]:
43 # The next definition is on a new line, so write what we have
53 for line_to_copy in xrange(last_line_no, definition.start[0]):
58 # definition.
59 last_line_no = definition.start[0]
60 current_line += input_lines[last_line_no][last_col_no:definition.start[1]]
61 last_line_no = definition
[all...]
/frameworks/av/media/img_utils/src/
H A DTiffWriter.cpp154 const TagDefinition_t* definition = NULL; local
158 definition = mTagMaps[i][index];
163 if (definition == NULL) {
164 ALOGE("%s: No definition exists for tag with id %x.", __FUNCTION__, tag);
166 return definition;
188 const TagDefinition_t* definition = lookupDefinition(tag); local
190 if (definition == NULL) {
191 ALOGE("%s: No definition exists for tag 0x%x.", __FUNCTION__, tag);
312 const TagDefinition_t* definition = lookupDefinition(tag); local
313 if (definition
321 const TagDefinition_t* definition = lookupDefinition(tag); local
339 const TagDefinition_t* definition = lookupDefinition(tag); local
[all...]
/frameworks/av/media/img_utils/include/img_utils/
H A DTiffWriter.h68 * precedence will be in the order that the definition maps are given,
131 * This tag must be defined in one of the definition vectors this TIFF writer
148 * defined in one of the definition vectors this TIFF writer was constructed
218 * Returns true if a definition exist for the given tag ID.
223 * Returns the name of the tag if a definition exists for the given tag
224 * ID, or null if no definition exists.
247 * Utility function to build atag-to-definition mapping from a given
274 const TagDefinition_t* definition = lookupDefinition(tag); local
276 if (definition == NULL) {
281 uint32_t fixedCount = definition
[all...]
/frameworks/base/data/fonts/
H A Dfonts.mk15 # Warning: this is actually a product definition, to be inherited from
/frameworks/rs/script_api/
H A DGenerateDocumentation.cpp246 static void writeSummaryTableEntry(ostream* stream, Definition* definition, argument
248 if (definition->hidden()) {
251 const bool deprecated = definition->deprecated();
259 *stream << " <a href='" << definition->getUrl() << "'>" << definition->getName()
267 *stream << definition->getSummary() << "\n";
466 static void writeDeprecatedWarning(GeneratedFile* file, Definition* definition) { argument
467 if (definition->deprecated()) {
469 string s = definition->getDeprecatedMessage();
/frameworks/base/data/keyboards/
H A Dkeyboards.mk15 # Warning: this is actually a product definition, to be inherited from
/frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
H A DDelegateClassAdapterTest.java73 // (load the class in a distinct class loader so that we can trash its definition later)
374 public ClassLoader2 add(String className, byte[] definition) { argument
375 mClassDefs.put(className, definition);
402 // Load everything else from the original definition into the new class loader.
/frameworks/native/services/inputflinger/tests/
H A DInputReader_test.cpp466 void addVirtualKeyDefinition(int32_t deviceId, const VirtualKeyDefinition& definition) { argument
468 device->virtualKeys.push(definition);

Completed in 217 milliseconds