HomeSort by relevance Sort by last modified time
    Searched refs:property (Results 51 - 75 of 3780) sorted by null

1 23 4 5 6 7 8 91011>>

  /hardware/qcom/display/msm8084/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/msm8226/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/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/msm8994/libqdutils/
comptype.h 65 char property[PROPERTY_VALUE_MAX]; local
67 if (property_get("debug.composition.type", property, "gpu") > 0) {
68 if ((strncmp(property, "mdp", 3)) == 0) {
70 } else if ((strncmp(property, "c2d", 3)) == 0) {
72 } else if ((strncmp(property, "dyn", 3)) == 0) {
  /libcore/ojluni/src/main/java/sun/security/util/
AbstractAlgorithmConstraints.java 46 // Get algorithm constraints from the specified security property.
48 String property = AccessController.doPrivileged( local
58 if (property != null && !property.isEmpty()) {
59 // remove double quote marks from beginning/end of the property
60 if (property.length() >= 2 && property.charAt(0) == '"' &&
61 property.charAt(property.length() - 1) == '"') {
62 property = property.substring(1, property.length() - 1)
    [all...]
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/
VCardEntryTests.java 113 VCardProperty property = new VCardProperty(); local
114 property.setName(VCardConstants.PROPERTY_N);
115 property.setValues("test1");
116 entryConstructor.onPropertyCreated(property);
119 property = new VCardProperty();
120 property.setName(VCardConstants.PROPERTY_N);
121 property.setValues("test2");
122 entryConstructor.onPropertyCreated(property);
125 property = new VCardProperty();
126 property.setName(VCardConstants.PROPERTY_TEL)
206 VCardProperty property = new VCardProperty(); local
317 VCardProperty property = new VCardProperty(); local
340 VCardProperty property = new VCardProperty(); local
    [all...]
  /external/javaparser/javaparser-core-generators/src/main/java/com/github/javaparser/generator/core/node/
RemoveMethodGenerator.java 33 for (PropertyMetaModel property : nodeMetaModel.getDeclaredPropertyMetaModels()) {
34 if (!property.isNode()) {
38 if (property.isNodeList()) {
39 check = nodeListCheck(property);
41 if (property.isRequired()) {
44 String removeAttributeMethodName = generateRemoveMethodForAttribute(nodeCoid, nodeMetaModel, property);
45 check = attributeCheck(property, removeAttributeMethodName);
47 if (property.isOptional()) {
48 check = f("if (%s != null) { %s }", property.getName(), check);
61 private String attributeCheck(PropertyMetaModel property, String removeAttributeMethodName)
    [all...]
  /system/bt/btcore/test/
property_test.cc 23 #include "btcore/include/property.h"
31 bt_property_t* property = property_new_addr(&addr0); local
33 EXPECT_EQ(addr0.address[0], ((uint8_t*)property->val)[0]);
34 EXPECT_EQ(addr0.address[1], ((uint8_t*)property->val)[1]);
35 EXPECT_EQ(addr0.address[2], ((uint8_t*)property->val)[2]);
36 EXPECT_EQ(addr0.address[3], ((uint8_t*)property->val)[3]);
37 EXPECT_EQ(addr0.address[4], ((uint8_t*)property->val)[4]);
38 EXPECT_EQ(addr0.address[5], ((uint8_t*)property->val)[5]);
39 EXPECT_EQ(BT_PROPERTY_BDADDR, property->type);
40 EXPECT_EQ((int)sizeof(RawAddress), property->len)
50 bt_property_t* property = property_new_device_class(&dc0); local
67 bt_property_t* property = property_new_device_type(dt0); local
81 bt_property_t* property = property_new_discovery_timeout(timeout0); local
95 bt_property_t* property = property_new_name(name0); local
109 bt_property_t* property = property_new_rssi(rssi0); local
123 bt_property_t* property = property_new_scan_mode(mode0); local
140 bt_property_t* property = property_new_uuids(&uuid0, 1); local
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRDFA.h 71 @property const int *eot;
72 @property const int *eof;
73 @property const unichar *min;
74 @property const unichar *max;
75 @property const int *accept;
76 @property const int *special;
77 @property const int **transition;
79 @property (retain, getter=getRecognizer,setter=setRecognizer:) ANTLRBaseRecognizer *recognizer;
80 @property (assign, getter=getDecision,setter=setDecision:) NSInteger decisionNumber;
81 @property (assign, getter=getLen,setter=setLen:) NSInteger len
    [all...]
ANTLRStreamEnumerator.h 45 @property NSInteger i;
46 @property (retain) id eof;
47 @property (retain) AMutableArray *nodes;
  /hardware/interfaces/bluetooth/1.0/default/
bluetooth_address.cc 47 char property[PROPERTY_VALUE_MAX] = {0}; local
49 // Get local bdaddr storage path from a system property.
50 if (property_get(PROPERTY_BT_BDADDR_PATH, property, NULL)) {
51 ALOGD("%s: Trying %s", __func__, property);
53 int addr_fd = open(property, O_RDONLY);
58 ALOGE("%s: Error reading address from %s: %s", __func__, property,
73 ALOGE("%s: Got Invalid BDA '%s' from %s", __func__, address, property);
78 // No BDADDR found in the file. Look for BDA in a factory property.
79 if (property_get(FACTORY_BDADDR_PROPERTY, property, NULL) &&
80 string_to_bytes(property, local_addr))
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/model/
PropertiesTableModel.java 26 private List<ViewNode.Property> properties;
27 private List<ViewNode.Property> privateProperties = new ArrayList<ViewNode.Property>();
44 ViewNode.Property property = new ViewNode.Property(); local
45 property.name = "absolute_x";
46 property.value = String.valueOf(x);
47 privateProperties.add(property);
49 property = new ViewNode.Property()
63 ViewNode.Property property; local
    [all...]
  /external/protobuf/objectivec/
GPBUnknownField.h 44 @property(nonatomic, readonly, assign) int32_t number;
47 @property(nonatomic, readonly, strong) GPBUInt64Array *varintList;
50 @property(nonatomic, readonly, strong) GPBUInt32Array *fixed32List;
53 @property(nonatomic, readonly, strong) GPBUInt64Array *fixed64List;
56 @property(nonatomic, readonly, strong) NSArray<NSData*> *lengthDelimitedList;
59 @property(nonatomic, readonly, strong) NSArray<GPBUnknownFieldSet*> *groupList;
  /libcore/ojluni/src/main/java/javax/sql/
RowSetMetaData.java 64 * @param property <code>true</code> if the column is automatically
69 void setAutoIncrement(int columnIndex, boolean property) throws SQLException;
76 * @param property <code>true</code> if the column is case sensitive;
81 void setCaseSensitive(int columnIndex, boolean property) throws SQLException;
88 * @param property <code>true</code> if the column can be used in a
93 void setSearchable(int columnIndex, boolean property) throws SQLException;
100 * @param property <code>true</code> if the column is a cash value;
105 void setCurrency(int columnIndex, boolean property) throws SQLException;
113 * @param property one of the following constants:
120 void setNullable(int columnIndex, int property) throws SQLException
    [all...]
  /packages/services/Car/tests/android_car_api_test/src/android/car/apitest/
CarCabinManagerTest.java 47 for (CarPropertyConfig property : properties) {
48 if (supportedTypes.contains(property.getPropertyType())) {
49 assertTypeAndZone(property);
51 fail("Type is not supported for " + property);
56 private void assertTypeAndZone(CarPropertyConfig property) {
57 int propId = property.getPropertyId();
65 assertEquals(Boolean.class, property.getPropertyType());
66 assertFalse(property.isGlobalProperty());
104 assertEquals(Integer.class, property.getPropertyType());
105 assertFalse(property.isGlobalProperty())
    [all...]
  /external/dtc/tests/
overlay_overlay_manual_fixups.dts 20 test-int-property = <43>;
29 test-str-property = "foobar";
33 /* Test that we add a new property */
38 test-str-property-2 = "foobar2";
48 new-property;
58 new-property;
84 new-sub-test-property;
  /external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/
InvokeDynamic.java 15 String property = System.getProperty(ENABLE_INVOKEDYNAMIC); local
16 if (property != null) {
17 return Boolean.valueOf(property);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/introspector/
MethodPropertyTest.java 29 for (PropertyDescriptor property : Introspector.getBeanInfo(TestBean1.class)
31 if (property.getName().equals("text")) {
32 MethodProperty prop = new MethodProperty(property);
  /external/toybox/toys/android/
start.c 34 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);
  /external/walt/ios/WALT/
DragLatencyController.h 20 @property (assign, nonatomic) IBOutlet UILabel *countLabel;
21 @property (assign, nonatomic) IBOutlet UILabel *statusLabel;
22 @property (assign, nonatomic) IBOutlet UIView *goalpostView;
  /external/webrtc/talk/app/webrtc/objc/public/
RTCICECandidate.h 36 @property(nonatomic, copy, readonly) NSString* sdpMid;
40 @property(nonatomic, assign, readonly) NSInteger sdpMLineIndex;
43 @property(nonatomic, copy, readonly) NSString* sdp;
RTCICEServer.h 34 @property(nonatomic, strong, readonly) NSURL* URI;
35 @property(nonatomic, copy, readonly) NSString* username;
36 @property(nonatomic, copy, readonly) NSString* password;
  /external/webrtc/webrtc/api/objc/
RTCIceCandidate.h 6 * tree. An additional intellectual property rights grant can be found
21 @property(nonatomic, readonly, nullable) NSString *sdpMid;
27 @property(nonatomic, readonly) NSInteger sdpMLineIndex;
30 @property(nonatomic, readonly) NSString *sdp;
  /frameworks/support/transition/src/main/java/androidx/transition/
PropertyValuesHolderUtils.java 23 import android.util.Property;
28 * Constructs and returns a PropertyValuesHolder with a given property and
33 * @param property The property being animated. Should not be null.
37 static PropertyValuesHolder ofPointF(Property<?, PointF> property, Path path) {
39 return PropertyValuesHolder.ofObject(property, null, path);
41 return PropertyValuesHolder.ofFloat(new PathProperty<>(property, path), 0f, 1f);
  /bionic/libc/bionic/
icu_wrappers.cpp 37 int32_t __icu_getIntPropertyValue(wint_t wc, UProperty property) {
41 return u_getIntPropertyValue ? u_getIntPropertyValue(wc, property) : 0;
44 bool __icu_hasBinaryProperty(wint_t wc, UProperty property, int (*fallback)(int)) {
48 return u_hasBinaryProperty ? u_hasBinaryProperty(wc, property) : fallback(wc);

Completed in 1003 milliseconds

1 23 4 5 6 7 8 91011>>