/hardware/qcom/display/msm8994/libqdutils/ |
comptype.h | 63 char property[PROPERTY_VALUE_MAX]; local 65 if (property_get("debug.composition.type", property, "gpu") > 0) { 66 if ((strncmp(property, "mdp", 3)) == 0) { 68 } else if ((strncmp(property, "c2d", 3)) == 0) { 70 } else if ((strncmp(property, "dyn", 3)) == 0) {
|
/libcore/luni/src/main/java/org/xml/sax/helpers/ |
XMLReaderFactory.java | 62 private static final String property = "org.xml.sax.driver"; field in class:XMLReaderFactory 70 * <li>If the system property <code>org.xml.sax.driver</code> 85 * property will often be usable.) </li> 95 * setting a good value for that property ensures that calls to this 112 // 1. try the JVM-instance-wide system property 113 try { className = System.getProperty (property); } 119 String service = "META-INF/services/" + property; 157 + "is system property org.xml.sax.driver set?");
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/ |
PropertyUtils.java | 35 private final Map<Class<?>, Map<String, Property>> propertiesCache = new HashMap<Class<?>, Map<String, Property>>(); 36 private final Map<Class<?>, Set<Property>> readableProperties = new HashMap<Class<?>, Set<Property>>(); 41 protected Map<String, Property> getPropertiesMap(Class<?> type, BeanAccess bAccess) 47 Map<String, Property> properties = new LinkedHashMap<String, Property>(); 63 for (PropertyDescriptor property : Introspector.getBeanInfo(type) 65 Method readMethod = property.getReadMethod(); 67 properties.put(property.getName(), new MethodProperty(property)) 127 Property property = properties.get(name); local [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.core.databinding.property_1.3.0.I20100601-0800.jar | |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/ |
EnumerationValuesPropertyEditor.java | 11 package org.eclipse.wb.internal.core.model.property.editor; 16 import org.eclipse.wb.internal.core.model.property.Property; 26 * @coverage core.model.property.editor 59 public String getText(Property property) throws Exception { 60 Object value = property.getValue(); 62 if (value != Property.UNKNOWN_VALUE) { 80 if (value != Property.UNKNOWN_VALUE) { 96 // public String getClipboardSource(GenericProperty property) throws Exception [all...] |
PropertyEditor.java | 11 package org.eclipse.wb.internal.core.model.property.editor; 20 import org.eclipse.wb.internal.core.model.property.Property; 21 import org.eclipse.wb.internal.core.model.property.editor.presentation.PropertyEditorPresentation; 22 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 25 * Abstract editor for {@link Property}. 28 * @coverage core.model.property.editor 44 * Paints given {@link Property} given rectangle <code>(x, y, width, height)</code> of {@link GC}. 46 public abstract void paint(Property property, GC gc, int x, int y, int width, int height [all...] |
StringArrayPropertyEditor.java | 11 package org.eclipse.wb.internal.core.model.property.editor; 18 import org.eclipse.wb.internal.core.model.property.Property; 25 * @coverage core.model.property.editor 44 protected String getText(Property property) throws Exception { 45 String[] items = getItems(property); 50 * @return the items specified in value of given {@link Property}. 52 private static String[] getItems(Property property) throws Exception [all...] |
StringListPropertyEditor.java | 11 package org.eclipse.wb.internal.core.model.property.editor; 14 import org.eclipse.wb.internal.core.model.property.Property; 20 * @coverage core.model.property.editor 32 protected void toPropertyEx_simpleProperty(Property property, CCombo3 combo, int index) 34 property.setValue(m_strings[index]);
|
AbstractListPropertyEditor.java | 11 package org.eclipse.wb.internal.core.model.property.editor; 14 import org.eclipse.wb.internal.core.model.property.Property; 24 * @coverage core.model.property.editor 35 public String getText(Property property) throws Exception { 37 Object value = property.getValue(); 38 if (value != Property.UNKNOWN_VALUE) { 60 if (value != Property.UNKNOWN_VALUE) { 76 //public String getClipboardSource(GenericProperty property) throws Exception [all...] |
BooleanObjectPropertyEditor.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; 26 * @coverage core.model.property.editor 48 public void paint(Property property, GC gc, int x, int y, int width, int height) throws Exception { 49 Object value = property.getValue(); 84 public boolean activate(PropertyTable propertyTable, Property property, Point location [all...] |
BooleanPropertyEditor.java | 11 package org.eclipse.wb.internal.core.model.property.editor; 17 import org.eclipse.wb.internal.core.model.property.Property; 18 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 25 * @coverage core.model.property.editor 48 public void paint(Property property, GC gc, int x, int y, int width, int height) throws Exception { 49 Object value = property.getValue(); 82 public boolean activate(PropertyTable propertyTable, Property property, Point location [all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/ |
CompoundPropertyEditorPresentation.java | 11 package org.eclipse.wb.internal.core.model.property.editor.presentation; 15 import org.eclipse.wb.internal.core.model.property.Property; 16 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 25 * @coverage core.model.property.editor 50 Property property, 57 int presentationWidth = presentation.show(propertyTable, property, x, y, width, height); 65 public void hide(PropertyTable propertyTable, Property property) { [all...] |
ButtonPropertyEditorPresentation.java | 11 package org.eclipse.wb.internal.core.model.property.editor.presentation; 15 import org.eclipse.wb.internal.core.model.property.Property; 16 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 27 * @coverage core.model.property.editor 56 * Sets "selection" property of {@link Button}. 58 public final void setSelection(PropertyTable propertyTable, Property property, boolean selected) { 59 m_impl.setSelection(propertyTable, property, selected); 69 final Property property [all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/string/ |
StringPropertyEditor.java | 11 package org.eclipse.wb.internal.core.model.property.editor.string; 13 import org.eclipse.wb.internal.core.model.property.Property; 14 import org.eclipse.wb.internal.core.model.property.editor.AbstractTextPropertyEditor; 15 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor; 16 import org.eclipse.wb.internal.core.model.property.editor.presentation.ButtonPropertyEditorPresentation; 17 import org.eclipse.wb.internal.core.model.property.editor.presentation.PropertyEditorPresentation; 18 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 26 * @coverage core.model.property.editor 46 protected void onClick(PropertyTable propertyTable, Property property) throws Exception [all...] |
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/ |
AccessFieldTransformer.java | 39 String property = TypeUtils.upperFirst(callback.getPropertyName(getClassType(), name)); local 40 if (property != null) { 43 new Signature("get" + property, 53 new Signature("set" + property,
|
/packages/services/Car/libvehiclenetwork/native/ |
IVehicleNetworkListener.cpp | 66 virtual void onHalError(int32_t errorCode, int32_t property, int32_t operation) { 70 data.writeInt32(property); 125 int32_t property = data.readInt32(); local 127 onHalError(errorCode, property, operation);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/ |
BufferSubDataTransform.java | 44 IGLProperty property = mAccessor.getProperty(state); local 45 mOldData = (byte[]) property.getValue(); 60 property.setValue(mNewData); 66 IGLProperty property = mAccessor.getProperty(state); local 67 property.setValue(mOldData);
|
PropertyChangeTransform.java | 33 * Construct a state transform that will extract the property using the accessor, 41 * Construct a state transform that will extract the property using the accessor, 56 IGLProperty property = mAccessor.getProperty(state); local 62 if (!mPredicate.apply(property.getValue())) { 67 if (property != null) { 68 mOldValue = property.getValue(); 69 property.setValue(mNewValue); 71 throw new RuntimeException("No such property: " + mAccessor.getPath()); 76 * Reverses the effect of this state transform. It restores the property's value to the same 83 IGLProperty property = mAccessor.getProperty(state) local [all...] |
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/ |
PropertiesTableModel.java | 26 private List<ViewNode.Property> properties; 27 private List<ViewNode.Property> privateProperties = new ArrayList<ViewNode.Property>(); 44 ViewNode.Property property = new ViewNode.Property(); local 45 property.name = "absolute_x"; 46 property.value = String.valueOf(x); 47 privateProperties.add(property); 49 property = new ViewNode.Property() 63 ViewNode.Property property; local [all...] |
/system/connectivity/shill/dbus/ |
chromeos_dbus_properties_proxy.cc | 70 const string& property) { 72 << ", " << property << ")"; local 75 if (!proxy_->Get(interface_name, property, &value, &error)) { 77 << " " << property << ": "
|
/system/connectivity/shill/shims/ |
set_apn_helper.c | 17 // Shim to set Cellular.APN property for a service. This exists because 57 const char *property; local 67 "Usage: %s <service-dbus-path> <property-name> <apn-args>\n", 98 property = argv[2]; 99 dbus_message_iter_append_basic(&iter, DBUS_TYPE_STRING, &property);
|
/system/connectivity/shill/vpn/ |
vpn_driver.cc | 52 const Property* properties, 66 if ((properties_[i].flags & Property::kEphemeral)) { 69 const string property = properties_[i].property; local 70 if (properties_[i].flags & Property::kArray) { 71 CHECK(!(properties_[i].flags & Property::kCredential)) 72 << "Property cannot be both an array and a credential"; 74 if (storage->GetStringList(storage_id, property, &value)) { 75 args_.SetStrings(property, value); 77 args_.RemoveStrings(property); 103 const string property = properties_[i].property; local [all...] |
/prebuilts/tools/common/m2/repository/com/android/tools/external/propertysheet/1.0/ |
propertysheet-1.0.jar | |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/ |
ComplexProperty.java | 11 package org.eclipse.wb.internal.core.model.property; 13 import org.eclipse.wb.internal.core.model.property.editor.TextDisplayPropertyEditor; 14 import org.eclipse.wb.internal.core.model.property.editor.complex.IComplexPropertyEditor; 15 import org.eclipse.wb.internal.core.model.property.editor.presentation.PropertyEditorPresentation; 16 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 17 import org.eclipse.wb.internal.core.model.property.table.PropertyTooltipProvider; 18 import org.eclipse.wb.internal.core.model.property.table.PropertyTooltipTextProvider; 25 * Implementation of {@link Property} that shows given inner {@link Property}'s using 29 * @coverage core.model.property [all...] |
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/ |
PropertyTooltipProvider.java | 11 package org.eclipse.wb.internal.core.model.property.table; 13 import org.eclipse.wb.internal.core.model.property.Property; 27 * @coverage core.model.property.table 31 * Show tooltip directly on property row. 35 * Show tooltip below property row. 47 public abstract Control createTooltipControl(Property property, 61 * use tooltip to show just longer (full) text of property. But for "class" property we sho [all...] |