Home
last modified time | relevance | path

Searched refs:Setter (Results 1 – 25 of 32) sorted by relevance

12

/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/
DParticleShader.java110 public final static Setter cameraRight = new Setter() {
117 public final static Setter cameraUp = new Setter() {
124 public final static Setter cameraInvDirection = new Setter() {
130 public final static Setter cameraPosition = new Setter() {
136 public final static Setter screenWidth = new Setter() {
142 public final static Setter worldViewTrans = new Setter() {
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/shadows/system/classical/
DPass2Shader.java60 public final static Setter shadowMapProjViewTrans = new GlobalSetter() {
66 public final static Setter shadowTexture = new GlobalSetter() {
72 public final static Setter uvTransform = new GlobalSetter() {
79 public final static Setter lightColor = new GlobalSetter() {
89 public final static Setter lightDirection = new GlobalSetter() {
104 public final static Setter lightIntensity = new GlobalSetter() {
116 public final static Setter lightPosition = new GlobalSetter() {
128 public final static Setter lightCutoffAngle = new GlobalSetter() {
137 public final static Setter lightExponent = new GlobalSetter() {
DMainShader.java48 public final static Setter shadowTexture = new GlobalSetter() {
54 public final static Setter resolution = new GlobalSetter() {
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/shaders/
DDefaultShader.java124 public final static Setter projTrans = new GlobalSetter() {
130 public final static Setter viewTrans = new GlobalSetter() {
136 public final static Setter projViewTrans = new GlobalSetter() {
142 public final static Setter cameraPosition = new GlobalSetter() {
149 public final static Setter cameraDirection = new GlobalSetter() {
155 public final static Setter cameraUp = new GlobalSetter() {
161 public final static Setter cameraNearFar = new GlobalSetter() {
167 public final static Setter worldTrans = new LocalSetter() {
173 public final static Setter viewWorldTrans = new LocalSetter() {
181 public final static Setter projViewWorldTrans = new LocalSetter() {
[all …]
DBaseShader.java48 public interface Setter { interface in BaseShader
55 public abstract static class GlobalSetter implements Setter {
62 public abstract static class LocalSetter implements Setter {
104 private final Array<Setter> setters = new Array<Setter>();
117 public int register (final String alias, final Validator validator, final Setter setter) { in register()
135 public int register (final String alias, final Setter setter) { in register()
143 public int register (final Uniform uniform, final Setter setter) { in register()
175 final Setter setter = setters.get(i); in init()
/external/jetty/src/java/org/eclipse/jetty/util/ajax/
DJSONPojoConvertor.java58 protected Map<String,Setter> _setters = new HashMap<String,Setter>();
157 _setters.put(name, new Setter(name, method)); in addSetter()
161 protected Setter getSetter(String name) in getSetter()
203 Setter setter = getSetter((String)entry.getKey()); in setProps()
251 public static class Setter class in JSONPojoConvertor
259 public Setter(String propertyName, Method method) in Setter() method in JSONPojoConvertor.Setter
/external/v8/test/message/
Drest-param-class-setter-strict.out1 *%(basename)s:11: SyntaxError: Setter function argument must not be a rest parameter
4 SyntaxError: Setter function argument must not be a rest parameter
Drest-param-object-setter-sloppy.out1 *%(basename)s:10: SyntaxError: Setter function argument must not be a rest parameter
4 SyntaxError: Setter function argument must not be a rest parameter
Drest-param-object-setter-strict.out1 *%(basename)s:11: SyntaxError: Setter function argument must not be a rest parameter
4 SyntaxError: Setter function argument must not be a rest parameter
/external/v8/src/
Daccessors.h56 static void name##Setter( \
69 k##name##Setter,
/external/protobuf/python/google/protobuf/internal/
Dcpp_message.py84 def Setter(self, value): function
87 return property(Getter, Setter)
179 def Setter(self, new_value): function
184 return property(Getter, Setter, doc=doc)
285 def Setter(self, new_value): function
290 return property(Getter, Setter, doc=doc)
/external/v8/test/webkit/
Dclass-syntax-expression-expected.txt34 PASS x = class { constructor() {} set foo() {} } threw exception SyntaxError: Setter must have exac…
35 PASS x = class { constructor() {} set foo(a, b) {} } threw exception SyntaxError: Setter must have …
Dclass-syntax-declaration-expected.txt36 PASS class X { constructor() {} set foo() {} } threw exception SyntaxError: Setter must have exactl…
37 PASS class X { constructor() {} set foo(a, b) {} } threw exception SyntaxError: Setter must have ex…
/external/clang/lib/Sema/
DSemaPseudoObject.cpp271 ObjCMethodDecl *Setter; member in __anon46dced8a0111::ObjCPropertyOpBuilder
279 Setter(nullptr) { in ObjCPropertyOpBuilder()
629 Setter = setter; in findSetter()
669 Setter = setter; in findSetter()
763 QualType paramType = (*Setter->param_begin())->getType() in buildSet()
766 Setter->getDeclContext(), in buildSet()
787 if (!Setter->isImplicit()) in buildSet()
788 S.DiagnoseUseOfDecl(Setter, GenericLoc, nullptr, true); in buildSet()
789 if ((Setter->isInstanceMethod() && !RefExpr->isClassReceiver()) || in buildSet()
792 GenericLoc, SetterSelector, Setter, in buildSet()
[all …]
DSemaExprObjC.cpp1839 ObjCMethodDecl *Setter = IFace->lookupInstanceMethod(SetterSel); in HandleExprPropertyRefExpr() local
1842 if (!Setter) in HandleExprPropertyRefExpr()
1843 Setter = LookupMethodInQualifiedType(SetterSel, OPT, true); in HandleExprPropertyRefExpr()
1845 if (!Setter) { in HandleExprPropertyRefExpr()
1848 Setter = IFace->lookupPrivateMethod(SetterSel); in HandleExprPropertyRefExpr()
1851 if (Setter && DiagnoseUseOfDecl(Setter, MemberLoc)) in HandleExprPropertyRefExpr()
1857 if (Setter && Setter->isImplicit() && Setter->isPropertyAccessor() in HandleExprPropertyRefExpr()
1859 if (const ObjCPropertyDecl *PDecl = Setter->findPropertyDecl()) { in HandleExprPropertyRefExpr()
1870 if (Getter || Setter) { in HandleExprPropertyRefExpr()
1873 ObjCPropertyRefExpr(Getter, Setter, Context.PseudoObjectTy, VK_LValue, in HandleExprPropertyRefExpr()
[all …]
DSemaExprMember.cpp1532 ObjCMethodDecl *Setter = IFace->lookupClassMethod(SetterSel); in LookupMemberExpr() local
1533 if (!Setter) { in LookupMemberExpr()
1536 Setter = IFace->lookupPrivateMethod(SetterSel, false); in LookupMemberExpr()
1539 if (Setter && S.DiagnoseUseOfDecl(Setter, MemberLoc)) in LookupMemberExpr()
1542 if (Getter || Setter) { in LookupMemberExpr()
1544 Getter, Setter, S.Context.PseudoObjectTy, VK_LValue, in LookupMemberExpr()
/external/clang/include/clang/AST/
DExprObjC.h601 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
607 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0),
612 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
617 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0),
622 ObjCPropertyRefExpr(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
627 PropertyOrGetter(Getter, true), SetterAndMethodRefFlags(Setter, 0),
738 void setImplicitProperty(ObjCMethodDecl *Getter, ObjCMethodDecl *Setter,
742 SetterAndMethodRefFlags.setPointer(Setter);
DDeclCXX.h3221 IdentifierInfo *Getter, IdentifierInfo *Setter) in MSPropertyDecl() argument
3223 GetterId(Getter), SetterId(Setter) {} in MSPropertyDecl()
3229 IdentifierInfo *Getter, IdentifierInfo *Setter);
/external/clang/lib/ARCMigrate/
DObjCMT.cpp453 const ObjCMethodDecl *Setter, in rewriteToObjCProperty() argument
481 if (!Setter) in rewriteToObjCProperty()
493 } else if (!Setter) { in rewriteToObjCProperty()
498 const ParmVarDecl *argDecl = *Setter->param_begin(); in rewriteToObjCProperty()
551 if (Setter && AvailabilityArgsMatch) { in rewriteToObjCProperty()
552 SourceLocation EndLoc = Setter->getDeclaratorEndLoc(); in rewriteToObjCProperty()
555 SourceLocation BeginOfSetterDclLoc = Setter->getLocStart(); in rewriteToObjCProperty()
/external/clang/lib/CodeGen/
DCGDebugInfo.cpp1663 const ObjCMethodDecl *Setter) { in hasDefaultSetterName() argument
1665 if (!Setter) in hasDefaultSetterName()
1668 assert(Setter->getDeclName().isObjCOneArgSelector()); in hasDefaultSetterName()
1670 Setter->getDeclName().getObjCSelector().getNameForSlot(0); in hasDefaultSetterName()
1808 ObjCMethodDecl *Setter = PD->getSetterMethodDecl(); in CreateTypeDefinition() local
1813 hasDefaultSetterName(PD, Setter) ? "" in CreateTypeDefinition()
1897 ObjCMethodDecl *Setter = PD->getSetterMethodDecl(); in CreateTypeDefinition() local
1902 hasDefaultSetterName(PD, Setter) ? "" : getSelectorName( in CreateTypeDefinition()
/external/clang/tools/libclang/
DIndexingContext.cpp619 if (ObjCMethodDecl *Setter = D->getSetterMethodDecl()) { in handleObjCProperty() local
620 getEntityInfo(Setter, SetterEntity, SA); in handleObjCProperty()
/external/v8/test/cctest/
Dtest-cpu-profiler.cc801 static void Setter(v8::Local<v8::String> name, in Setter() function in TestApiCallbacks
855 &TestApiCallbacks::Setter, data); in TEST()
896 &TestApiCallbacks::Setter, data); in TEST()
/external/clang/lib/AST/
DDeclCXX.cpp2201 IdentifierInfo *Setter) { in Create() argument
2202 return new (C, DC) MSPropertyDecl(DC, L, N, T, TInfo, StartL, Getter, Setter); in Create()
DASTDumper.cpp2105 if (ObjCMethodDecl *Setter = Node->getImplicitPropertySetter()) in VisitObjCPropertyRefExpr() local
2106 Setter->getSelector().print(OS); in VisitObjCPropertyRefExpr()
/external/clang/lib/Frontend/Rewrite/
DRewriteObjC.cpp5393 if (ObjCMethodDecl *Setter = PD->getSetterMethodDecl()) in RewriteObjCClassMetaData() local
5394 if (!Setter->isDefined()) in RewriteObjCClassMetaData()
5395 InstanceMethods.push_back(Setter); in RewriteObjCClassMetaData()
5670 if (ObjCMethodDecl *Setter = PD->getSetterMethodDecl()) in RewriteObjCCategoryImplDecl() local
5671 InstanceMethods.push_back(Setter); in RewriteObjCCategoryImplDecl()

12