HomeSort by relevance Sort by last modified time
    Searched refs:property (Results 1 - 25 of 3252) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/PCH/
objc_property.h 10 @property int value;
11 @property float percentage;
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/
MethodProperty.java 24 * A <code>MethodProperty</code> is a <code>Property</code> which is accessed
33 private final PropertyDescriptor property; field in class:MethodProperty
37 public MethodProperty(PropertyDescriptor property) {
38 super(property.getName(), property.getPropertyType(),
39 property.getReadMethod() == null ? null : property.getReadMethod()
41 this.property = property;
42 this.readable = property.getReadMethod() != null
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/backends/
codepen_credentials_backend.py 11 @property
16 @property
20 @property
24 @property
28 @property
35 @property
39 @property
google_credentials_backend.py 11 @property
16 @property
20 @property
28 @property
32 @property
36 @property
44 @property
facebook_credentials_backend.py 11 @property
17 @property
21 @property
25 @property
29 @property
33 @property
40 @property
44 @property
  /external/jacoco/org.jacoco.ant/src/org/jacoco/ant/
AgentTask.java 22 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) {
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 == null || property.length() == 0)
    [all...]
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/
ARDJoinResponse+Internal.h 6 * tree. An additional intellectual property rights grant can be found
15 @property(nonatomic, assign) ARDJoinResultType result;
16 @property(nonatomic, assign) BOOL isInitiator;
17 @property(nonatomic, strong) NSString *roomId;
18 @property(nonatomic, strong) NSString *clientId;
19 @property(nonatomic, strong) NSArray *messages;
20 @property(nonatomic, strong) NSURL *webSocketURL;
21 @property(nonatomic, strong) NSURL *webSocketRestURL;
ARDJoinResponse.h 6 * tree. An additional intellectual property rights grant can be found
22 @property(nonatomic, readonly) ARDJoinResultType result;
23 @property(nonatomic, readonly) BOOL isInitiator;
24 @property(nonatomic, readonly) NSString *roomId;
25 @property(nonatomic, readonly) NSString *clientId;
26 @property(nonatomic, readonly) NSArray *messages;
27 @property(nonatomic, readonly) NSURL *webSocketURL;
28 @property(nonatomic, readonly) NSURL *webSocketRestURL;
ARDAppClient+Internal.h 6 * tree. An additional intellectual property rights grant can be found
26 @property(nonatomic, strong) id<ARDRoomServerClient> roomServerClient;
27 @property(nonatomic, strong) id<ARDSignalingChannel> channel;
28 @property(nonatomic, strong) id<ARDSignalingChannel> loopbackChannel;
29 @property(nonatomic, strong) id<ARDTURNClient> turnClient;
31 @property(nonatomic, strong) RTCPeerConnection *peerConnection;
32 @property(nonatomic, strong) RTCPeerConnectionFactory *factory;
33 @property(nonatomic, strong) NSMutableArray *messageQueue;
35 @property(nonatomic, assign) BOOL isTurnComplete;
36 @property(nonatomic, assign) BOOL hasReceivedSdp
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
StandardSystemPropertyTest.java 29 for (StandardSystemProperty property : StandardSystemProperty.values()) {
30 String fieldName = property.name();
32 assertEquals(expected, property.key());
37 for (StandardSystemProperty property : StandardSystemProperty.values()) {
38 assertEquals(System.getProperty(property.key()), property.value());
43 for (StandardSystemProperty property : StandardSystemProperty.values()) {
44 assertEquals(property.key() + "=" + property.value(), property.toString())
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/
PropertyManager.java 11 package org.eclipse.wb.internal.core.model.property;
13 import org.eclipse.wb.internal.core.model.property.category.PropertyCategory;
17 * {@link PropertyManager} is used to get/set attributes of {@link Property}.
20 * @coverage core.model.property
23 public static PropertyCategory getCategory(Property property) {
27 return property.getCategory();
31 * @return the forced {@link PropertyCategory} of given Property, may be <code>null</code>.
33 public static PropertyCategory getCategoryForced(Property property) {
    [all...]
  /external/dtc/tests/
overlay_base.dts 12 test-int-property = <42>;
13 test-str-property = "foo";
16 sub-test-property;
overlay_overlay_simple.dts 11 test-int-property = <43>;
  /packages/services/Car/car-lib/src/android/car/hardware/property/
CarPropertyEvent.aidl 17 package android.car.hardware.property;
ICarPropertyEventListener.aidl 17 package android.car.hardware.property;
19 import android.car.hardware.property.CarPropertyEvent;
  /packages/services/Car/service/src/com/android/car/hal/
PropertyTimeoutException.java 23 * usually happens during boot-up meaning that Vehicle HAL is not ready to get or set that property.
26 PropertyTimeoutException(int property) {
27 super("Property 0x" + toHexString(property) + " is not ready yet.");
  /external/webrtc/talk/app/webrtc/objc/public/
RTCI420Frame.h 33 @property(nonatomic, readonly) NSUInteger width;
34 @property(nonatomic, readonly) NSUInteger height;
35 @property(nonatomic, readonly) NSUInteger chromaWidth;
36 @property(nonatomic, readonly) NSUInteger chromaHeight;
37 @property(nonatomic, readonly) NSUInteger chromaSize;
39 @property(nonatomic, readonly) const uint8_t* yPlane;
40 @property(nonatomic, readonly) const uint8_t* uPlane;
41 @property(nonatomic, readonly) const uint8_t* vPlane;
42 @property(nonatomic, readonly) NSInteger yPitch;
43 @property(nonatomic, readonly) NSInteger uPitch
    [all...]
RTCDataChannel.h 34 @property(nonatomic) BOOL isOrdered;
37 @property(nonatomic) NSInteger maxRetransmitTimeMs;
39 @property(nonatomic) NSInteger maxRetransmits;
42 @property(nonatomic) BOOL isNegotiated;
44 @property(nonatomic) NSInteger streamId;
46 @property(nonatomic) NSString* protocol;
53 @property(nonatomic, readonly) NSData* data;
54 @property(nonatomic, readonly) BOOL isBinary;
97 @property(nonatomic, readonly) NSString* label;
98 @property(nonatomic, readonly) BOOL isReliable
    [all...]
  /external/webrtc/webrtc/api/objc/
RTCVideoFrame.h 6 * tree. An additional intellectual property rights grant can be found
18 @property(nonatomic, readonly) size_t width;
21 @property(nonatomic, readonly) size_t height;
22 @property(nonatomic, readonly) size_t chromaWidth;
23 @property(nonatomic, readonly) size_t chromaHeight;
24 @property(nonatomic, readonly) size_t chromaSize;
26 @property(nonatomic, readonly, nullable) const uint8_t *yPlane;
27 @property(nonatomic, readonly, nullable) const uint8_t *uPlane;
28 @property(nonatomic, readonly, nullable) const uint8_t *vPlane;
29 @property(nonatomic, readonly) int32_t yPitch
    [all...]
  /external/apache-harmony/support/src/test/java/tests/support/
Support_PlatformFile.java 26 String property = System.getProperty("com.ibm.oti.configuration"); local
27 if (property == null) {
28 property = "JDK";
30 platformId = property
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/complex/
IComplexPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor.complex;
13 import org.eclipse.wb.internal.core.model.property.Property;
14 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
20 * @coverage core.model.property.editor
24 * @return sub-properties of given complex property.
26 Property[] getProperties(Property property) throws Exception;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/category/
PropertyCategoryProviders.java 11 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();
35 * Returns result of {@link Property#getCategory()}, never <code>null</code>.
42 public PropertyCategory getCategory(Property property)
    [all...]
  /external/compiler-rt/test/BlocksRuntime/
testfilerunner.h 67 @property int options;
68 @property(assign) NSPointerArray *compileLine;
69 @property(assign) TestFileExeGenerator *generator;
70 @property bool shouldFail;
71 @property __strong char *binaryName;
72 @property __strong char *sourceName;
73 @property __strong char *libraryPath;
74 @property __strong char *frameworkPath;
77 @property(readonly) __strong char *radar;
99 @property bool hasObjC, hasRR, hasGC, hasCPlusPlus, wantsC99, supposedToNotCompile, open, wants32, wants64
    [all...]
  /system/bt/btcore/src/
property.cc 19 #include "btcore/include/property.h"
60 // property's `len` field. We special-case the equivalence of BDNAME
120 void property_free(bt_property_t* property) {
121 property_free_array(property, 1);
134 bool property_is_addr(const bt_property_t* property) {
135 CHECK(property != NULL);
136 return property->type == BT_PROPERTY_BDADDR;
139 bool property_is_device_class(const bt_property_t* property) {
140 CHECK(property != NULL);
141 return property->type == BT_PROPERTY_CLASS_OF_DEVICE
220 bt_property_t* property = local
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
StringComboPropertyEditor.java 11 package org.eclipse.wb.internal.core.model.property.editor;
14 import org.eclipse.wb.internal.core.model.property.Property;
20 * @coverage core.model.property.editor
40 protected String getText(Property property) throws Exception {
41 return (String) property.getValue();
50 protected void addItems(Property property, CCombo3 combo) throws Exception {
57 protected void selectItem(Property property, CCombo3 combo) throws Exception
    [all...]

Completed in 1609 milliseconds

1 2 3 4 5 6 7 8 91011>>