/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/ |
ExportGradleTest.java | 125 Object property = job.getProperty(ERROR_KEY); local 126 assertNull(property); 202 Object property = job.getProperty(ERROR_KEY); local 203 assertNull(property); 239 Object property = job.getProperty(ERROR_KEY); local 240 assertNull(property);
|
/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...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/ |
PropertyFactory.java | 52 import org.eclipse.wb.internal.core.editor.structure.property.PropertyListIntersector; 53 import org.eclipse.wb.internal.core.model.property.ComplexProperty; 54 import org.eclipse.wb.internal.core.model.property.Property; 55 import org.eclipse.wb.internal.core.model.property.category.PropertyCategory; 56 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor; 57 import org.eclipse.wb.internal.core.model.property.editor.presentation.ButtonPropertyEditorPresentation; 73 * The {@link PropertyFactory} creates (and caches) the set of {@link Property} 87 System.err.println("WARNING: The property cache is disabled"); 91 private static final Property[] NO_PROPERTIES = new Property[0] 211 XmlProperty property = new XmlProperty(editor, this, node, descriptor); local 285 XmlProperty property = properties.get(i); local 412 Property property = new ComplexProperty( local 427 Property property = new ComplexProperty( local 452 XmlProperty property = properties.get(i); local 665 Property property = new ComplexProperty( local 680 Property property = new ComplexProperty( local [all...] |
/cts/tests/tests/animation/src/android/animation/cts/ |
ObjectAnimatorTest.java | 54 String property = "y"; local 57 ObjectAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY); 74 String property = "y"; local 77 ObjectAnimator animator = ObjectAnimator.ofFloat(object, property, startY, endY); 80 objAnimator.setPropertyName(property); 87 String property = "backgroundColor"; local 91 ObjectAnimator colorAnimator = ObjectAnimator.ofInt(object, property, 108 String property = "backgroundColor"; local 113 ObjectAnimator colorAnimator = ObjectAnimator.ofObject(object, property, 164 String property = "y" local 198 String property = "y"; local 219 String property = "y"; local [all...] |
PropertyValuesHolderTest.java | 24 import android.util.Property; 105 ShapeHolderYProperty property=new ShapeHolderYProperty(ShapeHolder.class.getClass(),"y"); local 106 property.setObject(mObject); 107 PropertyValuesHolder pVHolder = PropertyValuesHolder.ofFloat(property, values); 142 String property = "backgroundColor"; local 147 ViewColorProperty colorProperty=new ViewColorProperty(Integer.class.getClass(),property); 170 ShapeHolderYProperty property=new ShapeHolderYProperty(ShapeHolder.class.getClass(),"y"); local 171 property.setObject(mObject); 173 pVHolder.setProperty(property); 182 class ShapeHolderYProperty extends Property { [all...] |
ValueAnimatorTest.java | 117 String property = "y"; local 120 ObjectAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY); 155 String property = "y"; local 160 float[] animatedValues = getValue(objAnimator, 10, "getAnimatedValue(property)", 200l, 161 property); 217 String property = "y"; local 220 ValueAnimator objAnimator = ObjectAnimator.ofFloat(object, property, startY, endY); 229 long sleepTime, String property) throws InterruptedException { 238 }else if(methodName.equals("getAnimatedValue(property)")) { 239 value = ((Float)animator.getAnimatedValue(property)).floatValue() [all...] |
AnimatorTest.java | 107 String property = "y"; local 110 Animator animator = ObjectAnimator.ofFloat(object, property, startY, endY);
|
/external/chromium_org/chrome/browser/chromeos/imageburner/ |
burn_manager.cc | 112 // We search for block that has desired hwid property, and if we find it, we 113 // return its property_name property. 118 PropertyMap::const_iterator property = local 120 if (property != block_it->properties.end()) { 121 return property->second; 158 // Check if line contains hwid property. If so, add it to set of hwids 162 // Add new block property.
|
/external/chromium_org/components/policy/core/common/ |
schema.cc | 107 const PropertyNode* property(int index) const { function in class:policy::Schema::InternalStorage 417 it_(storage->property(node->begin)), 418 end_(storage->property(node->end)) {} 557 const PropertyNode* begin = storage_->property(node->begin); 558 const PropertyNode* end = storage_->property(node->end);
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
StylePropertySerializer.cpp | 63 StylePropertySet::PropertyReference property = m_propertySet.propertyAt(n); local 64 CSSPropertyID propertyID = property.id(); 75 result.append(property.cssText()); 90 if (property.value()->isValueList()) 91 value = toCSSValueList(property.value())->customCSSText(AlwaysQuoteCSSString); 227 value = property.value()->cssText(); 237 if (property.isImportant()) 405 // While standard border-spacing property does not allow specifying border-spacing-vertical without 584 // We need to report background-repeat as it was written in the CSS. If the property is implicit, [all...] |
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
StyleResolver.h | 96 CSSPropertyValue(CSSPropertyID property, CSSValue* value) 97 : property(property), value(value) { } 100 CSSPropertyID property; member in struct:WebCore::CSSPropertyValue
|
/external/chromium_org/third_party/WebKit/Source/core/platform/animation/ |
CSSAnimationData.h | 120 CSSPropertyID property() const { return m_property; } function in class:WebCore::CSSAnimationData
|
/external/chromium_org/ui/compositor/ |
layer_animator.cc | 87 // the getter of the target value) for an animated property. For example, 90 // if the transition duration is zero -- in this case we just set the property 92 #define ANIMATED_PROPERTY(type, property, name, member_type, member) \ 97 StopAnimatingProperty(LayerAnimationElement::property); \ 263 LayerAnimationElement::AnimatableProperty property, 267 va_start(marker, property); 268 for (int p = static_cast<int>(property); p != -1; p = va_arg(marker, int)) { 279 LayerAnimationElement::AnimatableProperty property) const { 282 if ((*queue_iter)->properties().find(property) != 291 LayerAnimationElement::AnimatableProperty property) { 321 LayerAnimationElement::AnimatableProperty property = local [all...] |
/external/dexmaker/src/main/java/com/google/dexmaker/ |
DexMaker.java | 338 * dexmaker.dexcache} system property. If that exists, it will be used for 343 * property. 353 String property = System.getProperty("dexmaker.dexcache"); local 354 if (property != null) { 355 dexCache = new File(property); 360 + " found; consider setting the 'dexmaker.dexcache' system property)");
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/ |
HtmlTooltipHelper.java | 11 package org.eclipse.wb.internal.core.model.property.table; 48 * @coverage core.model.property.table
|
/external/emma/ant/ant14/com/vladium/emma/report/ |
ReportCfg.java | 35 * the ability for report properties to be set either via the generic <property> 37 * conceptual property being set via an attribute and a nested element are resolved 98 // generic property element [don't doc this publicly]: 104 final PropertyElement property = new PropertyElement (); local 105 m_genericSettings.add (property); 107 return property; 133 final PropertyElement property = (PropertyElement) i.next (); local 135 final String name = property.getName (); 136 final String value = property.getValue () != null ? property.getValue () : "" [all...] |
/external/harfbuzz/src/ |
harfbuzz-shaper-private.h | 127 hb_uint32 property; member in struct:__anon18566
|
/external/harfbuzz_ng/src/hb-old/ |
harfbuzz-shaper-private.h | 115 hb_uint32 property; member in struct:__anon18622
|
/external/wpa_supplicant_8/wpa_supplicant/dbus/ |
dbus_new_helpers.c | 54 /* An error getting a property fails the request entirely */ 172 "Property is write-only"); 183 "Failed to read property"); 206 "Property is read-only"); 210 /* Skip the interface name and the property name */ 214 /* Iter will now point to the property's new value */ 222 "Failed to set property"); 236 char *property; local 242 /* Second argument: property name (DBUS_TYPE_STRING) */ 248 dbus_message_iter_get_basic(iter, &property); [all...] |
/frameworks/av/media/mtp/ |
MtpDevice.cpp | 214 MtpProperty* property = getDevicePropDesc(propCode); local 215 if (property) 216 mDeviceProperties.push(property); 239 MtpProperty* property = getDevicePropDesc(propCode); local 240 if (property) { 241 property->print(); 242 delete property; 258 MtpProperty* property = getObjectPropDesc(prop, format); local 259 if (property) { 260 property->print() 549 MtpProperty* property = new MtpProperty; local 568 MtpProperty* property = new MtpProperty; local [all...] |
/frameworks/base/libs/hwui/ |
Caches.cpp | 149 char property[PROPERTY_VALUE_MAX]; local 150 if (property_get(PROPERTY_ENABLE_GPU_PIXEL_BUFFERS, property, "true") > 0) { 151 gpuPixelBuffersEnabled = !strcmp(property, "true"); 161 char property[PROPERTY_VALUE_MAX]; local 162 if (property_get(PROPERTY_DEBUG_LAYERS_UPDATES, property, NULL) > 0) { 163 INIT_LOGD(" Layers updates debug enabled: %s", property); 164 debugLayersUpdates = !strcmp(property, "true"); 170 if (property_get(PROPERTY_DEBUG_OVERDRAW, property, NULL) > 0) { 171 INIT_LOGD(" Overdraw debug enabled: %s", property); 172 if (!strcmp(property, "show")) [all...] |
/libcore/luni/src/main/java/java/util/logging/ |
LogManager.java | 45 * java.util.logging.manager system property, if the property is unavailable or 61 * "java" command line property definitions, or by system property definitions 70 * If "java.util.logging.config.class" property is not set, or it is invalid, or 72 * "java.util.logging.config.file" system property can be used to specify a 82 * <li>"handlers". This property's values should be a list of class names for 88 * <li>"config". The property defines a list of class names separated by 100 * specified in the property files. The names of these properties will start 111 * the property file. The root logger's level can be defined by the propert 391 String property = props.getProperty(logger.getName() + ".level"); local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/ |
AaptParser.java | 130 * such as which property was being processed and what the string value was that 604 String property = matcher.group(1); local 607 // First find the property. We can't just immediately look for the 613 return findRange(file, line, property, value); 615 // Find first occurrence of property followed by '' or "" 616 IRegion region1 = findRange(file, line, property, "\"\""); //$NON-NLS-1$ 617 IRegion region2 = findRange(file, line, property, "''"); //$NON-NLS-1$ 620 // Highlight the property instead 621 return findRange(file, line, property, null); 636 String property = matcher.group(2) local 642 String property = matcher.group(1); local [all...] |
/external/bluetooth/bluedroid/bta/gatt/ |
bta_gatts_int.h | 98 tBTA_GATT_CHAR_PROP property; member in struct:__anon254
|
/external/chromium_org/chrome/browser/chromeos/system/ |
ash_system_tray_delegate.cc | 758 ash::IMEPropertyInfo property; variable 759 property.key = properties[i].key; 760 property.name = base::UTF8ToUTF16(properties[i].label); 761 property.selected = properties[i].is_selection_item_checked; 762 list->push_back(property); [all...] |