/system/connectivity/shill/vpn/ |
vpn_driver.h | 67 struct Property { 72 kArray = 1 << 3, // Property is an array of strings. 75 const char* property; member in struct:shill::VPNDriver::Property 83 const Property* properties, 123 const Property* const properties_;
|
/system/core/logd/ |
LogWhiteBlackList.cpp | 94 char property[PROPERTY_VALUE_MAX]; local 95 property_get("ro.logd.filter", property, _default); 96 filter = property; 97 property_get("persist.logd.filter", property, filter.c_str()); 99 if (strcmp(property, _default)) { 100 filter = property; 106 // See README.property for description of filter format
|
/external/guice/examples/src/example/xml/ |
XmlBeanModule.java | 45 Element property = bean.getChild("property"); local 46 property.setStartElementListener(new PropertyListener()); 101 /** Handles "property" elements. */ 121 // Find setter method for the given property name. 143 // Add property descriptor to builder. 146 new Property(setter, provider)); 155 static class Property { 160 Property(Method setter, Provider<?> provider) { 180 final List<Property> properties = new ArrayList<Property>() [all...] |
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/extensions/compactnotation/ |
CompactConstructor.java | 30 import org.yaml.snakeyaml.introspector.Property; 78 Property property = getPropertyUtils().getProperty(bean.getClass(), key); local 80 property.set(bean, entry.getValue()); 82 throw new YAMLException("Cannot set property='" + key + "' with value='" 204 Property property = getPropertyUtils().getProperty(bean.getClass(), local 206 property.set(bean, value); 213 * Provide the name of the property which is used when the entries form a 214 * sequence. The property must be a List 221 Property property = iterator.next(); local [all...] |
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/ |
Constructor.java | 38 import org.yaml.snakeyaml.introspector.Property; 119 * assigned in constructor then the 'root' property of this definition is 147 * node where the keys are property names (they can only be 241 Property property = getProperty(beanType, key); local 242 valueNode.setType(property.getType()); 254 } else if (property.getType().isArray()) { 255 snode.setListType(property.getType().getComponentType()); 272 Class<?>[] arguments = property.getActualTypeArguments(); 285 } else if (property.getType().isAssignableFrom(Map.class)) [all...] |
/bionic/libc/malloc_debug/ |
Config.cpp | 87 PropertyParser(const char* property) : cur_(property) {} 89 bool Get(std::string* property, size_t* value, bool* value_set); 103 bool PropertyParser::Get(std::string* property, size_t* value, bool* value_set) { 104 // Process each property name we can find. 117 *property = std::string(property_start, cur_ - property_start); 130 error_log("%s: bad value for option '%s': %s", getprogname(), property->c_str(), 136 error_log("%s: bad value for option '%s'", getprogname(), property->c_str()); 139 getprogname(), property->c_str(), end); 144 getprogname(), property->c_str(), read_value) 332 std::string property; local [all...] |
/build/core/ |
dex_preopt_libart.mk | 32 define get-product-default-property 36 DEX2OAT_IMAGE_XMS := $(call get-product-default-property,dalvik.vm.image-dex2oat-Xms) 37 DEX2OAT_IMAGE_XMX := $(call get-product-default-property,dalvik.vm.image-dex2oat-Xmx) 38 DEX2OAT_XMS := $(call get-product-default-property,dalvik.vm.dex2oat-Xms) 39 DEX2OAT_XMX := $(call get-product-default-property,dalvik.vm.dex2oat-Xmx) 46 # via a property as we want the larger Xmx value if we're running on a
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/ |
Property.java | 11 package org.eclipse.wb.internal.core.model.property; 15 import org.eclipse.wb.internal.core.model.property.category.PropertyCategory; 16 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor; 22 * {@link Property} is used to display/change properties of ObjectInfo's. 25 * @coverage core.model.property 27 public abstract class Property { 29 * The value that should be used when we don't know real value of {@link Property}. We can not use 50 public Property(PropertyEditor editor) { 61 * @return the title displayed to the user to identify the property. 66 * @return <code>true</code> if this property has a non-default valu [all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/category/ |
PropertyCategory.java | 11 package org.eclipse.wb.internal.core.model.property.category; 13 import org.eclipse.wb.internal.core.model.property.Property; 17 * Describes category of {@link Property}. 20 * @coverage core.model.property 119 * @return <code>true</code> if this property is preferred. 126 * @return <code>true</code> if this property is advanced. 133 * @return <code>true</code> if this property is really advanced. 140 * @return <code>true</code> if this property is hidden. 147 * @return <code>true</code> if this property is system [all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/ |
AbstractComboBoxPropertyEditor.java | 11 package org.eclipse.wb.internal.core.model.property.editor; 15 import org.eclipse.wb.internal.core.model.property.Property; 16 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 37 * @coverage core.model.property.editor 50 final Property property, 54 addItems(property, m_combo); 55 selectItem(property, m_combo); 60 handleKeyPressed(propertyTable, property, e) [all...] |
AbstractComboPropertyEditor.java | 11 package org.eclipse.wb.internal.core.model.property.editor; 14 import org.eclipse.wb.internal.core.model.property.Property; 15 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 33 * @coverage core.model.property.editor 45 public boolean activate(final PropertyTable propertyTable, final Property property, Point location) 52 addItems(property, m_combo); 54 selectItem(property, m_combo); 67 toProperty(propertyTable, property, index) [all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/string/ |
StringPropertyDialog.java | 11 package org.eclipse.wb.internal.core.model.property.editor.string; 23 import org.eclipse.wb.internal.core.model.property.Property; 33 * @coverage core.model.property.editor 47 private final Property m_property; 54 public StringPropertyDialog(Shell parentShell, Property property) throws Exception { 56 m_property = property;
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/ |
PropertyTableTooltipHelper.java | 11 package org.eclipse.wb.internal.core.model.property.table; 21 import org.eclipse.wb.internal.core.model.property.Property; 28 * @coverage core.model.property.table 73 private Property m_property; 84 public void update(Property property, 91 m_property = property; 125 // check for property
|
/external/emma/core/java12/com/vladium/emma/rt/ |
RT.java | 15 import com.vladium.util.Property; 184 final String property = appProperties.getProperty (EMMAProperties.PROPERTY_COVERAGE_DATA_OUT_FILE, local 186 return new File (property); 199 final String property = appProperties.getProperty (EMMAProperties.PROPERTY_COVERAGE_DATA_OUT_MERGE, local 201 return Property.toBoolean (property);
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/ |
TestUnicodeProperty.java | 36 UnicodeProperty property = factory.getProperty("gc"); local 37 List values = property.getAvailableValues(); 39 final UnicodeSet lu = property.getSet("Lu");
|
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/ |
TestUnicodeProperty.java | 32 UnicodeProperty property = factory.getProperty("gc"); local 33 List values = property.getAvailableValues(); 35 final UnicodeSet lu = property.getSet("Lu");
|
/external/libchrome/dbus/ |
property.cc | 5 #include "dbus/property.h" 50 PropertyBase* property) { 51 property->Init(this, name); 52 properties_map_[name] = property; 73 LOG(WARNING) << "Property changed signal has wrong parameters: " 82 LOG(WARNING) << "Property changed signal has wrong parameters: " 87 LOG(WARNING) << "Property changed signal has wrong parameters: " 100 void PropertySet::Get(PropertyBase* property, GetCallback callback) { 104 writer.AppendString(property->name()); 111 property, 286 PropertyBase* property = it->second; local [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);
|
/hardware/libhardware/tests/vehicle/ |
vehicle-hal-tool.c | 32 "-p - Property (only used with -m)\n" 63 "Subscribes to be notified about a property change (depending on whether\n" 64 "it is a on change property or a continuous property) for seconds provided\n" 82 printf("Property ID: %d\n" 83 "Property config_flags: %d\n" 84 "Property change mode: %d\n" 85 "Property min sample rate: %f\n" 86 "Property max sample rate: %f\n", 208 vehicle_hw_device_t *device, int32_t property, int32_t type, char *value_string) 440 int property = -1; local [all...] |
/hardware/qcom/display/msm8084/libgralloc/ |
gpu.cpp | 301 char property[PROPERTY_VALUE_MAX]; local 303 (property_get("debug.gralloc.map_fb_memory", property, NULL) > 0) && 304 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) || 305 (!strncasecmp(property,"true", PROPERTY_VALUE_MAX )))) {
|
/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);
|
hwc_vsync.cpp | 117 char property[PROPERTY_VALUE_MAX]; local 118 if(property_get("debug.hwc.fakevsync", property, NULL) > 0) { 119 if(atoi(property) == 1) 123 if(property_get("debug.hwc.logvsync", property, 0) > 0) { 124 if(atoi(property) == 1) 191 //Fake vsync is used only when set explicitly through a property or when
|
/hardware/qcom/display/msm8226/libgralloc/ |
gpu.cpp | 304 char property[PROPERTY_VALUE_MAX]; local 306 (property_get("debug.gralloc.map_fb_memory", property, NULL) > 0) && 307 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) || 308 (!strncasecmp(property,"true", PROPERTY_VALUE_MAX )))) {
|
/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 | 107 char property[PROPERTY_VALUE_MAX]; local 108 if(property_get("debug.hwc.fakevsync", property, NULL) > 0) { 109 if(atoi(property) == 1) 192 //Fake vsync is used only when set explicitly through a property or when
|