/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/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/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>;
|
overlay_base_manual_symbols.dts | 13 test-int-property = <42>; 14 test-str-property = "foo"; 17 sub-test-property;
|
/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/walt/ios/WALT/ |
WALTTouch.h | 21 @property (nonatomic, assign) UITouchPhase phase; 22 @property (nonatomic, assign) NSTimeInterval physicalTime; 23 @property (nonatomic, assign) NSTimeInterval kernelTime; 24 @property (nonatomic, assign) NSTimeInterval callbackTime; 25 @property (nonatomic, assign) CGPoint location;
|
/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...] |
/external/javaparser/javaparser-core-generators/src/main/java/com/github/javaparser/generator/core/visitor/ |
ModifierVisitorGenerator.java | 27 for (PropertyMetaModel property : node.getAllPropertyMetaModels()) { 28 if (property.isNode()) { 29 if (property.isNodeList()) { 31 property.getTypeNameGenerified(), 32 property.getName(), 33 property.getGetterMethodName())); 34 } else if (property.isOptional()) { 36 property.getTypeNameGenerified(), 37 property.getName(), 38 property.getGetterMethodName() [all...] |
/system/bt/btcore/src/ |
property.cc | 19 #include "btcore/include/property.h" 61 // 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 219 bt_property_t* property = local [all...] |
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/changes/ |
PropertyChange.java | 7 * The change in value of a property. 10 private final ObservableProperty property; field in class:PropertyChange 15 return property; 26 public PropertyChange(ObservableProperty property, Object oldValue, Object newValue) { 27 this.property = property; 33 public Object getValue(ObservableProperty property, Node node) { 34 if (property == this.property) { 37 return property.getRawValue(node) [all...] |
/external/protobuf/objectivec/ |
GPBDescriptor.h | 56 @property(nonatomic, readonly, copy) NSString *name; 57 @property(nonatomic, readonly, strong, nullable) NSArray<GPBFieldDescriptor*> *fields; 58 @property(nonatomic, readonly, strong, nullable) NSArray<GPBOneofDescriptor*> *oneofs; 59 @property(nonatomic, readonly, nullable) const GPBExtensionRange *extensionRanges; 60 @property(nonatomic, readonly) uint32_t extensionRangesCount; 61 @property(nonatomic, readonly, assign) GPBFileDescriptor *file; 63 @property(nonatomic, readonly, getter=isWireFormat) BOOL wireFormat; 64 @property(nonatomic, readonly) Class messageClass; 74 @property(nonatomic, readonly, copy) NSString *package; 75 @property(nonatomic, readonly) GPBFileSyntax syntax [all...] |
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/concretesyntaxmodel/ |
CsmSingleReference.java | 30 private final ObservableProperty property; field in class:CsmSingleReference 33 return property; 36 public CsmSingleReference(ObservableProperty property) { 37 this.property = property; 42 Node child = property.getValueAsSingleReference(node);
|
CsmString.java | 29 private final ObservableProperty property; field in class:CsmString 31 public CsmString(ObservableProperty property) { 32 this.property = property; 38 printer.print(property.getValueAsStringAttribute(node)); 44 return String.format("CsmString(property:%s)", property);
|