HomeSort by relevance Sort by last modified time
    Searched defs:property (Results 251 - 275 of 1117) sorted by null

<<11121314151617181920>>

  /prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.4.201502262128/
org.jacoco.ant-0.7.4.201502262128.jar 
  /prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.5.201505241946/
org.jacoco.ant-0.7.5.201505241946.jar 
  /prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.ant/0.7.6.201602180812/
org.jacoco.ant-0.7.6.201602180812.jar 
  /external/guice/extensions/persist/lib/
hibernate-annotations.jar 
  /external/clang/lib/Sema/
SemaObjCProperty.cpp 1 //===--- 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->getType())
904 ObjCPropertyDecl *property = nullptr; local
1864 const auto *property = propertyImpl->getPropertyDecl(); local
    [all...]
  /external/conscrypt/src/main/java/org/conscrypt/
SSLParametersImpl.java 109 // client-side only, bypasses the property based configuration, used for tests
1140 String property = Security.getProperty("conscrypt.ct.enable"); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/59/1/.cp/
jdtCompilerAdapter.jar 
  /external/emma/lib/
emma_ant.jar 
  /external/mesa3d/src/gallium/drivers/r600/
r600_shader.c 1169 struct tgsi_full_property *property; local
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
EmitUtils.java 842 String property = TypeUtils.upperFirst(name); local
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
CssSchema.java 42 /** Describes the kinds of tokens a CSS property's value can safely contain. */
46 static final class Property {
56 private Property(
73 static final Property DISALLOWED = new Property(
76 private final ImmutableMap<String, Property> properties;
78 private CssSchema(ImmutableMap<String, Property> properties) {
86 * @param propertyNames a series of lower-case CSS property names that appear
88 * property name. This class's {@code main} method will dump a list of
89 * known property names when run with zero arguments
130 Property property = properties.get(propertyName); local
    [all...]
  /external/v8/src/full-codegen/
full-codegen.cc 914 void FullCodeGenerator::EmitPropertyKey(ObjectLiteralProperty* property,
916 VisitForStackValue(property->key());
1440 Property* property = callee->AsProperty(); local
1446 Property* property = callee->AsProperty(); local
    [all...]
  /external/v8/src/interpreter/
bytecode-generator.cc 768 Property* property = expr->AsProperty(); local
769 LhsKind assign_type = Property::GetAssignType(property);
780 Register object = VisitForRegisterValue(property->obj());
781 Handle<String> name = property->key()->AsLiteral()->AsPropertyName();
791 Register object = VisitForRegisterValue(property->obj());
792 Register key = VisitForRegisterValue(property->key());
974 ObjectLiteral::Property* property = expr->properties()->at(property_index) local
1087 ObjectLiteral::Property* property = expr->properties()->at(property_index); local
1335 Property* property = expr->target()->AsProperty(); local
1533 Property* property = callee_expr->AsProperty(); local
1719 Property* property = expr->expression()->AsProperty(); local
1777 Property* property = expr->expression()->AsProperty(); local
    [all...]
  /frameworks/base/core/java/android/view/
ViewDebug.java 98 * @return true if the property's value must be transformed into an Android
165 * When deep export is turned on, this property is not dumped. Instead, the
166 * properties contained in this property are dumped. Each child property
167 * is prefixed with the name of this property.
169 * @return true if the properties of this property should be dumped
185 * Specifies the category the property falls into, such as measurement,
1179 final ExportedProperty property = sAnnotations.get(method); local
1264 final ExportedProperty property = sAnnotations.get(field); local
1533 CapturedViewProperty property = method.getAnnotation(CapturedViewProperty.class); local
    [all...]
  /frameworks/base/libs/hwui/
OpenGLRenderer.cpp 88 char property[PROPERTY_VALUE_MAX]; local
89 if (property_get(PROPERTY_DISABLE_SCISSOR_OPTIMIZATION, property, "false")) {
90 mScissorOptimizationDisabled = !strcasecmp(property, "true");
    [all...]
  /frameworks/base/services/accessibility/java/com/android/server/accessibility/
MagnificationController.java 42 import android.util.Property;
758 final MagnificationSpecProperty property = new MagnificationSpecProperty(); local
762 mTransformationAnimator = ObjectAnimator.ofObject(this, property, evaluator,
849 extends Property<SpecAnimationBridge, MagnificationSpec> {
    [all...]
  /hardware/qcom/display/msm8084/libhwcomposer/
hwc_mdpcomp.cpp 113 char property[PROPERTY_VALUE_MAX]; local
116 if((property_get("persist.hwc.mdpcomp.enable", property, NULL) > 0) &&
117 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) ||
118 (!strncasecmp(property,"true", PROPERTY_VALUE_MAX )))) {
123 if((property_get("debug.mdpcomp.mixedmode.disable", property, NULL) > 0) &&
124 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) ||
125 (!strncasecmp(property,"true", PROPERTY_VALUE_MAX )))) {
129 if(property_get("debug.mdpcomp.logs", property, NULL) > 0) {
130 if(atoi(property) != 0)
135 if(property_get("debug.mdpcomp.maxpermixer", property, "-1") > 0)
1421 char property[PROPERTY_VALUE_MAX]; local
    [all...]
hwc_utils.cpp 91 char property[PROPERTY_VALUE_MAX] = {'\0'}; local
93 if (property_get("debug.hwc.fbsize", property, NULL) > 0) {
94 yptr = strcasestr(property,"x");
95 int xres = atoi(property);
271 // Read the system property to determine if downscale feature is enabled.
864 char property[PROPERTY_VALUE_MAX]; local
1302 char property[PROPERTY_VALUE_MAX]; local
    [all...]
  /hardware/qcom/display/msm8226/libhwcomposer/
hwc_mdpcomp.cpp 114 char property[PROPERTY_VALUE_MAX]; local
117 if((property_get("persist.hwc.mdpcomp.enable", property, NULL) > 0) &&
118 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) ||
119 (!strncasecmp(property,"true", PROPERTY_VALUE_MAX )))) {
124 if((property_get("ro.hwc.is_delta_panel", property, NULL) > 0) &&
125 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) ||
126 (!strncasecmp(property,"true", PROPERTY_VALUE_MAX )))) {
132 if((property_get("debug.mdpcomp.mixedmode.disable", property, NULL) > 0) &&
133 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) ||
134 (!strncasecmp(property,"true", PROPERTY_VALUE_MAX ))))
1617 char property[PROPERTY_VALUE_MAX]; local
    [all...]
hwc_utils.cpp 92 char property[PROPERTY_VALUE_MAX] = {'\0'}; local
94 if (property_get("debug.hwc.fbsize", property, NULL) > 0) {
95 yptr = strcasestr(property,"x");
96 int xres_new = atoi(property);
284 // Read the system property to determine if downscale feature is enabled.
829 char property[PROPERTY_VALUE_MAX]; local
889 if (property_get("hw.cabl.yuv", property, NULL) > 0) {
890 if (atoi(property) != 1) {
895 if (property_get("hw.cabl.yuv", property, NULL) > 0) {
896 if (atoi(property) != 0)
1290 char property[PROPERTY_VALUE_MAX]; local
    [all...]
  /hardware/qcom/display/msm8909/libhwcomposer/
hwc_mdpcomp.cpp 116 char property[PROPERTY_VALUE_MAX] = {0}; local
120 (property_get("persist.hwc.mdpcomp.enable", property, NULL) > 0) &&
121 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) ||
122 (!strncasecmp(property,"true", PROPERTY_VALUE_MAX )))) {
127 if((property_get("debug.mdpcomp.mixedmode.disable", property, NULL) > 0) &&
128 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) ||
129 (!strncasecmp(property,"true", PROPERTY_VALUE_MAX )))) {
134 if(property_get("debug.mdpcomp.maxpermixer", property, "-1") > 0) {
135 int val = atoi(property);
151 property_get("persist.mdpcomp.4k2kSplit", property, "0") > 0 &
1941 char property[PROPERTY_VALUE_MAX]; local
    [all...]
  /hardware/qcom/display/msm8994/libhwcomposer/
hwc_mdpcomp.cpp 125 char property[PROPERTY_VALUE_MAX] = {0}; local
129 (property_get("persist.hwc.mdpcomp.enable", property, NULL) > 0) &&
130 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) ||
131 (!strncasecmp(property,"true", PROPERTY_VALUE_MAX )))) {
136 if((property_get("debug.mdpcomp.mixedmode.disable", property, NULL) > 0) &&
137 (!strncmp(property, "1", PROPERTY_VALUE_MAX ) ||
138 (!strncasecmp(property,"true", PROPERTY_VALUE_MAX )))) {
145 if(property_get("persist.hwc.mdpcomp.maxpermixer", property, "-1") > 0) {
146 int val = atoi(property);
151 /* Maximum layers allowed to use MDP on secondary panels. If property
1987 char property[PROPERTY_VALUE_MAX]; local
    [all...]
  /hardware/qcom/msm8960/kernel-headers/linux/
msm_q6vdec.h 309 union vdec_property property; member in struct:vdec_property_info
  /hardware/qcom/msm8960/original-kernel-headers/linux/
msm_q6vdec.h 275 union vdec_property property; member in struct:vdec_property_info
  /hardware/qcom/msm8996/kernel-headers/linux/
msm_q6vdec.h 309 union vdec_property property; member in struct:vdec_property_info

Completed in 1784 milliseconds

<<11121314151617181920>>