Searched defs:property (Results 1 - 25 of 250) sorted by relevance

12345678910

/external/v8/tools/
H A Ddetect-builtins.js30 var property = { "name": name };
34 property.type = "getter";
35 result[name] = property;
39 property.type = type;
41 property.length = value.length; class
42 property.prototype = GetProperties("prototype", value.prototype);
45 property.value = value;
47 property.properties = GetProperties(name, value);
49 result[name] = property;
/external/jacoco/org.jacoco.ant/src/org/jacoco/ant/
H A DAgentTask.java22 private String property; field in class:AgentTask
25 * Sets the name of the property to hold the agent JVM options
27 * @param property
28 * Name of the property to be populated
30 public void setProperty(final String property) { argument
31 this.property = property;
36 * <code>property</code> with the JVM arguments required to use it. The
37 * value set into the property is only valid for the lifetime of the current
42 if (property
[all...]
/external/jline/src/src/main/java/jline/
H A DConsoleRunner.java24 public static final String property = "jline.history"; field in class:ConsoleRunner
37 historyFileName = System.getProperty(ConsoleRunner.property, null);
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
H A DMapFieldAccessor.cs44 internal MapFieldAccessor(PropertyInfo property, FieldDescriptor descriptor) : base(property, descriptor) argument
H A DRepeatedFieldAccessor.cs44 internal RepeatedFieldAccessor(PropertyInfo property, FieldDescriptor descriptor) : base(property, descriptor) argument
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/toybox/toys/android/
H A Dstart.c34 char *property = start ? "ctl.start" : "ctl.stop"; local
49 if (__system_property_set(property, *ss))
50 error_exit("failed to set property '%s' to '%s'", property, *ss);
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);
80 if (!TT.handle) error_exit("unable to get selinux property context handle");
/external/tpm2/
H A DGetCapability_fp.h14 UINT32 property; member in struct:__anon22653
H A DPropertyCap.c15 // This function accepts a property selection and, if so, sets value to the value of the property.
21 // TRUE referenced property exists and value set
22 // FALSE referenced property does not exist
26 TPM_PT property, // IN: property
27 UINT32 *value // OUT: property value
30 switch(property)
415 // property is not defined
425 // This function is used to get the TPM_PT values. The search of properties will start at property an
25 TPMPropertyIsDefined( TPM_PT property, UINT32 *value ) argument
435 TPMCapGetProperties( TPM_PT property, UINT32 count, TPML_TAGGED_TPM_PROPERTY *propertyList ) argument
[all...]
/external/ImageMagick/coders/
H A Dthumbnail.c56 #include "MagickCore/property.h"
161 *property;
190 property=GetImageProperty(image,"exif:JPEGInterchangeFormat",exception);
191 if (property == (const char *) NULL)
193 offset=(ssize_t) StringToLong(property);
194 property=GetImageProperty(image,"exif:JPEGInterchangeFormatLength",exception);
195 if (property == (const char *) NULL)
197 length=(size_t) StringToLong(property);
156 *property; local
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/clang/test/Modules/Inputs/
H A DDebugObjC.h10 @property int property; variable
/external/dtc/tests/
H A Dproperty_iterate.c38 int offset, property; local
43 * This property indicates the number of properties in our
48 FAIL("Missing/invalid test-properties property at '%s'",
58 fdt_for_each_property_offset(property, fdt, offset)
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/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/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/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));

Completed in 1125 milliseconds

12345678910