Searched defs:property (Results 176 - 200 of 350) sorted by relevance

1234567891011>>

/external/guice/extensions/persist/lib/
H A Dhibernate-annotations.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hibernate/ org/hibernate/annotationfactory/ org/hibernate/annotations/ org/ ...
/external/ImageMagick/MagickCore/
H A Ddraw.c78 #include "MagickCore/property.h"
3660 property[MagickPathExtent];
3682 (void) FormatLocaleString(property,MagickPathExtent,"%s",name);
3683 path=GetImageArtifact(image,property);
3686 (void) FormatLocaleString(property,MagickPathExtent,"%s-geometry",name);
3687 geometry=GetImageArtifact(image,property);
3705 (void) FormatLocaleString(property,MagickPathExtent,"%s-type",name);
3706 type=GetImageArtifact(image,property);
3642 property[MagickPathExtent]; local
H A Dimage.c85 #include "MagickCore/property.h"
712 *property;
728 property=AcquireString(pathname);
729 (void) FormatLocaleString(property,MagickPathExtent,"8BIM:1999,2998:%s",
731 value=GetImageProperty(image,property,exception);
732 property=DestroyString(property);
1707 Note that a 'filename:' property should not need depth recursion.
704 *property; local
H A Dproperty.c73 #include "MagickCore/property.h"
223 % MagickBooleanType DefineImageProperty(Image *image,const char *property,
230 % o property: the image property.
236 const char *property,ExceptionInfo *exception)
246 assert(property != (const char *) NULL);
247 (void) CopyMagickString(key,property,MagickPathExtent-1);
270 % DeleteImageProperty() deletes an image property.
274 % MagickBooleanType DeleteImageProperty(Image *image,const char *property)
280 % o property
232 DefineImageProperty(Image *image, const char *property,ExceptionInfo *exception) argument
279 DeleteImageProperty(Image *image, const char *property) argument
354 FormatImageProperty(Image *image, const char *property,const char *format,...) argument
825 GetEXIFProperty(const Image *image, const char *property,ExceptionInfo *exception) argument
1640 GetICCProperty(const Image *image,const char *property, ExceptionInfo *exception) argument
1710 GetXMPProperty(const Image *image,const char *property) argument
2169 GetImageProperty(const Image *image, const char *property,ExceptionInfo *exception) argument
2735 GetMagickProperty(ImageInfo *image_info, Image *image,const char *property,ExceptionInfo *exception) argument
3854 RemoveImageProperty(Image *image,const char *property) argument
3938 SetImageProperty(Image *image, const char *property,const char *value,ExceptionInfo *exception) argument
[all...]
/external/ImageMagick/coders/
H A Ddpx.c64 #include "MagickCore/property.h"
824 property[MagickPathExtent];
840 (void) FormatLocaleString(property,MagickPathExtent,
842 (void) FormatImageProperty(image,property,"%s",
1439 const char *property,ExceptionInfo *exception)
1444 value=GetImageArtifact(image,property);
1447 return(GetImageProperty(image,property,exception));
818 property[MagickPathExtent]; local
1429 GetDPXProperty(const Image *image, const char *property,ExceptionInfo *exception) argument
H A Dmsl.c80 #include "MagickCore/property.h"
6026 *property;
6028 property=GetImageProperty(msl_info->attributes[j],"id",
6030 if (LocaleCompare(property,value) == 0)
6044 *property;
6046 property=GetImageProperty(msl_info->attributes[j],"id",
6048 if (LocaleCompare(property,value) == 0)
6020 *property; local
6038 *property; local
H A Dpsd.c73 #include "MagickCore/property.h"
2649 *property;
2840 property=(const char *) GetImageProperty(next_image,"label",exception);
2841 if (property == (const char *) NULL)
2848 layer_length=strlen(property);
2942 property=(const char *) GetImageProperty(next_image,"label",exception);
2943 if (property == (const char *) NULL)
2960 label_length=strlen(property);
2965 WritePascalString(image,property,4);
2641 *property; local
H A Dtiff.c76 #include "MagickCore/property.h"
134 *property;
843 (void) SetImageProperty(image,exif_info[i].property,value,exception);
3045 value=GetImageProperty(image,exif_info[i].property,exception);
133 *property; member in struct:_ExifInfo
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMDocumentImpl.java1770 * standard input, for example), the value of this property is unknown.
1793 * it is not known, the value of this property is unknown.
1811 * either "yes" or "no". This property is derived from the optional
1823 * property is derived from the XML declaration optionally present at the
1849 * it exists. Otherwise this property has no value.
1858 * no external subset or if it has no public identifier, this property
1957 * declaration for the containing element, this property has no value for
1959 * declarations processed] property of the document information item is
1961 * property is unknown for white space characters. It is always false for
1971 * 10. [all declarations processed] This property i
2365 setProperty(String property, Object value) argument
[all...]
/external/clang/lib/AST/
H A DDeclObjC.cpp99 /// property. This is because, user must provide a setter method for the
100 /// category's 'readwrite' property.
122 // declaration of this property. If one found, presumably a setter will
158 // property.
165 // If context is class, then lookup property in its extensions.
166 // This comes before property is looked up in primary class.
180 // If queryKind is unknown, we return the instance property if one
181 // exists; otherwise we return the class property.
195 // We can't find the instance property, return the class property
2009 addPropertyImplementation(ObjCPropertyImplDecl *property) argument
2188 Create(ASTContext &C, DeclContext *DC, SourceLocation atLoc, SourceLocation L, ObjCPropertyDecl *property, Kind PK, ObjCIvarDecl *ivar, SourceLocation ivarLoc) argument
[all...]
/external/clang/lib/Sema/
H A DSemaObjCProperty.cpp1 //===--- SemaObjCProperty.cpp - Semantic Analysis for ObjC @property ------===//
10 // This file implements semantic analysis for Objective C @property and
33 /// getImpliedARCOwnership - Given a set of property attributes and a
55 // property type.
64 /// Check the internal consistency of a property declaration with
67 ObjCPropertyDecl *property) {
68 if (property->isInvalidDecl()) return;
71 = property->getPropertyAttributes();
73 = property->getType().getObjCLifetime();
78 = getImpliedARCOwnership(propertyKind, property
66 checkPropertyDeclWithOwnership(Sema &S, ObjCPropertyDecl *property) argument
707 checkARCPropertyImpl(Sema &S, SourceLocation propertyImplLoc, ObjCPropertyDecl *property, ObjCIvarDecl *ivar) argument
787 setImpliedPropertyAttributeForReadOnlyProperty( ObjCPropertyDecl *property, ObjCIvarDecl *ivar) argument
915 ObjCPropertyDecl *property = nullptr; local
1490 DiagnosePropertyAccessorMismatch(ObjCPropertyDecl *property, ObjCMethodDecl *GetterMethod, SourceLocation Loc) argument
1916 const auto *property = propertyImpl->getPropertyDecl(); local
2144 ProcessPropertyDecl(ObjCPropertyDecl *property) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/59/1/.cp/
H A DjdtCompilerAdapter.jar ... tools.ant.Task { private String file private String property public void " href="/8.0.0_r4/s? ...
/external/emma/lib/
H A Demma_ant.jar ... createProperty () com.vladium.emma.ant.PropertyElement property public com.vladium.util.IProperties getFileSettings () java ...
/external/google-breakpad/src/testing/gtest/src/
H A Dgtest-internal-inl.h352 // Returns true iff the test name of test property matches on key_.
1039 const TestProperty& property) {
1040 test_result->RecordProperty(property);
1038 RecordProperty(TestResult* test_result, const TestProperty& property) argument
/external/googletest/googletest/src/
H A Dgtest-internal-inl.h354 // Returns true iff the test name of test property matches on key_.
712 // context of a test or a test case, or to the global property set. If the
713 // result already contains a property with the same key, the value will be
1018 const TestProperty& property) {
1019 test_result->RecordProperty(xml_element, property);
1016 RecordProperty(TestResult* test_result, const std::string& xml_element, const TestProperty& property) argument
/external/libdrm/
H A Dxf86drmMode.h243 static __inline int drm_property_type_is(drmModePropertyPtr property, argument
247 if (property->flags & DRM_MODE_PROP_EXTENDED_TYPE)
248 return (property->flags & DRM_MODE_PROP_EXTENDED_TYPE) == type;
249 return property->flags & type;
301 uint32_t *props; /**< List of property ids */
302 uint64_t *prop_values; /**< List of property values */
/external/libusb/libusb/os/
H A Ddarwin_usb.c242 static int get_ioregistry_value_number (io_service_t service, CFStringRef property, CFNumberType type, void *p) { argument
243 CFTypeRef cfNumber = IORegistryEntryCreateCFProperty (service, property, kCFAllocatorDefault, 0);
257 static int get_ioregistry_value_data (io_service_t service, CFStringRef property, ssize_t size, void *p) { argument
258 CFTypeRef cfData = IORegistryEntryCreateCFProperty (service, property, kCFAllocatorDefault, 0);
/external/libvpx/libvpx/third_party/googletest/src/src/
H A Dgtest-internal-inl.h354 // Returns true iff the test name of test property matches on key_.
712 // context of a test or a test case, or to the global property set. If the
713 // result already contains a property with the same key, the value will be
1018 const TestProperty& property) {
1019 test_result->RecordProperty(xml_element, property);
1016 RecordProperty(TestResult* test_result, const std::string& xml_element, const TestProperty& property) argument
/external/llvm/utils/unittest/googletest/src/
H A Dgtest-internal-inl.h348 // Returns true iff the test name of test property matches on key_.
1024 const TestProperty& property) {
1025 test_result->RecordProperty(property);
1023 RecordProperty(TestResult* test_result, const TestProperty& property) argument
/external/lzma/CPP/7zip/UI/Common/
H A DUpdate.cpp965 CProperty property; local
966 property.Name = L"rsfx";
967 property.Value = L"on";
968 options.MethodMode.Properties.Add(property);
/external/mdnsresponder/mDNSShared/
H A Ddnssd_clientstub.c1076 DNSServiceErrorType DNSSD_API DNSServiceGetProperty(const char *property, void *result, uint32_t *size) argument
1079 size_t len = strlen(property) + 1;
1090 put_string(property, &ptr);
1101 if (!strcmp(property, kDNSServiceProperty_DaemonVersion) && *size >= 4)
/external/mesa3d/src/gallium/drivers/r600/
H A Dr600_shader.c1169 struct tgsi_full_property *property; local
1320 property = &ctx.parse.FullToken.FullProperty;
1321 switch (property->Property.PropertyName) {
1323 if (property->u[0].Data == 1)
1327 if (property->u[0].Data == 1)
/external/mesa3d/src/gtest/src/
H A Dgtest-internal-inl.h345 // Returns true iff the test name of test property matches on key_.
1021 const TestProperty& property) {
1022 test_result->RecordProperty(property);
1020 RecordProperty(TestResult* test_result, const TestProperty& property) argument
/external/protobuf/gtest/src/
H A Dgtest-internal-inl.h334 // Returns true iff the test name of test property matches on key_.
1057 const TestProperty& property) {
1058 test_result->RecordProperty(property);
1056 RecordProperty(TestResult* test_result, const TestProperty& property) argument
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
H A DInCallServiceImpl.java1404 public static String getCallPropertyString(int property) { argument
1406 switch (property) {
1433 for (int property : propertyConstants) {
1434 if ((properties & property) == property) {
1435 propertyList.add(getCallPropertyString(property));

Completed in 915 milliseconds

1234567891011>>