/frameworks/base/packages/SystemUI/shared/src/com/android/systemui/shared/system/ |
H A D | ActivityCompat.java | 35 public void registerRemoteAnimations(RemoteAnimationDefinitionCompat definition) { argument 36 mWrapped.registerRemoteAnimations(definition.getWrapped());
|
/frameworks/base/tools/aapt2/tools/consumers/ |
H A D | duplicates.py | 25 # 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 D | TiffWriter.cpp | 154 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 D | TiffWriter.h | 68 * 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 D | fonts.mk | 15 # Warning: this is actually a product definition, to be inherited from
|
/frameworks/rs/script_api/ |
H A D | GenerateDocumentation.cpp | 249 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/data/keyboards/ |
H A D | keyboards.mk | 15 # Warning: this is actually a product definition, to be inherited from
|
/frameworks/av/media/libstagefright/ |
H A D | MediaExtractorFactory.cpp | 111 ExtractorPlugin(MediaExtractor::ExtractorDef definition, void *handle, String8 &path) argument 112 : def(definition), libHandle(handle), libPath(path) {
|
/frameworks/base/services/core/java/com/android/server/wm/ |
H A D | AppWindowContainerController.java | 724 public void registerRemoteAnimations(RemoteAnimationDefinition definition) { argument 731 mContainer.registerRemoteAnimations(definition);
|
H A D | WindowSurfacePlacer.java | 379 final RemoteAnimationDefinition definition = animLpToken.getRemoteAnimationDefinition(); 380 if (definition != null) { 381 final RemoteAnimationAdapter adapter = definition.getAdapter(transit, activityTypes);
|
H A D | AppWindowToken.java | 2065 void registerRemoteAnimations(RemoteAnimationDefinition definition) { argument 2066 mRemoteAnimationDefinition = definition;
|
/frameworks/layoutlib/create/tests/com/android/tools/layoutlib/create/ |
H A D | DelegateClassAdapterTest.java | 73 // (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/base/core/java/android/app/ |
H A D | IActivityManager.aidl | 706 void registerRemoteAnimations(in IBinder token, in RemoteAnimationDefinition definition);
|
H A D | Activity.java | 7872 * @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);
|
/frameworks/base/services/core/java/com/android/server/am/ |
H A D | ActivityRecord.java | 3000 void registerRemoteAnimations(RemoteAnimationDefinition definition) { argument 3001 mWindowContainerController.registerRemoteAnimations(definition);
|
H A D | ActivityManagerService.java | 27143 registerRemoteAnimations(IBinder token, RemoteAnimationDefinition definition) argument [all...] |
/frameworks/native/services/inputflinger/tests/ |
H A D | InputReader_test.cpp | 541 void addVirtualKeyDefinition(int32_t deviceId, const VirtualKeyDefinition& definition) { 543 device->virtualKeys.push(definition);
|