/external/clang/test/FixIt/ |
fixit-objc.m | 23 @property (copy) NSString *property; 36 t.property = "Foo"; // expected-error {{string literal must be prefixed by '@'}} 49 @property (assign) int y; 52 int f0(Radar7861841 *a) { return a.x; } // expected-error {{property 'x' not found on object of type 'Radar7861841 *'; did you mean to access instance variable 'x'}} 54 int f1(Radar7861841 *a) { return a->y; } // expected-error {{property 'y' found on object of type 'Radar7861841 *'; did you mean to access it with the "." operator?}}
|
/external/clang/test/SemaCXX/ |
MicrosoftExtensions.cpp | 197 __declspec(property(get=GetV)) int V1; 198 __declspec(property(put=SetV)) int V2; 199 __declspec(property(get=GetV, put=SetV_NotExist)) int V3; 200 __declspec(property(get=GetV_NotExist, put=SetV)) int V4; 201 __declspec(property(get=GetV, put=SetV)) int V5; 208 int i = sp.V2; // expected-error{{no getter defined for property 'V2'}} 209 sp.V1 = 12; // expected-error{{no setter defined for property 'V1'}} 210 int j = sp.V4; // expected-error{{no member named 'GetV_NotExist' in 'StructWithProperty'}} expected-error{{cannot find suitable getter for property 'V4'}} 211 sp.V3 = 14; // expected-error{{no member named 'SetV_NotExist' in 'StructWithProperty'}} expected-error{{cannot find suitable setter for property 'V3'}} 223 __declspec(property(get=GetV)) SP1 V [all...] |
/external/doclava/ |
build.xml | 2 <property name="jar.dir" value="build/dist/doclava"/> 3 <property name="jar.file" value="${jar.dir}/doclava.jar"/> 5 <property environment="env"/> 6 <property name="javahome" value="${env.JAVA_HOME}" /> 7 <property name="jsilver" value="lib/jsilver.jar"/> 8 <property name="junit" value="lib/junit-4.8.2.jar"/>
|
/external/lldb/scripts/Python/interface/ |
SBDeclaration.i | 57 if _newclass: file = property(GetFileSpec, None, doc='''A read only property that returns an lldb object that represents the file (lldb.SBFileSpec) for this line entry.''') 60 if _newclass: ling = property(GetLine, None, doc='''A read only property that returns the 1 based line number for this line entry, a return value of zero indicates that no line information is available.''') 63 if _newclass: column = property(GetColumn, None, doc='''A read only property that returns the 1 based column number for this line entry, a return value of zero indicates that no column information is available.''')
|
SBThread.i | 239 if _newclass: id = property(GetThreadID, None, doc='''A read only property that returns the thread ID as an integer.''') 242 if _newclass: idx = property(GetIndexID, None, doc='''A read only property that returns the thread index ID as an integer. Thread index ID values start at 1 and increment as threads come and go and can be used to uniquely identify threads.''') 245 if _newclass: return_value = property(GetStopReturnValue, None, doc='''A read only property that returns an lldb object that represents the return value from the last stop (lldb.SBValue) if we just stopped due to stepping out of a function.''') 248 if _newclass: process = property(GetProcess, None, doc='''A read only property that returns an lldb object that represents the process (lldb.SBProcess) that owns this thread.''') 251 if _newclass: num_frames = property(GetNumFrames, None, doc='''A read only property that returns the number of stack frames in this thread as an integer.''' [all...] |
SBValue.i | 413 '''Helper function for the "SBValue.dynamic" property.''' 417 if _newclass: name = property(GetName, None, doc='''A read only property that returns the name of this value as a string.''') 420 if _newclass: type = property(GetType, None, doc='''A read only property that returns a lldb.SBType object that represents the type for this value.''') 423 if _newclass: size = property(GetByteSize, None, doc='''A read only property that returns the size in bytes of this value.''') 426 if _newclass: is_in_scope = property(IsInScope, None, doc='''A read only property that returns a boolean value that indicates whether this value is currently lexically in scope.''') 430 if _newclass: format = property(GetName, SetFormat, doc='''A read/write property that gets/sets the format used for lldb.SBValue() (…) [all...] |
/external/v8/test/webkit/ |
tostring-exception-in-property-access.js | 27 var target = {"" : "Did not assign to property when setter subscript threw"}; 30 target[toStringThrower] = "Assigned to property on object when subscript threw"; 34 shouldBe('target[""]', "'Did not assign to property when setter subscript threw'"); 36 target[""] = "Did not delete property when subscript threw"; 42 shouldBe('target[""]', "'Did not delete property when subscript threw'"); 47 testFailed('FAIL: Loaded property from object when subscript threw.');
|
/frameworks/base/docs/html/training/transitions/ |
custom-transitions.jd | 10 <li><a href="#CaptureProperties">Capture View Property Values</a></li> 24 however, you have to provide the code that captures property values and generates animations. 27 <p>This lesson teaches you to capture property values and generate animations to create 57 <h2 id="CaptureProperties">Capture View Property Values</h2> 59 <p>Transition animations use the property animation system described in 60 <a href="{@docRoot}guide/topics/graphics/prop-animation.html">Property Animation</a>. Property 61 animations change a view property between a starting and ending value over a specified 63 the property to construct the animation.</p> 65 <p>However, a property animation usually needs only a small subset of all the view's propert [all...] |
/frameworks/base/media/java/android/mtp/ |
MtpPropertyList.java | 38 // list of long int property values (fourth field in quadruplet, when value is integer type) 40 // list of long int property values (fourth field in quadruplet, when value is string type) 53 public void append(int handle, int property, int type, long value) { 59 mPropertyCodes[index] = property; 64 public void append(int handle, int property, String value) { 70 mPropertyCodes[index] = property;
|
/frameworks/data-binding/baseLibrary/src/main/java/android/databinding/ |
Observable.java | 27 * an observed property of the class changes. 29 * The getter for an observable property should be annotated with {@link Bindable}. 49 * The callback that is called by Observable when an observable property has changed. 54 * Called by an Observable whenever an observable property changes. 56 * @param propertyId The BR identifier of the property that has changed. The getter 57 * for this property should be annotated with {@link Bindable}.
|
/libcore/luni/src/main/java/org/xml/sax/ext/ |
Locator2Impl.java | 64 * Returns the current value of the version property. 66 * @return the current value of the version property. 74 * Returns the current value of the encoding property. 76 * @return the current value of the encoding property. 89 * Assigns the current value of the version property. 98 * Assigns the current value of the encoding property.
|
/cts/tests/tests/os/src/android/os/cts/ |
BuildTest.java | 50 // The build property must match Build.SUPPORTED_ABIS exactly. 96 private String[] getStringList(String property) throws IOException { 97 String value = getProperty(property); 106 * @param property name passed to getprop 108 static String getProperty(String property) 110 Process process = new ProcessBuilder("getprop", property).start(); 125 * @param property name passed to getprop 126 * @param expected value of the property 128 private void assertProperty(String message, String property, String expected) 130 Process process = new ProcessBuilder("getprop", property).start() [all...] |
/external/clang/test/CodeGenObjC/ |
property.m | 17 @property int x; 18 @property int y; 19 @property int z; 20 @property(readonly) int ro; 21 @property(assign) id ob0; 22 @property(retain) id ob1; 23 @property(copy) id ob2; 24 @property(retain, nonatomic) id ob3; 25 @property(copy, nonatomic) id ob4; 47 @property int dyn [all...] |
/device/moto/shamu/ |
init.mmi.touch.sh | 52 2) err_msg="Error: Cannot read property $1";; 102 property="" 103 debug "retrieving property: [$touch_path/$1]" 104 property=$(cat $touch_path/$1 2> /dev/null) 105 debug "touch property [$1] is: [$property]" 106 [ -z "$property" ] && return 1 131 bl_mode=$property 135 touch_product_id=$property 144 str_cfg_id_boot=${property#*- [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/ |
default.build | 4 <property name="base.dir" value="${path::get-full-path( project::get-base-directory() )}" /> 8 <property name="antlr3.runtime.test" value="true" unless="${property::exists('antlr3.runtime.test')}" /> 9 <property name="enabletest" value="ALLOWTEST" unless="${property::exists('enabletest')}" /> 11 <property name="name" value="Antlr3.Runtime" /> 12 <property name="test.name" value="${name}.Tests" /> 14 <property name="assembly.name" value="${name}.dll" /> 15 <property name="test.assembly.name" value="${test.name}.exe" /> 17 <property name="src.dir" value="${base.dir}/" / [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
ANTLRBufferedTreeNodeStream.h | 84 @property (retain, getter=getUp, setter=setUp:) id<ANTLRTree> up; 85 @property (retain, getter=getDown, setter=setDown:) id<ANTLRTree> down; 86 @property (retain, getter=getEof, setter=setEof:) id<ANTLRTree> eof; 87 @property (retain, getter=getNodes, setter=setNodes:) NSMutableArray *nodes; 88 @property (retain, getter=getTreeSource, setter=setTreeSource:) id<ANTLRTree> root; 89 @property (retain, getter=getTokenStream, setter=setTokenStream:) id<ANTLRTokenStream> tokens; 90 @property (retain, getter=getAdaptor, setter=setAdaptor:) ANTLRCommonTreeAdaptor *adaptor; 91 @property (assign, getter=getUniqueNavigationNodes, setter=setUniqueNavigationNodes:) BOOL uniqueNavigationNodes; 92 @property (assign, getter=getIndex, setter=setIndex:) NSInteger p; 93 @property (assign, getter=getLastMarker, setter=setLastMarker:) NSInteger lastMarker [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
ANTLRBufferedTreeNodeStream.h | 84 @property (retain, getter=getUp, setter=setUp:) id<ANTLRTree> up; 85 @property (retain, getter=getDown, setter=setDown:) id<ANTLRTree> down; 86 @property (retain, getter=getEof, setter=setEof:) id<ANTLRTree> eof; 87 @property (retain, getter=getNodes, setter=setNodes:) NSMutableArray *nodes; 88 @property (retain, getter=getTreeSource, setter=setTreeSource:) id<ANTLRTree> root; 89 @property (retain, getter=getTokenStream, setter=setTokenStream:) id<ANTLRTokenStream> tokens; 90 @property (retain, getter=getAdaptor, setter=setAdaptor:) ANTLRCommonTreeAdaptor *adaptor; 91 @property (assign, getter=getUniqueNavigationNodes, setter=setUniqueNavigationNodes:) BOOL uniqueNavigationNodes; 92 @property (assign, getter=getIndex, setter=setIndex:) NSInteger p; 93 @property (assign, getter=getLastMarker, setter=setLastMarker:) NSInteger lastMarker [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
ANTLRBufferedTreeNodeStream.h | 84 @property (retain, getter=getUp, setter=setUp:) id<ANTLRTree> up; 85 @property (retain, getter=getDown, setter=setDown:) id<ANTLRTree> down; 86 @property (retain, getter=getEof, setter=setEof:) id<ANTLRTree> eof; 87 @property (retain, getter=getNodes, setter=setNodes:) NSMutableArray *nodes; 88 @property (retain, getter=getTreeSource, setter=setTreeSource:) id<ANTLRTree> root; 89 @property (retain, getter=getTokenStream, setter=setTokenStream:) id<ANTLRTokenStream> tokens; 90 @property (retain, getter=getAdaptor, setter=setAdaptor:) ANTLRCommonTreeAdaptor *adaptor; 91 @property (assign, getter=getUniqueNavigationNodes, setter=setUniqueNavigationNodes:) BOOL uniqueNavigationNodes; 92 @property (assign, getter=getIndex, setter=setIndex:) NSInteger p; 93 @property (assign, getter=getLastMarker, setter=setLastMarker:) NSInteger lastMarker [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRBufferedTreeNodeStream.h | 85 @property (retain, getter=getUp, setter=setUp:) id up; 86 @property (retain, getter=getDown, setter=setDown:) id down; 87 @property (retain, getter=eof, setter=setEof:) id eof; 88 @property (retain, getter=getNodes, setter=setNodes:) AMutableArray *nodes; 89 @property (retain, getter=getTreeSource, setter=setTreeSource:) id root; 90 @property (retain, getter=getTokenStream, setter=setTokenStream:) id<ANTLRTokenStream> tokens; 91 @property (retain, getter=getAdaptor, setter=setAdaptor:) ANTLRCommonTreeAdaptor *adaptor; 92 @property (assign, getter=getUniqueNavigationNodes, setter=setUniqueNavigationNodes:) BOOL uniqueNavigationNodes; 93 @property (assign) NSInteger index; 94 @property (assign, getter=getLastMarker, setter=setLastMarker:) NSInteger lastMarker [all...] |
/external/clang/test/ARCMT/ |
objcmt-property.m | 2 // RUN: %clang_cc1 -fblocks -objcmt-migrate-readwrite-property -objcmt-migrate-readonly-property -mt-migrate-directory %t %s -x objective-c -fobjc-runtime-has-weak -fobjc-arc -triple x86_64-apple-darwin11 189 // Do not infer a property. 196 // Do not infer a property. 202 // Do not infer a property. 206 // Do not infer a property. 216 - (BOOL)is1stClass; // Not a valid property 217 - (BOOL)isClass; // This is a valid property 'class' is not a keyword in ObjC 218 - (BOOL)isDouble; // Not a valid property 236 @property (nonatomic, readonly) double Ddelegate [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts/ |
publish.xml | 9 <property name="result" value="${buildDirectory}/${buildLabel}" /> 12 <property name="indexFileName" value="index.html" /> 22 <property name="class" value="org.eclipse.releng.generators.TestResultsGenerator" /> 41 <property name="xmlDirectoryName" value="${result}/testresults/xml" /> 42 <property name="dropDirectoryName" value="${result}" /> 43 <property name="testResultsTemplateFileName" value="${basedir}/templateFiles/testResults.php.template" /> 44 <property name="dropTemplateFileName" value="${basedir}/templateFiles/index.html.template" /> 45 <property name="testResultsHtmlFileName" value="testResults.php" /> 46 <property name="hrefTestResultsTargetPath" value="testresults/html" /> 47 <property name="hrefCompileLogsTargetPath" value="compilelogs" / [all...] |
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/ |
XMPMeta.java | 30 // Basic property manipulation functions 33 * The property value getter-methods all take a property specification: the first two parameters 35 * of the property being referenced. See the introductory discussion of path expression usage 39 * <code>null</code> if the property does not exists. The result object contains the value of 40 * the property and option flags describing the property. Arrays and the non-leaf levels of 45 * This is the simplest property getter, mainly for top level simple properties or after using 48 * @param schemaNS The namespace URI for the property. May be <code>null</code> or the empty 51 * @param propName The name of the property. May be a general path expression, must not b [all...] |
/external/clang/test/SemaObjC/ |
arc-repeated-weak.mm | 8 @property(weak) Test *weakProp; 9 @property(strong) Test *strongProp; 22 use(a.weakProp); // expected-warning{{weak property 'weakProp' is accessed multiple times in this function but may be unpredictably set to nil; assign to a strong variable to keep the object alive}} 57 use(a.weakProp); // expected-warning{{weak property 'weakProp' is accessed multiple times}} 66 use(a.strongProp.weakProp); // expected-warning{{weak property 'weakProp' may be accessed multiple times in this function and may be unpredictably set to nil; assign to a strong variable to keep the object alive}} 71 use(a.strongProp.weakProp); // expected-warning{{weak property 'weakProp' may be accessed multiple times}} 76 use(a.implicitProp); // expected-warning{{weak implicit property 'implicitProp' is accessed multiple times}} 81 use(Test.weakProp); // expected-warning{{weak implicit property 'weakProp' is accessed multiple times}} 103 use([a weakProp]); // expected-warning{{weak property 'weakProp' is accessed multiple times}} 114 use([a weakProp]); // expected-warning{{weak property 'weakProp' is accessed multiple times} [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/ |
XmlPropertyEditor.java | 72 import org.eclipse.wb.internal.core.model.property.Property; 73 import org.eclipse.wb.internal.core.model.property.editor.AbstractTextPropertyEditor; 74 import org.eclipse.wb.internal.core.model.property.editor.presentation.ButtonPropertyEditorPresentation; 75 import org.eclipse.wb.internal.core.model.property.editor.presentation.PropertyEditorPresentation; 76 import org.eclipse.wb.internal.core.model.property.table.PropertyTable; 90 * Special property editor used for the {@link XmlProperty} instances which handles 104 protected void onClick(PropertyTable propertyTable, Property property) throws Exception { 105 openDialog(propertyTable, property); [all...] |
/developers/build/prebuilts/androidtv/visual-game-controller/ |
proguard-project.txt | 2 # to define the proguard.config property as described in that file. 8 # include property in project.properties.
|