Home
last modified time | relevance | path

Searched refs:propertyAccess (Results 1 – 11 of 11) sorted by relevance

/dports/devel/sdbus-cpp/sdbus-cpp-1.1.0/tools/xml2cpp-codegen/
H A DAdaptorGenerator.cpp311 auto propertyAccess = property->get("access"); in processProperties() local
340 if (propertyAccess == "read" || propertyAccess == "readwrite") in processProperties()
345 if (propertyAccess == "readwrite" || propertyAccess == "write") in processProperties()
355 if (propertyAccess == "read" || propertyAccess == "readwrite") in processProperties()
357 if (propertyAccess == "readwrite" || propertyAccess == "write") in processProperties()
H A DProxyGenerator.cpp278 auto propertyAccess = property->get("access"); in processProperties() local
285 if (propertyAccess == "read" || propertyAccess == "readwrite") in processProperties()
294 if (propertyAccess == "readwrite" || propertyAccess == "write") in processProperties()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/devtools-frontend/src/scripts/component_bridges/
H A Dwalk_tree.ts108 const propertyAccess = node.expression.expression; constant
110 if (ts.isIdentifier(propertyAccess.expression) && ts.isIdentifier(propertyAccess.name)) {
111 const leftSideText = propertyAccess.expression.escapedText.toString();
112 const rightSideText = propertyAccess.name.escapedText.toString();
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/devtools-frontend/src/scripts/component_bridges/
H A Dwalk_tree.ts341 const propertyAccess = node.expression.expression; constant
343 if (ts.isIdentifier(propertyAccess.expression) && ts.isIdentifier(propertyAccess.name)) {
344 const leftSideText = propertyAccess.expression.escapedText.toString();
345 const rightSideText = propertyAccess.name.escapedText.toString();
/dports/science/gnudatalanguage/gdl-1.0.1/src/
H A Daccessdesc.hpp37 bool propertyAccess; member in DotAccessDescT
339 propertyAccess(false), top(NULL), dStruct(), tag(), ix(), dim(), owner(false) in DotAccessDescT()
490 propertyAccess = false; in ADRoot()
567 if( propertyAccess && ix_ != NULL) in ADAddIx()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.Entity/System/Data/Mapping/
H A DFunctionImportMappingComposable.cs452 var propertyAccess = row.Property(column); in GenerateScalarResultMappingView()
455 return propertyAccess; in GenerateScalarResultMappingView()
459 return propertyAccess.CastTo(functionImportReturnType.TypeUsage); in GenerateScalarResultMappingView()
/dports/lang/rhino/rhino1_7R4/testsrc/org/mozilla/javascript/tests/
H A DPrimitiveTypeScopeResolutionTest.java39 public void propertyAccess() { in propertyAccess() method in PrimitiveTypeScopeResolutionTest
/dports/editors/helix/helix-0.5.0/helix-syntax/languages/tree-sitter-typescript/examples/
H A Dparser.ts4224 …const propertyAccess: PropertyAccessExpression = <PropertyAccessExpression>createNode(SyntaxKind.P… constant
4225 propertyAccess.expression = expression;
4226 propertyAccess.name = parseRightSideOfDot(/*allowIdentifierNames*/ true);
4227 expression = finishNode(propertyAccess);
4325 …const propertyAccess = <PropertyAccessExpression>createNode(SyntaxKind.PropertyAccessExpression, e… constant
4326 propertyAccess.expression = expression;
4327 propertyAccess.name = parseRightSideOfDot(/*allowIdentifierNames*/ true);
4328 expression = finishNode(propertyAccess);
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.aop/src/test/java/org/springframework/aop/aspectj/annotation/
H A DAbstractAspectJAdvisorFactoryTests.java750 public void propertyAccess() {} in propertyAccess() method in AbstractAspectJAdvisorFactoryTests.Library
/dports/lang/rhino/rhino1_7R4/src/org/mozilla/javascript/
H A DParser.java2467 pn = propertyAccess(tt, pn); in memberExprTail()
2544 private AstNode propertyAccess(int tt, AstNode pn) in propertyAccess() method in Parser
/dports/www/gohugo/hugo-0.91.2/vendor/github.com/evanw/esbuild/internal/js_parser/
H A Djs_parser.go13407 propertyAccess := &js_ast.EDot{
13413 p.tsNamespaceTarget = propertyAccess
13415 return js_ast.Expr{Loc: loc, Data: propertyAccess}