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>;