/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
ANTLRBaseTree.h | 31 @property (retain, getter=getChildren, setter=setChildren) NSMutableArray *children; 104 @property (retain, getter=getChildren, setter=setChildren) NSMutableArray *children;
|
ANTLRTreeWizard.h | 67 @property (retain, getter=getLabel, setter=setLabel:) NSString *label; 68 @property (assign, getter=getHasTextArg, setter=setHasTextArg:) BOOL hasTextArg;
|
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
tokens.py | 238 text = property(getText, setText) 250 typeName = property(lambda s: s.getTypeName())
|
/external/autotest/client/cros/cellular/wardmodem/ |
at_channel.py | 93 @property 113 @property
|
/external/autotest/client/cros/networking/ |
shill_context.py | 44 # The EnabledTechologies property is an array of strings of technology 51 # The ProhibitedTechnologies property is a comma-separated string of 71 # Setting the ProhibitedTechnologies property will disable those 99 """A context manager for overriding a service's 'AutoConnect' property. 113 # Within this context, the 'AutoConnect' property of the service 115 # initially set to True. The property is restored to its initial 130 # Always set the AutoConnect property even if the requested value 131 # is the same so that shill will retain the AutoConnect property, else 174 @property 176 """AutoConnect property value within this context."" [all...] |
/external/autotest/client/deps/lansim/src/py/ |
host.py | 60 @property 66 @property
|
tuntap.py | 183 addr = property(get_addr, set_addr) 211 hwaddr = property(get_hwaddr, set_hwaddr)
|
/external/autotest/scheduler/ |
drones.py | 48 # If drone supports server-side packaging. The property support_ssp will 58 @property 156 @property
|
/external/chromium-trace/catapult/devil/devil/android/ |
app_ui.py | 48 @property 178 @property
|
logcat_monitor.py | 58 @property 261 @property
|
/external/devlib/devlib/module/ |
hwmon.py | 75 @property 127 @property
|
/external/dtc/ |
flattree.c | 57 void (*property)(void *, struct label *labels); member in struct:emitter 114 .property = bin_emit_property, 232 .property = asm_emit_property, 254 struct property *prop; 278 emit->property(etarget, prop->labels); 290 emit->property(etarget, NULL); 678 static struct property *flat_read_property(struct inbuf *dtbuf, 763 struct property *prop; 771 "subnodes preceding a property.\n");
|
treesource.c | 195 static void write_propval(FILE *f, struct property *prop) 238 struct property *prop;
|
/external/google-breakpad/src/testing/include/gmock/ |
gmock-spec-builders.h | 261 // Asserts that the ON_CALL() statement has a certain property. 262 void AssertSpecProperty(bool property, const string& failure_message) const { 263 Assert(property, file_, line_, failure_message); 266 // Expects that the ON_CALL() statement has a certain property. 267 void ExpectSpecProperty(bool property, const string& failure_message) const { 268 Expect(property, file_, line_, failure_message); 732 // Asserts that the EXPECT_CALL() statement has the given property. 733 void AssertSpecProperty(bool property, const string& failure_message) const { 734 Assert(property, file_, line_, failure_message); 737 // Expects that the EXPECT_CALL() statement has the given property [all...] |
/external/googletest/googlemock/include/gmock/ |
gmock-spec-builders.h | 264 // Asserts that the ON_CALL() statement has a certain property. 265 void AssertSpecProperty(bool property, 267 Assert(property, file_, line_, failure_message); 270 // Expects that the ON_CALL() statement has a certain property. 271 void ExpectSpecProperty(bool property, 273 Expect(property, file_, line_, failure_message); 740 // Asserts that the EXPECT_CALL() statement has the given property. 741 void AssertSpecProperty(bool property, 743 Assert(property, file_, line_, failure_message); 746 // Expects that the EXPECT_CALL() statement has the given property [all...] |
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/body/ |
VariableDeclarator.java | 111 // We register an observer on the type property. When it is changed the MaximumCommonType is changes as well, 116 public void propertyChange(Node observedNode, ObservableProperty property, Object oldValue, Object newValue) { 117 if (property == ObservableProperty.TYPE) { 121 // We calculate the value the property will assume after the change will be completed
|
/external/libmojo/mojo/public/tools/bindings/pylib/mojom/generate/ |
module.py | 146 """Adds a property |name| to |cls|, which accesses the corresponding item in 162 setattr(cls, name, property(Get, Set)) 284 @property 506 @property 542 @property 547 @property 585 @property 613 @property 639 @property
|
/external/libmojo/third_party/catapult/devil/devil/android/ |
app_ui.py | 48 @property 178 @property
|
logcat_monitor.py | 51 @property 239 @property
|
/external/libvpx/libvpx/test/android/ |
Android.mk | 5 # tree. An additional intellectual property rights grant can be found
|
/external/libvpx/libvpx/vp9/encoder/x86/ |
vp9_dct_sse2.asm | 6 ; tree. An additional intellectual property rights grant can be found
|
/external/protobuf/objectivec/ |
GPBDescriptor_PackagePrivate.h | 232 @property(nonatomic, readonly) GPBWireFormat wireType; 235 // value for the packable property. i.e. - if the extension was marked packed 238 @property(nonatomic, readonly) GPBWireFormat alternateWireType; 268 // value for the packable property. i.e. - if the field was marked packed it
|
/external/python/cpython2/Lib/test/ |
pydocfodder.py | 112 "A property getter function." 114 "A property setter function." 116 "A property deleter function." 117 A_property = property(fdel=_delx, fget=_getx, fset=_setx, 118 doc="A sample property defined in A.") 186 Property getters etc may not be vanilla functions or methods, 212 x = property(get_desc('x'), set_desc('x'), del_desc('x'), 'prop x')
|
/external/python/cpython3/Lib/test/ |
pydocfodder.py | 112 "A property getter function." 114 "A property setter function." 116 "A property deleter function." 117 A_property = property(fdel=_delx, fget=_getx, fset=_setx, 118 doc="A sample property defined in A.") 186 Property getters etc may not be vanilla functions or methods, 212 x = property(get_desc('x'), set_desc('x'), del_desc('x'), 'prop x')
|
/external/skia/infra/bots/recipe_modules/flavor/ |
gn_chromecast_flavor.py | 35 @property 50 @property
|