Searched defs:definition (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/system/
H A DActivityCompat.java35 public void registerRemoteAnimations(RemoteAnimationDefinitionCompat definition) { argument
36 mWrapped.registerRemoteAnimations(definition.getWrapped());
/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/av/media/libstagefright/
H A DMediaExtractorFactory.cpp111 ExtractorPlugin(MediaExtractor::ExtractorDef definition, void *handle, String8 &path) argument
112 : def(definition), libHandle(handle), libPath(path) {
/frameworks/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)
451 public ClassLoader2 add(String className, byte[] definition) { argument
452 mClassDefs.put(className, definition);
479 // Load everything else from the original definition into the new class loader.
/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/base/services/core/java/com/android/server/wm/
H A DAppWindowContainerController.java724 public void registerRemoteAnimations(RemoteAnimationDefinition definition) { argument
731 mContainer.registerRemoteAnimations(definition);
H A DAppWindowToken.java2065 void registerRemoteAnimations(RemoteAnimationDefinition definition) { argument
2066 mRemoteAnimationDefinition = definition;
/frameworks/rs/script_api/
H A DGenerateDocumentation.cpp249 static void writeSummaryTableEntry(ostream* stream, Definition* definition, argument
251 if (definition->hidden()) {
254 const bool deprecated = definition->deprecated();
262 *stream << " <a href='" << definition->getUrl() << "'>" << definition->getName()
270 *stream << definition->getSummary() << "\n";
472 static void writeDeprecatedWarning(GeneratedFile* file, Definition* definition) { argument
473 if (definition->deprecated()) {
475 string s = definition->getDeprecatedMessage();
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityRecord.java3000 void registerRemoteAnimations(RemoteAnimationDefinition definition) { argument
3001 mWindowContainerController.registerRemoteAnimations(definition);
H A DActivityManagerService.java27143 registerRemoteAnimations(IBinder token, RemoteAnimationDefinition definition) argument
[all...]
/frameworks/base/core/java/android/app/
H A DActivity.java7872 * @param definition The remote animation definition that defines which transition whould run
7877 public void registerRemoteAnimations(RemoteAnimationDefinition definition) { argument
7879 ActivityManager.getService().registerRemoteAnimations(mToken, definition);

Completed in 456 milliseconds