Home
last modified time | relevance | path

Searched refs:scope (Results 1 – 25 of 819) sorted by relevance

12345678910>>...33

/plugin/stlviewer/stlviewer/
DOrbitControls.js76 var scope = this;
171 var element = scope.domElement === document ? scope.domElement.body : scope.domElement;
173 if ( scope.object.fov !== undefined ) {
176 var position = scope.object.position;
177 var offset = position.clone().sub( scope.target );
181 targetDistance *= Math.tan( ( scope.object.fov / 2 ) * Math.PI / 180.0 );
184 scope.panLeft( 2 * deltaX * targetDistance / element.clientHeight );
185 scope.panUp( 2 * deltaY * targetDistance / element.clientHeight );
187 } else if ( scope.object.top !== undefined ) {
190 scope.panLeft( deltaX * (scope.object.right - scope.object.left) / element.clientWidth );
[all …]
/plugin/asciidocjs/node_modules/uglify-js/lib/
Dscope.js46 function SymbolDef(id, scope, orig, init) { argument
58 this.scope = scope;
72 names_in_use(this.scope, options).set(this.name, true);
85 var scope = self.defun;
86 if (!scope) return;
88 var def = scope.variables.get(name)
89 || scope instanceof AST_Toplevel && scope.globals.get(name)
92 }, scope.enclosed);
98 if (!options.eval && this.scope.pinned()) return true;
147 var scope = self.parent_scope = null;
[all …]
/plugin/codemirror/dist/modes/
Dcoffeescript.min.js1scope.align===null)b.scope.align=false;var d=b.scope.offset;if(a.eatSpace()){var j=a.indentation()…
Dcoffeescript.min.js.map1scope","align","scopeOffset","offset","eatSpace","lineOffset","indentation","type","dedent","ch","…
/plugin/tableplot/example/
DexampleEarthquakePlot.txt9 <th scope="col">Year</th>
10 <th scope="col">Number Earthquakes</th>
13 <th scope="row">2000</th>
17 <th scope="row">2001</th>
21 <th scope="row">2002</th>
25 <th scope="row">2003</th>
29 <th scope="row">2004</th>
33 <th scope="row">2005</th>
37 <th scope="row">2006</th>
41 <th scope="row">2007</th>
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudAsset/Resource/
DV1.php43 * @param string $scope Required. The relative name of the root asset. Only
155 public function analyzeIamPolicy($scope, $optParams = []) argument
157 $params = ['scope' => $scope];
171 * @param string $scope Required. The relative name of the root asset. Only
185 …public function analyzeIamPolicyLongrunning($scope, AnalyzeIamPolicyLongrunningRequest $postBody, … argument
187 $params = ['scope' => $scope, 'postBody' => $postBody];
295 * @param string $scope Required. A scope can be a project, a folder, or an
368 public function searchAllIamPolicies($scope, $optParams = []) argument
370 $params = ['scope' => $scope];
380 * @param string $scope Required. A scope can be a project, a folder, or an
[all …]
/plugin/asciidocjs/node_modules/pug-filters/node_modules/uglify-js/lib/
Dscope.js46 function SymbolDef(scope, index, orig) { argument
49 this.scope = scope;
66 || (!options.eval && (this.scope.uses_eval || this.scope.uses_with))
77 var s = this.scope;
101 var scope = self.parent_scope = null;
106 var save_scope = scope;
107 scope = new AST_Scope(node);
108 scope.init_scope_vars(save_scope);
110 scope = save_scope;
114 node.init_scope_vars(scope);
[all …]
/plugin/authgooglesheets/vendor/google/auth/src/Credentials/
DAppIdentityCredentials.php75 private $scope; variable in Google\\Auth\\Credentials\\AppIdentityCredentials
83 * @param string|string[] $scope One or more scopes.
85 public function __construct($scope = []) argument
87 $this->scope = is_array($scope) ? $scope : explode(' ', (string) $scope);
136 $token = AppIdentityService::getAccessToken($this->scope);
DServiceAccountJwtAccessCredentials.php67 * @param string|string[] $scope the scope of the access request, expressed
70 public function __construct($jsonKey, $scope = null) argument
99 'scope' => $scope,
120 $scope = $this->auth->getScope();
121 if (empty($authUri) && empty($scope)) {
140 $scope = $this->auth->getScope();
141 if (empty($audience) && empty($scope)) {
145 if (!empty($audience) && !empty($scope)) {
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/
H A DLdapUrl.php71 protected $scope; variable in FreeDSx\\Ldap\\LdapUrl
148 return $this->scope;
152 * @param null|string $scope
156 public function setScope(?string $scope) argument
158 $scope = $scope === null ? $scope : strtolower($scope);
159 …if ($scope !== null && !in_array($scope, [self::SCOPE_BASE, self::SCOPE_ONE, self::SCOPE_SUB], tru…
162 $scope,
168 $this->scope = $scope;
374 if ($this->scope !== null) {
375 $query[1] = self::encode($this->scope);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Container/
DMaintenanceExclusionOptions.php25 public $scope; variable in Google\\Service\\Container\\MaintenanceExclusionOptions
30 public function setScope($scope) argument
32 $this->scope = $scope;
39 return $this->scope;
/plugin/authgoogle/google/
Dconfig.php53 'analytics' => array('scope' => 'https://www.googleapis.com/auth/analytics.readonly'),
62 'scope' => array(
67 'moderator' => array('scope' => 'https://www.googleapis.com/auth/moderator'),
75 'siteVerification' => array('scope' => 'https://www.googleapis.com/auth/siteverification'),
77 'urlshortener' => array('scope' => 'https://www.googleapis.com/auth/urlshortener')
/plugin/refnotes/
Dnote.php110 protected $scope; variable in refnotes_note
137 public function __construct($scope, $namespaceName, $name) { argument
140 $this->scope = $scope;
154 $this->id = $this->scope->getNoteId();
186 return $this->scope;
256 $result .= $this->scope->getName();
266 $doc = $this->scope->getRenderer()->renderNote($mode, $this, $this->reference);
281 public function __construct($scope, $namespaceName, $name) { argument
282 parent::__construct($scope, $namespaceName, $name);
308 $exclude = $this->scope->getRenderer()->getReferencePrivateDataSet();
[all …]
Dnamespace.php229 private $scope; variable in refnotes_namespace
282 $this->scope = array();
301 return count($this->scope);
342 $index = count($this->scope) + $index;
344 return ($index >= 0) ? $this->scope[$index] : new refnotes_scope_mock();
366 $this->scope[] = new refnotes_scope($this, count($this->scope) + 1);
378 $this->scope[] = new refnotes_scope(NULL, 0, $callIndex);
396 for ($i = count($this->scope) - 1; $i >= 0; $i--) {
397 $scopeEnd = $this->scope[$i]->getLimits()->end;
431 if (count($this->scope) > 0) {
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudTasks/
DOAuthToken.php25 public $scope; variable in Google\\Service\\CloudTasks\\OAuthToken
34 public function setScope($scope) argument
36 $this->scope = $scope;
43 return $this->scope;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudSearch/
DShareScope.php29 public $scope; variable in Google\\Service\\CloudSearch\\ShareScope
48 public function setScope($scope) argument
50 $this->scope = $scope;
57 return $this->scope;
DAclInfo.php29 public $scope; variable in Google\\Service\\CloudSearch\\AclInfo
52 public function setScope($scope) argument
54 $this->scope = $scope;
61 return $this->scope;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudScheduler/
DOAuthToken.php25 public $scope; variable in Google\\Service\\CloudScheduler\\OAuthToken
34 public function setScope($scope) argument
36 $this->scope = $scope;
43 return $this->scope;
/plugin/dtable/
Daction.php144 $scope = json_decode($_POST['remove'], true);
147 for ($i = $scope[0]; $i <= $scope[1]; $i++)
155 array_splice($page_lines, $scope[0], $scope[1] - $scope[0] + 1);
215 $scope = json_decode($_POST['edit'], true);
218 for ($i = $scope[0]; $i <= $scope[1]; $i++)
228 array_splice($page_lines, $scope[0], $scope[1] - $scope[0] + 1, $new_line);
229 $line_nr = $scope[0];
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CivicInfo/
DElectoralDistrict.php33 public $scope; variable in Google\\Service\\CivicInfo\\ElectoralDistrict
66 public function setScope($scope) argument
68 $this->scope = $scope;
75 return $this->scope;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/IAMCredentials/
DGenerateAccessTokenRequest.php34 public $scope; variable in Google\\Service\\IAMCredentials\\GenerateAccessTokenRequest
67 public function setScope($scope) argument
69 $this->scope = $scope;
76 return $this->scope;
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/
H A DSearchRequest.php96 protected $scope = self::SCOPE_WHOLE_SUBTREE; variable in FreeDSx\\Ldap\\Operation\\Request\\SearchRequest
167 $this->scope = self::SCOPE_WHOLE_SUBTREE;
179 $this->scope = self::SCOPE_BASE_OBJECT;
191 $this->scope = self::SCOPE_SINGLE_LEVEL;
268 return $this->scope;
272 * @param int $scope
275 public function setScope(int $scope) argument
277 $this->scope = $scope;
388 $scope = $type->getChild(1);
403 && $scope instanceof EnumeratedType
[all …]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/AnalyticsReporting/
DSegmentMetricFilter.php41 public $scope; variable in Google\\Service\\AnalyticsReporting\\SegmentMetricFilter
102 public function setScope($scope) argument
104 $this->scope = $scope;
111 return $this->scope;
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/Squiz/Sniffs/CSS/
DDuplicateClassDefinitionSniff.php74 $scope = 'main';
91 $scope = 'main';
112 $scope = $name;
113 } else if (isset($classNames[$scope][$name]) === true) {
114 $first = $classNames[$scope][$name];
119 $classNames[$scope][$name] = $next;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/GoogleAnalyticsAdmin/
DGoogleAnalyticsAdminV1alphaCustomDimension.php45 public $scope; variable in Google\\Service\\GoogleAnalyticsAdmin\\GoogleAnalyticsAdminV1alphaCustomDimension
120 public function setScope($scope) argument
122 $this->scope = $scope;
129 return $this->scope;

12345678910>>...33