Home
last modified time | relevance | path

Searched refs:viewName (Results 1 – 25 of 1105) sorted by relevance

12345678910>>...45

/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/symfony/lib/config/
H A DsfViewConfigHandler.class.php46 if ($viewName == 'all')
61 $data[] = $this->addTemplate($viewName);
68 if ($viewName == 'all')
76 $data[] = $this->addLayout($viewName);
111 * @param string $viewName The view name
137 * @param string $viewName The view name
157 * @param string $viewName The view name
164 …s->yamlConfig[$viewName]['layout']) || (isset($this->yamlConfig[$viewName]) && array_key_exists('h…
167 …$layout = $this->getConfigValue('has_layout', $viewName) ? $this->getConfigValue('layout', $viewNa…
211 * @param string $viewName The view name
[all …]
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/handler/
H A DSimpleMappingExceptionResolver.java96 this.statusCodes.put(viewName, statusCode); in setStatusCodes()
105 this.statusCodes.put(viewName, statusCode); in addStatusCode()
160 if (viewName != null) { in doResolveException()
182 String viewName = null; in determineViewName() local
193 viewName = this.defaultErrorView; in determineViewName()
195 return viewName; in determineViewName()
206 String viewName = null; in findMatchingViewName() local
222 return viewName; in findMatchingViewName()
260 if (this.statusCodes.containsKey(viewName)) { in determineStatusCode()
261 return this.statusCodes.get(viewName); in determineStatusCode()
[all …]
/dports/devel/spark/spark-2.1.1/sql/hive/src/test/scala/org/apache/spark/sql/hive/execution/
H A DSQLViewSuite.scala111 val viewName = "testView" constant
112 withTempView(viewName) {
113 spark.range(10).createTempView(viewName)
120 val viewName = "testView" constant
121 withTempView(viewName) {
122 spark.range(10).createTempView(viewName)
136 val viewName = "testView" constant
137 withTempView(viewName) {
162 val viewName = "testView" constant
163 withView(viewName) {
[all …]
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/db/views/
H A Dview_catalog_test.cpp167 const NamespaceString viewName("db.view"); in TEST_F() local
176 const NamespaceString viewName("db1.view"); in TEST_F() local
236 const NamespaceString viewName("db.view"); in TEST_F() local
252 viewName, in TEST_F()
264 viewName, in TEST_F()
277 viewName, in TEST_F()
306 const NamespaceString viewName("db.view"); in TEST_F() local
320 const NamespaceString viewName("db.view"); in TEST_F() local
334 const NamespaceString viewName("db.view"); in TEST_F() local
421 const NamespaceString viewName("db.view"); in TEST_F() local
[all …]
H A Dview_catalog.cpp165 _viewMap[viewName.ns()] = std::make_shared<ViewDefinition>(viewName.db(), in _reloadIfNeeded_inlock()
200 viewDefBuilder.append("_id", viewName.ns()); in _createOrUpdateView_inlock()
209 viewName.db(), viewName.coll(), viewOn.coll(), ownedPipeline, std::move(collator)); in _createOrUpdateView_inlock()
218 _viewMap[viewName.ns()] = view; in _createOrUpdateView_inlock()
220 this->_viewMap.erase(viewName.ns()); in _createOrUpdateView_inlock()
354 if (viewName.db() != viewOn.db()) in createView()
365 if (viewName.isSystem()) in createView()
384 if (viewName.db() != viewOn.db()) in modifyView()
404 viewName, in modifyView()
424 _durable->remove(opCtx, viewName); in dropView()
[all …]
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.web.portlet/src/main/java/org/springframework/web/portlet/handler/
H A DSimpleMappingExceptionResolver.java114 String viewName = determineViewName(ex, request); in doResolveException() local
115 if (viewName != null) { in doResolveException()
116 return getModelAndView(viewName, ex, request); in doResolveException()
132 String viewName = null; in determineViewName() local
143 viewName = this.defaultErrorView; in determineViewName()
145 return viewName; in determineViewName()
156 String viewName = null; in findMatchingViewName() local
168 if (viewName != null && logger.isDebugEnabled()) { in findMatchingViewName()
172 return viewName; in findMatchingViewName()
209 return getModelAndView(viewName, ex); in getModelAndView()
[all …]
/dports/www/orangehrm/orangehrm-4.9/symfony/lib/vendor/symfony/lib/filter/
H A DsfExecutionFilter.class.php43 $viewName = $this->handleAction($filterChain, $actionInstance);
48 $this->handleView($filterChain, $actionInstance, $viewName);
54 $viewName = $this->handleAction($filterChain, $actionInstance);
55 $this->handleView($filterChain, $actionInstance, $viewName);
93 $viewName = $actionInstance->execute($this->context->getRequest());
96 return null === $viewName ? sfView::SUCCESS : $viewName;
104 * @param string $viewName The view name
106 protected function handleView($filterChain, $actionInstance, $viewName) argument
108 switch ($viewName)
131 * @param string $viewName The view name
[all …]
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.web.servlet/src/test/java/org/springframework/web/servlet/view/
H A DContentNegotiatingViewResolverTests.java179 String viewName = "view"; in resolveViewNameWithPathExtension() local
205 String viewName = "view"; in resolveViewNameWithAcceptHeader() local
239 String viewName = "view"; in resolveViewNameWithRequestParameter() local
268 String viewName = "view"; in resolveViewNameWithDefaultContentType() local
295 String viewName = "view"; in resolveViewNameAcceptHeader() local
324 String viewName = "view"; in resolveViewNameAcceptHeaderSortByQuality() local
356 String viewName = "view"; in resolveViewNameAcceptHeaderDefaultView() local
384 String viewName = "view"; in resolveViewNameFilename() local
422 String viewName = "view"; in resolveViewNameFilenameDefaultView() local
450 String viewName = "view"; in resolveViewContentTypeNull() local
[all …]
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/view/
H A DUrlBasedViewResolver.java370 protected Object getCacheKey(String viewName, Locale locale) { in getCacheKey() argument
371 return viewName; in getCacheKey()
386 if (!canHandle(viewName, locale)) { in createView()
390 if (viewName.startsWith(REDIRECT_URL_PREFIX)) { in createView()
393 return applyLifecycleMethods(viewName, view); in createView()
396 if (viewName.startsWith(FORWARD_URL_PREFIX)) { in createView()
401 return super.createView(viewName, locale); in createView()
414 protected boolean canHandle(String viewName, Locale locale) { in canHandle() argument
436 AbstractUrlBasedView view = buildView(viewName); in loadView()
437 View result = applyLifecycleMethods(viewName, view); in loadView()
[all …]
H A DAbstractCachingViewResolver.java118 public View resolveViewName(String viewName, Locale locale) throws Exception { in resolveViewName() argument
120 return createView(viewName, locale); in resolveViewName()
123 Object cacheKey = getCacheKey(viewName, locale); in resolveViewName()
128 view = createView(viewName, locale); in resolveViewName()
148 protected Object getCacheKey(String viewName, Locale locale) { in getCacheKey() argument
149 return viewName + "_" + locale; in getCacheKey()
161 public void removeFromCache(String viewName, Locale locale) { in removeFromCache() argument
166 Object cacheKey = getCacheKey(viewName, locale); in removeFromCache()
210 protected View createView(String viewName, Locale locale) throws Exception { in createView() argument
211 return loadView(viewName, locale); in createView()
[all …]
/dports/www/grails/grails-1.3.6/src/java/org/codehaus/groovy/grails/web/pages/
H A DGroovyPagesUriSupport.java60 String getViewURI(GroovyObject controller, String viewName) { in getViewURI() argument
62 return getViewURI(getLogicalControllerName(controller),viewName); in getViewURI()
71 String getNoSuffixViewURI(GroovyObject controller, String viewName) { in getNoSuffixViewURI() argument
138 String getViewURI(String controllerName, String viewName) { in getViewURI() argument
141 return getViewURIInternal(controllerName, viewName, buf, true); in getViewURI()
150 String getNoSuffixViewURI(String controllerName, String viewName) { in getNoSuffixViewURI() argument
162 String getDeployedViewURI(String controllerName, String viewName) { in getDeployedViewURI() argument
168 if (viewName.startsWith(SLASH_STR)) { in getViewURIInternal()
169 String tmp = viewName.substring(1,viewName.length()); in getViewURIInternal()
178 buf.append(viewName.substring(1,viewName.length())); in getViewURIInternal()
[all …]
H A DGroovyPageUtils.java65 public static String getViewURI(GroovyObject controller, String viewName) { in getViewURI() argument
66 return getInstance().getViewURI(controller, viewName); in getViewURI()
75 public static String getNoSuffixViewURI(GroovyObject controller, String viewName) { in getNoSuffixViewURI() argument
76 return getInstance().getNoSuffixViewURI(controller, viewName); in getNoSuffixViewURI()
95 public static String getViewURI(String controllerName, String viewName) { in getViewURI() argument
96 return getInstance().getViewURI(controllerName, viewName); in getViewURI()
105 public static String getNoSuffixViewURI(String controllerName, String viewName) { in getNoSuffixViewURI() argument
106 return getInstance().getNoSuffixViewURI(controllerName, viewName); in getNoSuffixViewURI()
115 public static String getDeployedViewURI(String controllerName, String viewName) { in getDeployedViewURI() argument
116 return getInstance().getDeployedViewURI(controllerName, viewName); in getDeployedViewURI()
/dports/net/eventviews/eventviews-21.12.3/src/viewerapp/
H A Dmainwindow.cpp57 void MainWindow::addView(const QString &viewName) in addView() argument
64 if (viewName == QLatin1String("agenda")) { in addView()
66 } else if (viewName == QLatin1String("multiagenda")) { in addView()
68 } else if (viewName == QLatin1String("month")) { in addView()
70 } else if (viewName == QLatin1String("timeline")) { in addView()
80 mUi.tabWidget->addTab(eventView, viewName); in addView()
105 for (const QString &viewName : std::as_const(mViewNames)) { in delayedInit() local
106 addView(viewName); in delayedInit()
112 QString viewName = action->text().toLower(); in addViewTriggered() local
113 viewName.remove(QLatin1Char('&')); in addViewTriggered()
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/go.opentelemetry.io/collector/service/internal/telemetry/
H A Dprocess_telemetry_test.go53 for _, viewName := range expectedViews {
54 rows, err := view.RetrieveData(viewName)
55 require.NoError(t, err, viewName)
57 require.Len(t, rows, 1, viewName)
62 if viewName == "process/uptime" {
68 if viewName == "process/uptime" || viewName == "process/cpu_seconds" {
70 assert.True(t, value >= 0, viewName)
74 assert.True(t, value > 0, viewName)
/dports/www/groupoffice/groupoffice-6.4.231-php-71/go/base/view/
H A DFileView.php10 public function render($viewName, $data=array()){ argument
14 $viewPath = GO::config()->root_path.'views/'.GO::viewName().'/';
16 if(!($file = $this->findViewFile($viewName))){
50 public function findViewFile($viewName){ argument
52 $viewPath = GO::config()->root_path.'views/'.GO::viewName().'/';
60 $file = $viewPath.$viewName.'.php';
63 $file = $module->path.'views/'.GO::viewName().'/'.$viewName.'.php';
68 }elseif(($file = $viewPath.$viewName.'.php') && file_exists($file))
/dports/databases/mariadb105-client/mariadb-10.5.15/storage/columnstore/columnstore/dbcon/mysql/
H A Dha_view.cpp51 CalpontSystemCatalog::TableAliasName& View::viewName() in viewName() function in cal_impl_if::View
56 void View::viewName(execplan::CalpontSystemCatalog::TableAliasName& viewName) in viewName() function in cal_impl_if::View
58 fViewName = viewName; in viewName()
91 string viewName = getViewName(table_ptr); in transform() local
94 boost::algorithm::to_lower(viewName); in transform()
106 …gwi.viewName = make_aliasview("", alias, table_ptr->belong_to_view->alias.str, "", true, lower_cas… in transform()
110 CalpontSystemCatalog::TableAliasName tn = make_aliasview("", "", alias, viewName); in transform()
119 …iew(table_ptr->db.str, table_ptr->table_name.str, table_ptr->alias.str, viewName, true, lower_case… in transform()
120 …gwi.viewName = make_aliastable(table_ptr->db.str, table_ptr->table_name.str, viewName, true, lower… in transform()
122 view->viewName(gwi.viewName); in transform()
[all …]
/dports/databases/mariadb105-server/mariadb-10.5.15/storage/columnstore/columnstore/dbcon/mysql/
H A Dha_view.cpp51 CalpontSystemCatalog::TableAliasName& View::viewName() in viewName() function in cal_impl_if::View
56 void View::viewName(execplan::CalpontSystemCatalog::TableAliasName& viewName) in viewName() function in cal_impl_if::View
58 fViewName = viewName; in viewName()
91 string viewName = getViewName(table_ptr); in transform() local
94 boost::algorithm::to_lower(viewName); in transform()
106 …gwi.viewName = make_aliasview("", alias, table_ptr->belong_to_view->alias.str, "", true, lower_cas… in transform()
110 CalpontSystemCatalog::TableAliasName tn = make_aliasview("", "", alias, viewName); in transform()
119 …iew(table_ptr->db.str, table_ptr->table_name.str, table_ptr->alias.str, viewName, true, lower_case… in transform()
120 …gwi.viewName = make_aliastable(table_ptr->db.str, table_ptr->table_name.str, viewName, true, lower… in transform()
122 view->viewName(gwi.viewName); in transform()
[all …]
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.web.servlet/src/main/java/org/springframework/web/servlet/mvc/
H A DUrlFilenameViewController.java127 String viewName = this.viewNameCache.get(uri); in getViewNameForUrlPath() local
128 if (viewName == null) { in getViewNameForUrlPath()
129 viewName = extractViewNameFromUrlPath(uri); in getViewNameForUrlPath()
130 viewName = postProcessViewName(viewName); in getViewNameForUrlPath()
131 this.viewNameCache.put(uri, viewName); in getViewNameForUrlPath()
133 return viewName; in getViewNameForUrlPath()
159 protected String postProcessViewName(String viewName) { in postProcessViewName() argument
160 return getPrefix() + viewName + getSuffix(); in postProcessViewName()
/dports/www/grails/grails-1.3.6/src/java/org/codehaus/groovy/grails/web/servlet/view/
H A DGrailsViewResolver.java78 protected View loadView(String viewName, Locale locale) throws Exception { in loadView() argument
81 if (VIEW_CACHE.containsKey(viewName) && !templateEngine.isReloadEnabled()) { in loadView()
82 return VIEW_CACHE.get(viewName); in loadView()
98 String gspView = localPrefix + viewName + DOT + format + GSP_SUFFIX; in loadView()
110 gspView = localPrefix + viewName + GSP_SUFFIX; in loadView()
120 VIEW_CACHE.put(viewName, view); in loadView()
124 AbstractUrlBasedView view = buildView(viewName); in loadView()
127 VIEW_CACHE.put(viewName, view); in loadView()
153 String viewName, ResourceLoader loader) { in resolveViewForController() argument
162 gspView = localPrefix + viewName + GSP_SUFFIX; in resolveViewForController()
[all …]
/dports/devel/php-ice37/ice-3.7.2/cpp/src/Ice/
H A DMetricsAdminI.cpp421 string viewName = p->first.substr(viewsPrefix.size()); in updateViews() local
422 string::size_type dotPos = viewName.find('.'); in updateViews()
425 viewName = viewName.substr(0, dotPos); in updateViews()
428 … if(views.find(viewName) != views.end() || _disabledViews.find(viewName) != _disabledViews.end()) in updateViews()
437 _disabledViews.insert(viewName); in updateViews()
447 …ews.insert(map<string, MetricsViewIPtr>::value_type(viewName, ICE_MAKE_SHARED(MetricsViewI, viewNa… in updateViews()
538 MetricsAdminI::enableMetricsView(string viewName, const Current&) in enableMetricsView() argument
553 MetricsAdminI::disableMetricsView(string viewName, const Current&) in disableMetricsView() argument
574 MetricsViewIPtr view = getMetricsView(viewName); in getMetricsView()
591 MetricsViewIPtr view = getMetricsView(viewName); in getMapMetricsFailures()
[all …]
/dports/devel/ice37/ice-3.7.2/cpp/src/Ice/
H A DMetricsAdminI.cpp421 string viewName = p->first.substr(viewsPrefix.size()); in updateViews() local
422 string::size_type dotPos = viewName.find('.'); in updateViews()
425 viewName = viewName.substr(0, dotPos); in updateViews()
428 … if(views.find(viewName) != views.end() || _disabledViews.find(viewName) != _disabledViews.end()) in updateViews()
437 _disabledViews.insert(viewName); in updateViews()
447 …ews.insert(map<string, MetricsViewIPtr>::value_type(viewName, ICE_MAKE_SHARED(MetricsViewI, viewNa… in updateViews()
538 MetricsAdminI::enableMetricsView(string viewName, const Current&) in enableMetricsView() argument
553 MetricsAdminI::disableMetricsView(string viewName, const Current&) in disableMetricsView() argument
574 MetricsViewIPtr view = getMetricsView(viewName); in getMetricsView()
591 MetricsViewIPtr view = getMetricsView(viewName); in getMapMetricsFailures()
[all …]
/dports/devel/py-ice37/ice-3.7.2/cpp/src/Ice/
H A DMetricsAdminI.cpp421 string viewName = p->first.substr(viewsPrefix.size()); in updateViews() local
422 string::size_type dotPos = viewName.find('.'); in updateViews()
425 viewName = viewName.substr(0, dotPos); in updateViews()
428 … if(views.find(viewName) != views.end() || _disabledViews.find(viewName) != _disabledViews.end()) in updateViews()
437 _disabledViews.insert(viewName); in updateViews()
447 …ews.insert(map<string, MetricsViewIPtr>::value_type(viewName, ICE_MAKE_SHARED(MetricsViewI, viewNa… in updateViews()
538 MetricsAdminI::enableMetricsView(string viewName, const Current&) in enableMetricsView() argument
553 MetricsAdminI::disableMetricsView(string viewName, const Current&) in disableMetricsView() argument
574 MetricsViewIPtr view = getMetricsView(viewName); in getMetricsView()
591 MetricsViewIPtr view = getMetricsView(viewName); in getMapMetricsFailures()
[all …]
/dports/www/joomla3/joomla3-3.9.24/components/com_config/controller/config/
H A Ddisplay.php34 $viewName = $this->input->getWord('view', 'config');
39 JLoader::registerPrefix(ucfirst($viewName), JPATH_ADMINISTRATOR . '/components/com_config');
51 $app->input->set('view', $viewName);
55 $paths->insert(JPATH_COMPONENT . '/view/' . $viewName . '/tmpl', 'normal');
57 $viewClass = 'ConfigView' . ucfirst($viewName) . ucfirst($viewFormat);
58 $modelClass = 'ConfigModel' . ucfirst($viewName);
62 if ($viewName !== 'close')
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.web.portlet/src/main/java/org/springframework/web/portlet/mvc/
H A DParameterizableViewController.java67 private String viewName; field in ParameterizableViewController
73 public void setViewName(String viewName) { in setViewName() argument
74 this.viewName = viewName; in setViewName()
81 return this.viewName; in getViewName()
86 if (this.viewName == null) { in initApplicationContext()
/dports/www/grails/grails-1.3.6/src/java/org/codehaus/groovy/grails/web/mapping/
H A DAbstractUrlMapping.java36 protected Object viewName; field in AbstractUrlMapping
53 …public AbstractUrlMapping(Object controllerName, Object actionName, Object viewName, ConstrainedPr… in AbstractUrlMapping() argument
57 this.viewName = viewName; in AbstractUrlMapping()
61 …protected AbstractUrlMapping(Object viewName, ConstrainedProperty[] constraints, ServletContext se… in AbstractUrlMapping() argument
62 this.viewName = viewName; in AbstractUrlMapping()
99 return viewName; in getViewName()

12345678910>>...45