HomeSort by relevance Sort by last modified time
    Searched refs:property (Results 601 - 625 of 3780) sorted by null

<<21222324252627282930>>

  /external/tensorflow/tensorflow/tools/docs/
doc_generator_visitor.py 52 @property
63 @property
75 @property
90 @property
104 @property
  /external/toolchain-utils/automation/common/
events.py 28 @property
32 @property
50 time_elapsed = property(_TimeElapsedGet, _TimeElapsedSet)
52 @property
89 @property
  /frameworks/base/core/java/com/android/internal/widget/
DrawableHolder.java 61 * Adds an animation that interpolates given property from its current value
66 * @param property the property to animate
71 String property, float toValue, boolean replace) {
73 if (replace) removeAnimationFor(property);
75 ObjectAnimator anim = ObjectAnimator.ofFloat(this, property, toValue);
85 * Stops all animations for the given property and removes it from the list.
87 * @param property
89 public void removeAnimationFor(String property) {
92 if (property.equals(currentAnim.getPropertyName()))
    [all...]
  /external/python/cpython3/Lib/
ipaddress.py 391 @property
396 @property
401 @property
412 @property
690 @property
699 @property
707 @property
711 @property
715 @property
719 @property
    [all...]
  /external/tensorflow/tensorflow/python/data/ops/
dataset_ops.py     [all...]
  /external/tensorflow/tensorflow/contrib/kfac/python/ops/
fisher_factors.py 265 @property
623 @property
628 @property
634 @property
638 @property
661 @property
731 @property
736 @property
742 @property
746 @property
    [all...]
  /external/libnl/python/netlink/route/
tc.py 101 @property
106 @property
115 @property
127 @property
135 @property
143 @property
151 @property
159 @property
168 @property
177 @property
    [all...]
  /external/tensorflow/tensorflow/python/estimator/
run_config.py 36 # A list of the property names in RunConfig that the user is allowed to change.
231 # Also, if user sets one save ckpt property, say steps, the other one (secs)
561 @property
565 @property
569 @property
573 @property
577 @property
581 @property
585 @property
589 @property
    [all...]
  /external/chromium-trace/catapult/devil/devil/utils/
find_usb_devices.py 63 @property
67 @property
71 @property
75 @property
166 @property
171 @property
176 @property
181 @property
185 @property
220 @property
    [all...]
  /external/libmojo/third_party/catapult/devil/devil/utils/
find_usb_devices.py 54 @property
58 @property
62 @property
66 @property
157 @property
162 @property
167 @property
172 @property
176 @property
211 @property
    [all...]
  /frameworks/base/media/jni/
android_mtp_MtpDatabase.cpp 139 MtpObjectProperty property,
143 MtpObjectProperty property,
146 virtual MtpResponseCode getDevicePropertyValue(MtpDeviceProperty property,
149 virtual MtpResponseCode setDevicePropertyValue(MtpDeviceProperty property,
152 virtual MtpResponseCode resetDeviceProperty(MtpDeviceProperty property);
155 uint32_t format, uint32_t property,
171 bool getObjectPropertyInfo(MtpObjectProperty property, int& type);
172 bool getDevicePropertyInfo(MtpDeviceProperty property, int& type);
179 virtual MtpProperty* getObjectPropertyDesc(MtpObjectProperty property,
182 virtual MtpProperty* getDevicePropertyDesc(MtpDeviceProperty property);
1077 MtpObjectProperty property; member in struct:PropertyTableEntry
    [all...]
  /external/kmod/libkmod/python/kmod/
module.pyx 49 name = property(fget=_name_get)
54 path = property(fget=_path_get)
59 options = property(fget=_options_get)
64 install_commands = property(fget=_install_commands_get)
69 remove_commands = property(fget=_remove_commands_get)
73 refcnt = property(fget=_refcnt_get)
77 size = property(fget=_size_get)
98 info = property(fget=_info_get)
116 versions = property(fget=_versions_get)
  /external/tensorflow/tensorflow/python/framework/
dtypes.py 89 @property
94 @property
102 @property
110 @property
121 @property
129 @property
134 @property
139 @property
144 @property
150 @property
    [all...]
  /frameworks/base/core/java/android/animation/
ObjectAnimator.java 25 import android.util.Property;
33 * as well as the name of the property that will be animated. Appropriate set/get functions
35 * animate the property.
64 * <a href="{@docRoot}guide/topics/graphics/prop-animation.html#object-animator">Property
77 * A weak reference to the target object on which the property exists, set
84 private Property mProperty;
89 * Sets the name of the property that will be animated. This name is used to derive
91 * For example, a property name of <code>foo</code> will result
97 * name of the property being animated, use <code>float</code> or <code>int</code> typed values,
100 * property types and return types will work, but will have more overhead in processin
    [all...]
  /external/autotest/server/cros/dynamic_suite/
host_spec.py 84 @property
90 @property
172 @property
184 @property
241 @property
278 @property
285 @property
  /external/tpm2/
PropertyCap.c 15 // This function accepts a property selection and, if so, sets value to the value of the property.
21 // TRUE referenced property exists and value set
22 // FALSE referenced property does not exist
26 TPM_PT property, // IN: property
27 UINT32 *value // OUT: property value
30 switch(property)
415 // property is not defined
425 // This function is used to get the TPM_PT values. The search of properties will start at property an
    [all...]
  /frameworks/base/core/jni/
android_view_RenderNodeAnimator.cpp 95 static inline RenderPropertyAnimator::RenderProperty toRenderProperty(jint property) {
96 LOG_ALWAYS_FATAL_IF(property < 0 || property > RenderPropertyAnimator::ALPHA,
97 "Invalid property %d", property);
98 return static_cast<RenderPropertyAnimator::RenderProperty>(property);
110 RenderPropertyAnimator::RenderProperty property = toRenderProperty(propertyRaw); local
111 BaseRenderNodeAnimator* animator = new RenderPropertyAnimator(property, finalValue);
  /external/python/cpython3/Lib/test/
test_property.py 1 # Test case for property
23 @property
55 spam = property(_get_spam, doc="spam spam spam")
70 @property
136 foo = property(foo)
139 # check that the property's __isabstractmethod__ descriptor does the
150 foo = property(foo)
156 p = property(doc='basic')
166 @property
176 # Issue 5890: subclasses of property do not preserve method __doc__ string
    [all...]
  /packages/services/Car/vehicle-hal-support-lib/src/com/android/car/vehiclehal/test/
MockedVehicleHal.java 47 * Interface for handler of each property.
52 default void onPropertySubscribe(int property, float sampleRate) {}
53 default void onPropertyUnsubscribe(int property) {}
98 assertNotNull("Injecting event failed for property: " + value.prop
102 // Update property if requested
125 assertNotNull("Injecting error failed for property: " + propertyId
195 // Remove callback that was registered previously for this property
242 public void onPropertySubscribe(int property, float sampleRate) {
247 public void onPropertyUnsubscribe(int property) {
290 public synchronized void onPropertySubscribe(int property, float sampleRate)
    [all...]
  /prebuilts/tools/common/m2/repository/xhtmlrenderer/xhtmlrenderer/R8rc1/
xhtmlrenderer-R8rc1.jar 
  /device/google/cuttlefish_common/guest/commands/vsoc_input_service/
virtual_device_base.cpp 83 for (uint32_t property : GetProperties()) {
84 if (!DoIoctl(fd_, UI_SET_PROPBIT, property)) {
85 SLOGE("Error setting property: %" PRIu32, property);
  /external/autotest/client/cros/cellular/mbim_compliance/
mbim_device_context.py 46 # parsed, this property determines whether the discovered device is an
178 @property
189 @property
200 @property
  /external/chromium-trace/catapult/dependency_manager/dependency_manager/
cloud_storage_info.py 91 @property
95 @property
101 @property
  /external/tensorflow/tensorflow/contrib/data/python/ops/
random_ops.py 57 @property
61 @property
65 @property
stats_ops.py 170 @property
174 @property
178 @property

Completed in 742 milliseconds

<<21222324252627282930>>