Searched defs:property (Results 51 - 75 of 350) sorted by relevance

1234567891011>>

/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
H A DIPropertyExceptionHandler.java11 package org.eclipse.wb.internal.core.model.property.table;
13 import org.eclipse.wb.internal.core.model.property.Property;
14 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
21 * @coverage core.model.property.table
H A DIPropertyTooltipSite.java11 package org.eclipse.wb.internal.core.model.property.table;
18 * @coverage core.model.property.table
H A DPropertyTableTooltipHelper.java11 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
84 public void update(Property property, argument
91 m_property = property;
125 // check for property
/external/lzma/CPP/7zip/UI/Common/
H A DSetProperties.cpp46 const CProperty &property = properties[i]; local
48 UString name = property.Name;
49 if (property.Value.IsEmpty())
63 ParseNumberString(property.Value, propVariant);
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
H A DFieldAccessorBase.cs47 internal FieldAccessorBase(PropertyInfo property, FieldDescriptor descriptor) argument
50 getValueDelegate = ReflectionUtil.CreateFuncIMessageObject(property.GetGetMethod());
H A DSingleFieldAccessor.cs45 // There are various cases to consider, based on the property type (message, string/bytes, or "genuine" primitive)
52 internal SingleFieldAccessor(PropertyInfo property, FieldDescriptor descriptor) : base(property, descriptor) argument
54 if (!property.CanWrite)
58 setValueDelegate = ReflectionUtil.CreateActionIMessageObject(property.GetSetMethod());
60 var clrType = property.PropertyType;
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/
H A DMethodProperty.java33 private final PropertyDescriptor property; field in class:MethodProperty
37 public MethodProperty(PropertyDescriptor property) { argument
38 super(property.getName(), property.getPropertyType(),
39 property.getReadMethod() == null ? null : property.getReadMethod()
41 this.property = property;
42 this.readable = property.getReadMethod() != null;
43 this.writable = property
[all...]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue133/
H A DStackOverflowTest.java41 || message.contains("Unable to find getter for property 'location'"));
51 * property when we dump the instance of Point.
56 protected NodeTuple representJavaBeanProperty(Object javaBean, Property property, argument
58 if (javaBean instanceof Point && "location".equals(property.getName())) {
62 .representJavaBeanProperty(javaBean, property, propertyValue, customTag);
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue48/
H A DSkipJavaBeanPropertyTest.java47 protected NodeTuple representJavaBeanProperty(Object bean, Property property, Object value, argument
50 return super.representJavaBeanProperty(bean, property, value, customTag);
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue60/
H A DSkipBeanTest.java44 protected NodeTuple representJavaBeanProperty(Object javaBean, Property property, argument
50 .representJavaBeanProperty(javaBean, property, propertyValue, customTag);
64 protected NodeTuple representJavaBeanProperty(Object javaBean, Property property, argument
66 NodeTuple tuple = super.representJavaBeanProperty(javaBean, property, propertyValue,
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/
H A DComplexProperty.java11 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;
29 * @coverage core.model.property
151 protected String getText(Property property) throws Exception {
174 public Property[] getProperties(Property property) throw argument
184 getText(Property property) argument
194 activate(PropertyTable propertyTable, Property property, Point location) argument
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
H A DPropertyEditor.java11 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;
28 * @coverage core.model.property.editor
46 public abstract void paint(Property property, GC gc, int x, int y, int width, int height) argument
56 * happens when user selects property in {@link PropertyTable}. {@link PropertyEditor} should
69 public boolean activate(PropertyTable propertyTable, Property property, Point location) argument
88 * is <code>true</code> if property should save value to {@link Property}.
90 public void deactivate(PropertyTable propertyTable, Property property, boolea argument
99 doubleClick(Property property, Point location) argument
105 keyDown(PropertyTable propertyTable, Property property, KeyEvent event) argument
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
H A DButtonPropertyEditorPresentation.java11 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) { argument
59 m_impl.setSelection(propertyTable, property, selected);
69 final Property property,
74 return m_impl.show(propertyTable, property, x, y, width, height);
78 public final void hide(PropertyTable propertyTable, Property property) { argument
68 show(final PropertyTable propertyTable, final Property property, final int x, final int y, final int width, final int height) argument
113 onClick(PropertyTable propertyTable, Property property) argument
117 click(PropertyTable propertyTable, Property property) argument
[all...]
H A DButtonPropertyEditorPresentationImpl.java11 package org.eclipse.wb.internal.core.model.property.editor.presentation;
21 import org.eclipse.wb.internal.core.model.property.Property;
22 import org.eclipse.wb.internal.core.model.property.table.PropertyTable;
32 * @coverage core.model.property.editor
53 public final void hide(PropertyTable propertyTable, Property property) { argument
54 Control control = m_propertyToControl.remove(propertyTable, property);
62 Property property,
68 Control control = m_propertyToControl.get(propertyTable, property);
70 control = createControl(propertyTable, property);
80 * Finds and select the appropriate {@link Control} belonging to given property
61 show(PropertyTable propertyTable, Property property, int x, int y, int width, int height) argument
82 setSelection(PropertyTable propertyTable, Property property, boolean selected) argument
97 createControl(final PropertyTable propertyTable, final Property property) argument
140 createControlImpl(final PropertyTable propertyTable, final Property property) argument
212 put(PropertyTable propertyTable, Property property, Control control) argument
216 remove(PropertyTable propertyTable, Property property) argument
220 get(PropertyTable propertyTable, Property property) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.core.databinding.property_1.3.0.I20100601-0800.jar ... eclipse/core/ org/eclipse/core/databinding/ org/eclipse/core/databinding/property/ org/eclipse/core/databinding/property/INativePropertyListener.class INativePropertyListener. ...
/external/ImageMagick/Magick++/lib/
H A DImageRef.cpp129 *property; local
134 property=(const char *) NULL;
136 property=GetImageProperty(_image,"Signature",exceptionInfo);
137 if (property == (const char *) NULL)
140 property=GetImageProperty(_image,"Signature",exceptionInfo);
145 return(std::string(property));
/external/ImageMagick/coders/
H A Ddng.c175 property[MagickPathExtent];
193 (void) FormatLocaleString(property,MagickPathExtent,"dng:%s",tag);
202 ((Image *) image)->properties,ConstantString(property),
174 property[MagickPathExtent]; local
H A Dlabel.c56 #include "MagickCore/property.h"
96 *property;
129 property=InterpretImageProperties((ImageInfo *) image_info,image,
131 (void) SetImageProperty(image,"label",property,exception);
132 property=DestroyString(property);
94 *property; local
H A Dcaption.c60 #include "MagickCore/property.h"
101 *property,
145 property=InterpretImageProperties((ImageInfo *) image_info,image,
149 property=InterpretImageProperties((ImageInfo *) image_info,image,option+8,
152 property=InterpretImageProperties((ImageInfo *) image_info,image,option,
154 (void) SetImageProperty(image,"caption",property,exception);
155 property=DestroyString(property);
99 *property, local
H A Dhistogram.c62 #include "MagickCore/property.h"
357 *property;
361 property=FileToString(filename,~0UL,exception);
362 if (property != (char *) NULL)
364 (void) SetImageProperty(histogram_image,"comment",property,
366 property=DestroyString(property);
352 *property; local
/external/dtc/tests/
H A Dstringlist.c32 const char *property)
49 * Note that the #address-cells property contains a small 32-bit
55 * that the property does not contain a valid string list it would
65 * property value, which would be necessary for it to determine if a
71 const char *property, int count)
79 err = fdt_stringlist_count(fdt, offset, property);
81 FAIL("Couldn't count strings in property %s of node %s: %d\n",
82 property, path, err);
85 FAIL("String count for property %s of node %s is %d instead of %d\n",
86 path, property, er
31 check_expected_failure(const void *fdt, const char *path, const char *property) argument
70 check_string_count(const void *fdt, const char *path, const char *property, int count) argument
89 check_string_index(const void *fdt, const char *path, const char *property, const char *string, int idx) argument
106 check_string(const void *fdt, const char *path, const char *property, int idx, const char *string) argument
[all...]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/category/
H A DPropertyCategoryProviders.java11 package org.eclipse.wb.internal.core.model.property.category;
13 import org.eclipse.wb.internal.core.model.property.Property;
14 import org.eclipse.wb.internal.core.model.property.PropertyManager;
20 * @coverage core.model.property
29 public PropertyCategory getCategory(Property property) {
30 return property.getCategory();
42 public PropertyCategory getCategory(Property property) {
43 return PropertyManager.getCategoryForced(property);
64 public PropertyCategory getCategory(Property property) {
66 PropertyCategory category = provider.getCategory(property);
[all...]
/external/toybox/toys/android/
H A Dgetprop.c1 /* getprop.c - Get an Android system property
14 Gets an Android system property, or lists them all.
32 static char *get_property_context(const char *property) argument
36 if (selabel_lookup(TT.handle, &context, property, 1)) {
37 perror_exit("unable to lookup label for \"%s\"", property);
79 if (!TT.handle) error_exit("unable to get selinux property context handle");
/external/clang/tools/libclang/
H A DCIndexUSRs.cpp135 CXString clang_constructUSR_ObjCProperty(const char *property, argument
140 generateUSRForObjCProperty(property, OS);
/external/google-breakpad/src/testing/gtest/test/
H A Dgtest_stress_test.cc81 const std::vector<TestProperty>::const_iterator property = local
83 ASSERT_TRUE(property != properties.end())
85 EXPECT_STREQ(IdToString(id).c_str(), property->value());
106 // The shared_key forces property updates.

Completed in 624 milliseconds

1234567891011>>