/frameworks/av/services/audiopolicy/engineconfigurable/src/ |
Strategy.h | 63 * A Policy element may implement getter/setter function for a given property. 64 * Property may be routing_strategy, audio_stream_type_t, audio_usage_t, audio_source_t 67 template <typename Property> 68 Property get() const; 70 template <typename Property> 71 status_t set(Property property);
|
Stream.h | 64 * A Policy element may implement getter/setter function for a given property. 65 * Property may be routing_strategy, audio_stream_type_t, audio_usage_t, audio_source_t 68 template <typename Property> 69 Property get() const; 71 template <typename Property> 72 status_t set(Property property);
|
Usage.h | 63 * A Policy element may implement getter/setter function for a given property. 64 * Property may be routing_strategy, audio_stream_type_t, audio_usage_t, audio_source_t 67 template <typename Property> 68 Property get() const; 70 template <typename Property> 71 status_t set(Property property);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/ |
AnimationFilter.java | 20 import android.util.Property; 44 private ArraySet<Property> mAnimatedProperties = new ArraySet<>(); 178 public AnimationFilter animate(Property property) { 179 mAnimatedProperties.add(property); 183 public boolean shouldAnimateProperty(Property property) { 185 return mAnimatedProperties.contains(property);
|
/frameworks/native/services/inputflinger/host/ |
InputDriver.h | 75 virtual const char* inputGetPropertyKey(input_property_t* property) = 0; 76 virtual const char* inputGetPropertyValue(input_property_t* property) = 0; 77 virtual void inputFreeDeviceProperty(input_property_t* property) = 0; 122 virtual const char* inputGetPropertyKey(input_property_t* property) override; 123 virtual const char* inputGetPropertyValue(input_property_t* property) override; 124 virtual void inputFreeDeviceProperty(input_property_t* property) override; 185 const char* input_get_property_key(input_host_t* host, input_property_t* property); 187 const char* input_get_property_value(input_host_t* host, input_property_t* property); 189 void input_free_device_property(input_host_t* host, input_property_t* property);
|
InputDriver.cpp | 257 const char* InputDriver::inputGetPropertyKey(input_property_t* property) { 258 if (property != nullptr) { 259 return property->key.string(); 264 const char* InputDriver::inputGetPropertyValue(input_property_t* property) { 265 if (property != nullptr) { 266 return property->value.string(); 271 void InputDriver::inputFreeDeviceProperty(input_property_t* property) { 272 if (property != nullptr) { 273 delete property; 392 const char* input_get_property_key(input_host_t* host, input_property_t* property) { [all...] |
/frameworks/support/dynamic-animation/src/main/java/androidx/dynamicanimation/animation/ |
SpringAnimation.java | 36 * // Create an animation to animate view's X property, set the rest position of the 50 * // Create an animation to animate view's scaleY property, and start the animation using 75 * @param floatValueHolder the property to be animated 82 * This creates a SpringAnimation that animates the property of the given object. 86 * @param object the Object whose property will be animated 87 * @param property the property to be animated 88 * @param <K> the class on which the Property is declared 90 public <K> SpringAnimation(K object, FloatPropertyCompat<K> property) { 91 super(object, property); [all...] |
/frameworks/support/navigation/safe-args-gradle-plugin/ |
build.gradle | 43 inputs.property("compileSdkVersion", SupportConfig.CURRENT_SDK_VERSION) 44 inputs.property("buildToolsVersion", SupportConfig.BUILD_TOOLS_VERSION)
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/ |
AndroidJUnitPropertyTester.java | 49 public boolean test(Object receiver, String property, Object[] args, Object expectedValue) { 77 if (PROPERTY_IS_TEST.equals(property)) { 79 } else if (PROPERTY_CAN_LAUNCH_AS_JUNIT_TEST.equals(property)) { 83 String.format("Unknown test property '%s'", property)); //$NON-NLS-1$
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/ |
ViewHierarchyLoader.java | 160 ViewNode.Property property = new ViewNode.Property(); local 161 property.name = data.substring(start, index); 163 int colonIndex = property.name.indexOf(':'); 165 property.name = property.name.substring(colonIndex + 1); 171 property.value = data.substring(index2 + 1, index2 + 1 + length); 173 node.properties.add(property); 174 node.namedProperties.put(property.name, property) [all...] |
/system/bt/btif/include/ |
btif_storage.h | 46 * Description BTIF storage API - Fetches the adapter property->type 47 * from NVRAM and fills property->val. 48 * Caller should provide memory for property->val and 49 * set the property->val 55 bt_status_t btif_storage_get_adapter_property(bt_property_t* property); 61 * Description BTIF storage API - Stores the adapter property 68 bt_status_t btif_storage_set_adapter_property(bt_property_t* property); 74 * Description BTIF storage API - Fetches the remote device property->type 75 * from NVRAM and fills property->val. 76 * Caller should provide memory for property->val an [all...] |
/system/tpm/trunks/ |
tpm_state.h | 91 // Gets the |value| of any |property|. |value| may be NULL. Returns false if 92 // a value is not available for the property. 93 virtual bool GetTpmProperty(TPM_PT property, uint32_t* value) = 0;
|
/build/blueprint/proptools/ |
extend.go | 22 // AppendProperties appends the values of properties in the property struct src to the property 29 // An error returned by AppendProperties that applies to a specific property will be an 30 // *ExtendPropertyError, and can have the property name and error extracted from it. 35 // pointers to structs. Appending the zero value of a property will always be a no-op. 40 // PrependProperties prepends the values of properties in the property struct src to the property 47 // An error returned by PrependProperties that applies to a specific property will be an 48 // *ExtendPropertyError, and can have the property name and error extracted from it. 53 // pointers to structs. Prepending the zero value of a property will always be a no-op [all...] |
/external/autotest/server/cros/network/ |
hostap_config.py | 213 @property 226 @property 236 @property 246 @property 263 @property 274 @property 283 @property 289 @property 308 @property 314 @property [all...] |
/tools/test/connectivity/acts/framework/acts/controllers/anritsu_lib/ |
md8475a.py | 948 @property 972 @property [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
uuid.py | 208 bytes = property(get_bytes)
215 bytes_le = property(get_bytes_le)
221 fields = property(get_fields)
226 time_low = property(get_time_low)
231 time_mid = property(get_time_mid)
236 time_hi_version = property(get_time_hi_version)
241 clock_seq_hi_variant = property(get_clock_seq_hi_variant)
246 clock_seq_low = property(get_clock_seq_low)
252 time = property(get_time)
258 clock_seq = property(get_clock_seq) [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
uuid.py | 208 bytes = property(get_bytes) 215 bytes_le = property(get_bytes_le) 221 fields = property(get_fields) 226 time_low = property(get_time_low) 231 time_mid = property(get_time_mid) 236 time_hi_version = property(get_time_hi_version) 241 clock_seq_hi_variant = property(get_clock_seq_hi_variant) 246 clock_seq_low = property(get_clock_seq_low) 252 time = property(get_time) 258 clock_seq = property(get_clock_seq [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
uuid.py | 208 bytes = property(get_bytes) 215 bytes_le = property(get_bytes_le) 221 fields = property(get_fields) 226 time_low = property(get_time_low) 231 time_mid = property(get_time_mid) 236 time_hi_version = property(get_time_hi_version) 241 clock_seq_hi_variant = property(get_clock_seq_hi_variant) 246 clock_seq_low = property(get_clock_seq_low) 252 time = property(get_time) 258 clock_seq = property(get_clock_seq [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
uuid.py | 208 bytes = property(get_bytes) 215 bytes_le = property(get_bytes_le) 221 fields = property(get_fields) 226 time_low = property(get_time_low) 231 time_mid = property(get_time_mid) 236 time_hi_version = property(get_time_hi_version) 241 clock_seq_hi_variant = property(get_clock_seq_hi_variant) 246 clock_seq_low = property(get_clock_seq_low) 252 time = property(get_time) 258 clock_seq = property(get_clock_seq [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
uuid.py | 208 bytes = property(get_bytes) 215 bytes_le = property(get_bytes_le) 221 fields = property(get_fields) 226 time_low = property(get_time_low) 231 time_mid = property(get_time_mid) 236 time_hi_version = property(get_time_hi_version) 241 clock_seq_hi_variant = property(get_clock_seq_hi_variant) 246 clock_seq_low = property(get_clock_seq_low) 252 time = property(get_time) 258 clock_seq = property(get_clock_seq [all...] |
/frameworks/base/core/java/android/animation/ |
PropertyValuesHolder.java | 25 import android.util.Property; 33 * This class holds information about a property and the values that that property 41 * The name of the property associated with the values. This need not be a real property, 50 protected Property mProperty; 54 * PropertyValuesHolder, since it holds all of the per-property information. This 55 * property is automatically 62 * PropertyValuesHolder, since it holds all of the per-property information. This 63 * property is automaticall [all...] |
/cts/tests/tests/os/src/android/os/cts/ |
BuildTest.java | 54 // The build property must match Build.SUPPORTED_ABIS exactly. 100 private String[] getStringList(String property) throws IOException { 101 String value = getProperty(property); 110 * @param property name passed to getprop 112 static String getProperty(String property) 114 Process process = new ProcessBuilder("getprop", property).start(); 129 * @param property name passed to getprop 130 * @param expected value of the property 132 private void assertProperty(String message, String property, String expected) 134 Process process = new ProcessBuilder("getprop", property).start() [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
ANTLRMapElement.h | 39 @property (retain, getter=getName, setter=setName:) NSString *name; 40 @property (retain, getter=getNode, setter=setNode:) id node;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
ANTLRMapElement.h | 39 @property (retain, getter=getName, setter=setName:) NSString *name; 40 @property (retain, getter=getNode, setter=setNode:) id node;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
ANTLRMapElement.h | 39 @property (retain, getter=getName, setter=setName:) NSString *name; 40 @property (retain, getter=getNode, setter=setNode:) id node;
|