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

<<41424344454647484950>>

  /external/tensorflow/tensorflow/contrib/distributions/python/ops/
negative_binomial.py 110 @property
115 @property
120 @property
onehot_categorical.py 147 @property
152 @property
157 @property
  /external/tensorflow/tensorflow/contrib/eager/python/
datasets.py 167 @property
179 @property
189 @property
evaluator.py 228 @property
307 @property
316 @property
  /external/tensorflow/tensorflow/contrib/labeled_tensor/python/ops/
io_ops.py 48 @property
52 @property
56 @property
  /external/tensorflow/tensorflow/python/framework/
device.py 97 @property
108 @property
119 @property
152 # NOTE(touts): we use the property getters here.
  /external/tensorflow/tensorflow/python/ops/distributions/
dirichlet_multinomial.py 224 @property
229 @property
234 @property
multinomial.py 210 @property
215 @property
220 @property
  /external/tensorflow/tensorflow/python/ops/
resource_variable_ops.py 547 @property
552 @property
557 @property
562 @property
567 @property
572 @property
579 @property
596 @property
601 @property
608 @property
    [all...]
  /external/toolchain-utils/automation/common/
command.py 64 @property
130 @property
149 @property
  /external/v8/src/compiler/
operator.h 39 enum Property {
60 typedef base::Flags<Property, uint8_t> Properties;
91 // Check whether this operator has the given property.
92 bool HasProperty(Property property) const {
93 return (properties() & property) == property;
  /external/vogar/src/vogar/target/
TestEnvironment.java 257 private static void setPropertyIfNull(String property, String value) {
258 if (System.getProperty(property) == null) {
259 System.setProperty(property, value);
  /frameworks/base/libs/hwui/
Animator.h 199 ANDROID_API RenderPropertyAnimator(RenderProperty property, float finalValue);
224 ANDROID_API CanvasPropertyPrimitiveAnimator(CanvasPropertyPrimitive* property,
244 ANDROID_API CanvasPropertyPaintAnimator(CanvasPropertyPaint* property, PaintField field,
  /hardware/qcom/display/msm8084/libhwcomposer/
hwc_ad.cpp 139 char property[PROPERTY_VALUE_MAX]; local
143 if(property_get("ro.qcom.ad", property, "0") > 0) {
144 val = atoi(property);
  /hardware/qcom/display/msm8226/libhwcomposer/
hwc_ad.cpp 107 char property[PROPERTY_VALUE_MAX]; local
111 if(property_get("ro.qcom.ad", property, "0") > 0) {
112 val = atoi(property);
hwc_vsync.cpp 106 char property[PROPERTY_VALUE_MAX]; local
107 if(property_get("debug.hwc.fakevsync", property, NULL) > 0) {
108 if(atoi(property) == 1)
191 //Fake vsync is used only when set explicitly through a property or when
  /hardware/qcom/display/msm8994/libhwcomposer/
hwc_ad.cpp 110 char property[PROPERTY_VALUE_MAX]; local
114 if(property_get("ro.qcom.ad", property, "0") > 0) {
115 val = atoi(property);
hwc_vsync.cpp 125 char property[PROPERTY_VALUE_MAX]; local
126 if(property_get("debug.hwc.fakevsync", property, NULL) > 0) {
127 if(atoi(property) == 1)
194 //Fake vsync is used only when set explicitly through a property or when
  /libcore/ojluni/src/main/java/java/beans/
PropertyChangeSupport.java 41 * or for a property specified by name.
151 * If some listeners have been added with a named property, then
167 * // with the property named "foo"
183 * Add a PropertyChangeListener for a specific property. The listener
185 * specific property.
187 * property, the listener will be invoked the number of times it was added
188 * for that property.
192 * @param propertyName The name of the property to listen on.
208 * Remove a PropertyChangeListener for a specific property.
210 * source for the specified property, it will be notified one less tim
429 String property = entry.getKey(); local
    [all...]
  /libcore/ojluni/src/main/java/sun/net/spi/
DefaultProxySelector.java 78 * protocol, Property prefix 1, Property prefix 2, ...
117 * basis, and change it only when the "source", i.e. the system property,
128 final String property; field in class:DefaultProxySelector.NonProxyInfo
137 property = p;
192 // HTTPS uses the same property as HTTP, for backward
231 * property.
239 * No system property defined for that
261 // Let's get the NonProxyHosts property
263 nphosts = NetProperties.get(nprop.property);
    [all...]
  /packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/property/
PropertyTestFragment.java 17 package com.google.android.car.kitchensink.property;
23 import android.car.hardware.property.CarPropertyManager;
76 View view = inflater.inflate(R.layout.property, container, false);
124 Log.e(TAG, "Failed to get property", e);
156 Log.e(TAG, "Failed to set HVAC boolean property", e);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/detail/
DetailsPage.java 162 private void stateVariableSelected(IGLProperty property) {
169 if (sp.isApplicable(property)) {
170 sp.updateControl(property);
  /test/vts/utils/python/systrace/
systrace_controller.py 58 @property
68 @property
78 @property
  /toolchain/binutils/binutils-2.27/gold/
Makefile.am 114 arm-reloc-property.h \
115 aarch64-reloc-property.h \
175 i386.cc x86_64.cc sparc.cc powerpc.cc arm.cc arm-reloc-property.cc tilegx.cc \
176 mips.cc aarch64.cc aarch64-reloc-property.cc s390.cc
180 arm.$(OBJEXT) arm-reloc-property.$(OBJEXT) tilegx.$(OBJEXT) \
181 mips.$(OBJEXT) aarch64.$(OBJEXT) aarch64-reloc-property.$(OBJEXT) \
  /external/v8/src/js/
i18n.js 64 // property on each JSFunction instance created here, rather
364 * Returns a getOption function that extracts property value for given
365 * options object. If property is missing it returns defaultValue. If value
366 * is out of range for that property it throws RangeError.
371 var getOption = function getOption(property, type, values, defaultValue) {
372 if (!IS_UNDEFINED(options[property])) {
373 var value = options[property];
389 throw %make_range_error(kValueOutOfRange, value, caller, property);
414 * a locale property whose value is the language tag of the selected locale,
544 * undefined in the map.property to denote that
    [all...]

Completed in 657 milliseconds

<<41424344454647484950>>