/prebuilts/clang/host/linux-x86/clang-4393122/include/clang/AST/ |
CommentCommandList.inc | 88 COMMENT_COMMAND(property)
|
/prebuilts/clang/host/linux-x86/clang-4479392/include/clang/AST/ |
CommentCommandList.inc | 88 COMMENT_COMMAND(property)
|
/prebuilts/clang/host/linux-x86/clang-4579689/include/clang/AST/ |
CommentCommandList.inc | 88 COMMENT_COMMAND(property)
|
/prebuilts/clang/host/linux-x86/clang-4630689/include/clang/AST/ |
CommentCommandList.inc | 88 COMMENT_COMMAND(property)
|
/prebuilts/clang/host/linux-x86/clang-4639204/include/clang/AST/ |
CommentCommandList.inc | 88 COMMENT_COMMAND(property)
|
/prebuilts/clang/host/linux-x86/clang-4691093/include/clang/AST/ |
CommentCommandList.inc | 88 COMMENT_COMMAND(property)
|
/prebuilts/gdb/darwin-x86/lib/python2.7/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')
|
/prebuilts/gdb/linux-x86/lib/python2.7/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')
|
/prebuilts/misc/common/swig/include/2.0.11/python/ |
pythonkw.swg | 95 PYTHONBN(property);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/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')
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/ |
boolcond.py | 57 @property 158 @property
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/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')
|
/prebuilts/tools/common/m2/repository/com/ryanharter/auto/value/auto-value-gson/0.3.2-rc1/ |
auto-value-gson-0.3.2-rc1.jar | |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/ |
FlagXmlPropertyDialog.java | 62 @NonNull XmlProperty property) { 67 mProperty = property;
|
/system/bt/include/hardware/ |
bluetooth.h | 153 /* Bluetooth Adapter and Remote Device property types */ 171 * Data type - Array of bluetooth::Uuid (Array size inferred from property 205 * (Array size inferred from property length). 246 /** Bluetooth Adapter Property data structure */ 294 /* TODO: For the GET/SET property APIs/callbacks, we may need a session 462 /** Get Bluetooth Adapter property of 'type' */ 465 /** Set Bluetooth Adapter property of 'type' */ 469 int (*set_adapter_property)(const bt_property_t* property); 474 /** Get Remote Device property of 'type' */ 478 /** Set Remote Device property of 'type' * [all...] |
/system/core/property_service/libpropertyinfoparser/ |
property_info_parser.cpp | 68 // Binary search the list of children nodes to find a TrieNode for a given property piece. 174 void PropertyInfoArea::GetPropertyInfo(const char* property, const char** context, 178 GetPropertyInfoIndexes(property, &context_index, &type_index);
|
/tools/test/connectivity/acts/framework/acts/controllers/ |
android_device.py | 450 @property 481 @property 487 @property 498 @property 518 @property 527 @property 537 @property 542 @property [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/lang/ |
UCharacter.java | 133 * <li> isUWhiteSpace=UCHAR_WHITE_SPACE: Unicode White_Space property; [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
xmllite.h | 74 UINT property, 78 UINT property, 177 UINT property, 182 UINT property, 282 #define IXmlReader_GetProperty(This,property,value) (This)->lpVtbl->GetProperty(This,property,value) 283 #define IXmlReader_SetProperty(This,property,value) (This)->lpVtbl->SetProperty(This,property,value) 319 static FORCEINLINE HRESULT IXmlReader_GetProperty(IXmlReader* This,UINT property,LONG_PTR *value) { 320 return This->lpVtbl->GetProperty(This,property,value) [all...] |
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/ |
Node.java | 192 * @return comment property 488 * @return true if removed, false if it is a required property of the parent, or if the parent isn't set. 538 public <P> void notifyPropertyChange(ObservableProperty property, P oldValue, P newValue) { 539 this.observers.forEach(o -> o.propertyChange(this, property, oldValue, newValue)); 581 for (PropertyMetaModel property : getMetaModel().getAllPropertyMetaModels()) { 582 if (property.isNodeList()) { 583 NodeList<?> nodeList = (NodeList<?>) property.getValue(this); [all...] |
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/ |
LexicalPreservingPrinter.java | 134 public void concretePropertyChange(Node observedNode, ObservableProperty property, Object oldValue, Object newValue) { 139 if (property == ObservableProperty.RANGE || property == ObservableProperty.COMMENTED_NODE) { 142 if (property == ObservableProperty.COMMENT) { 189 new LexicalDifferenceCalculator().calculatePropertyChange(nodeText, observedNode, property, oldValue, newValue);
|
/external/libjpeg-turbo/doc/html/ |
doxygen.css | 192 -webkit-transition-property: background-color, box-shadow; 194 -moz-transition-property: background-color, box-shadow; 196 -ms-transition-property: background-color, box-shadow; 198 -o-transition-property: background-color, box-shadow; 200 transition-property: background-color, box-shadow; 427 -webkit-transition-property: background-color, box-shadow; 429 -moz-transition-property: background-color, box-shadow; 431 -ms-transition-property: background-color, box-shadow; 433 -o-transition-property: background-color, box-shadow; 435 transition-property: background-color, box-shadow [all...] |
/external/libnl/doc/ |
libnl.css | 187 -webkit-transition-property: background-color, box-shadow; 189 -moz-transition-property: background-color, box-shadow; 191 -ms-transition-property: background-color, box-shadow; 193 -o-transition-property: background-color, box-shadow; 195 transition-property: background-color, box-shadow; 422 -webkit-transition-property: background-color, box-shadow; 424 -moz-transition-property: background-color, box-shadow; 426 -ms-transition-property: background-color, box-shadow; 428 -o-transition-property: background-color, box-shadow; 430 transition-property: background-color, box-shadow [all...] |
/external/python/cpython2/Lib/ |
tempfile.py | 124 @property 571 @property 585 @property 592 @property 614 @property
|
/external/tensorflow/tensorflow/python/debug/wrappers/ |
framework.py | 395 @property 399 @property 403 @property 407 @property 596 @property [all...] |