HomeSort by relevance Sort by last modified time
    Searched defs:property (Results 26 - 50 of 398) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
LocalePropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
13 import org.eclipse.wb.internal.core.model.property.Property;
21 * @coverage core.model.property.editor
40 protected String getText(Property property) throws Exception {
41 Object value = property.getValue();
55 protected void openDialog(Property property) throws Exception {
56 Object value = property.getValue()
    [all...]
PropertyDescriptorEditorProvider.java 11 package org.eclipse.wb.internal.core.model.property.editor;
20 * @coverage core.model.property.editor
PropertyEditorProvider.java 11 package org.eclipse.wb.internal.core.model.property.editor;
19 * @coverage core.model.property.editor
23 * @return the {@link PropertyEditor} for given property type or <code>null</code>.
StringComboPropertyEditor.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
40 protected String getText(Property property) throws Exception {
41 return (String) property.getValue();
50 protected void addItems(Property property, CCombo3 combo) throws Exception {
57 protected void selectItem(Property property, CCombo3 combo) throws Exception
    [all...]
TextControlActionsManager.java 11 package org.eclipse.wb.internal.core.model.property.editor;
22 * @coverage core.model.property.editor
TextDialogPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
13 import org.eclipse.wb.internal.core.model.property.Property;
14 import org.eclipse.wb.internal.core.model.property.editor.presentation.ButtonPropertyEditorPresentation;
15 import org.eclipse.wb.internal.core.model.property.editor.presentation.PropertyEditorPresentation;
16 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
24 * @coverage core.model.property.editor
34 protected void onClick(PropertyTable propertyTable, Property property) throws Exception {
35 openDialog(property);
    [all...]
TextDisplayPropertyEditor.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;
16 import org.eclipse.wb.internal.core.model.property.table.PropertyTooltipProvider;
20 * Abstract {@link PropertyEditor} for displaying text as {@link Property} value in
24 * @coverage core.model.property.editor
33 public void paint(Property property, GC gc, int x, int y, int width, int height) throws Exception {
34 String text = getText(property);
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/complex/
IComplexPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor.complex;
13 import org.eclipse.wb.internal.core.model.property.Property;
14 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
20 * @coverage core.model.property.editor
24 * @return sub-properties of given complex property.
26 Property[] getProperties(Property property) throws Exception;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
ButtonPropertyEditorPresentationImplMac.java 11 package org.eclipse.wb.internal.core.model.property.editor.presentation;
14 import org.eclipse.wb.internal.core.model.property.Property;
15 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
25 * @coverage core.model.property.editor
43 protected final Control createControlImpl(final PropertyTable propertyTable, Property property) {
51 public final void setSelection(PropertyTable propertyTable, Property property, boolean selected) {
52 CFlatButton button = (CFlatButton) m_propertyToControl.get(propertyTable, property);
    [all...]
PropertyEditorPresentation.java 11 package org.eclipse.wb.internal.core.model.property.editor.presentation;
13 import org.eclipse.wb.internal.core.model.property.Property;
14 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
15 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
22 * @coverage core.model.property.editor
26 * Shows presentation for given {@link Property}.
31 Property property,
40 public abstract void hide(PropertyTable propertyTable, Property property)
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
IPropertyTooltipSite.java 11 package org.eclipse.wb.internal.core.model.property.table;
18 * @coverage core.model.property.table
PropertyTooltipTextProvider.java 11 package org.eclipse.wb.internal.core.model.property.table;
16 import org.eclipse.wb.internal.core.model.property.Property;
22 * @coverage core.model.property.table
31 public Control createTooltipControl(Property property,
40 // was: header = property.getTitle();
41 header = property.getName();
43 content = getText(property);
66 protected abstract String getText(Property property) throws Exception
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
SetProperties.cpp 45 const CProperty &property = properties[i]; local
47 UString name = property.Name;
48 if (property.Value.IsEmpty())
62 ParseNumberString(property.Value, propVariant);
  /external/protobuf/gtest/test/
gtest_stress_test.cc 71 const TestProperty* property = properties.FindIf(matches_key); local
72 ASSERT_TRUE(property != NULL)
74 EXPECT_STREQ(IdToString(id).c_str(), property->value());
95 // The shared_key forces property updates.
  /frameworks/base/core/jni/android/graphics/
RtlProperties.h 41 char property[PROPERTY_VALUE_MAX]; local
42 if (property_get(RTL_PROPERTY_DEBUG, property, NULL) > 0) {
43 return (RtlDebugLevel) atoi(property);
  /frameworks/base/libs/hwui/
Extensions.cpp 68 char property[PROPERTY_VALUE_MAX]; local
69 if (property_get(PROPERTY_DEBUG_NV_PROFILING, property, NULL) > 0) {
70 mHasNvSystemTime = !strcmp(property, "true") && hasEglExtension("EGL_NV_system_time");
FboCache.cpp 33 char property[PROPERTY_VALUE_MAX]; local
34 if (property_get(PROPERTY_FBO_CACHE_SIZE, property, NULL) > 0) {
35 INIT_LOGD(" Setting fbo cache size to %s", property);
36 mMaxSize = atoi(property);
  /hardware/qcom/display/msm8960/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) {
  /hardware/qcom/display/msm8974/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) {
  /hardware/qcom/display/msm8x26/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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.databinding.property_1.3.0.I20100601-0800.jar 
  /cts/tests/tests/hardware/src/android/hardware/cts/
LowRamDeviceTest.java 41 assertTrue("Device must specify low RAM property: ro.config.low_ram=true",
50 final String property = "MemTotal"; local
56 if (line.startsWith(property)) {
59 throw new IOException("Malformed " + property + " line");
68 throw new IOException(property + " could not be found");
  /external/chromium_org/third_party/WebKit/Source/core/animation/
ElementAnimation.cpp 107 String property = keyframeProperties[j]; local
108 CSSPropertyID id = camelCaseCSSPropertyNameToID(property);
119 keyframeDictionaryVector[i].get(property, value);
  /external/chromium_org/third_party/WebKit/Source/core/css/
RuntimeCSSEnabled.cpp 167 CSSPropertyID property = properties[i]; local
168 if (RuntimeCSSEnabled::isCSSPropertyEnabled(property))
169 outVector.append(property);

Completed in 2063 milliseconds

12 3 4 5 6 7 8 91011>>