Home
last modified time | relevance | path

Searched refs:contexts (Results 1 – 25 of 552) sorted by relevance

12345678910>>...23

/external/jetty/src/java/org/eclipse/jetty/server/handler/
DContextHandlerCollection.java109 Object contexts=contextMap.get(contextPath); in mapContexts() local
117 if (contexts instanceof Map) in mapContexts()
118 hosts=(Map)contexts; in mapContexts()
122 hosts.put("*",contexts); in mapContexts()
129 contexts=hosts.get(vhost); in mapContexts()
130 contexts=LazyList.add(contexts,branches[b]); in mapContexts()
131 hosts.put(vhost,contexts); in mapContexts()
134 else if (contexts instanceof Map) in mapContexts()
136 Map hosts=(Map)contexts; in mapContexts()
137 contexts=hosts.get("*"); in mapContexts()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DLocaleDisplayNames.java108 public static LocaleDisplayNames getInstance(ULocale locale, DisplayContext... contexts) { in getInstance() argument
113 locale, (Object[])contexts); in getInstance()
121 result = new LastResortLocaleDisplayNames(locale, contexts); in getInstance()
136 public static LocaleDisplayNames getInstance(Locale locale, DisplayContext... contexts) { in getInstance() argument
137 return getInstance(ULocale.forLocale(locale), contexts); in getInstance()
447 private DisplayContext[] contexts; field in LocaleDisplayNames.LastResortLocaleDisplayNames
453 this.contexts = new DisplayContext[] {context}; in LastResortLocaleDisplayNames()
456 private LastResortLocaleDisplayNames(ULocale locale, DisplayContext... contexts) { in LastResortLocaleDisplayNames() argument
458 this.contexts = new DisplayContext[contexts.length]; in LastResortLocaleDisplayNames()
459 System.arraycopy(contexts, 0, this.contexts, 0, contexts.length); in LastResortLocaleDisplayNames()
[all …]
/external/clang/tools/libclang/
DCIndexCodeCompletion.cpp355 unsigned long long contexts = 0; in getContextsForContextKind() local
360 contexts = CXCompletionContext_MacroName; in getContextsForContextKind()
367 contexts = CXCompletionContext_AnyType | in getContextsForContextKind()
370 contexts |= CXCompletionContext_EnumTag | in getContextsForContextKind()
379 contexts = CXCompletionContext_AnyType | in getContextsForContextKind()
383 contexts |= CXCompletionContext_EnumTag | in getContextsForContextKind()
392 contexts = CXCompletionContext_AnyValue; in getContextsForContextKind()
394 contexts |= CXCompletionContext_AnyType | in getContextsForContextKind()
405 contexts = CXCompletionContext_ObjCObjectValue | in getContextsForContextKind()
409 contexts |= CXCompletionContext_CXXClassTypeValue | in getContextsForContextKind()
[all …]
/external/deqp/modules/gles3/stress/
Des3sLongRunningTests.cpp72 const std::vector<gls::ProgramContext> contexts(1, progLib.generateBufferContext(4)); in init() local
123 contexts, cases[caseNdx].probs, in init()
184 …const std::vector<gls::ProgramContext> contexts (1, progLib.generateTextureContext(numTextures, 5… in init() local
191 contexts, cases[caseNdx].probs, in init()
200 …const std::vector<gls::ProgramContext> contexts(1, progLib.generateTextureContext(1, 128, 128, 0.5… in init() local
241 contexts, cases[caseNdx].probs, in init()
249 std::vector<gls::ProgramContext> contexts; in init() local
250 contexts.push_back(progLib.generateFragmentPointLightContext(512, 512)); in init()
251 contexts.push_back(progLib.generateVertexUniformLoopLightContext(512, 512)); in init()
278 contexts, cases[caseNdx].probs, in init()
[all …]
/external/deqp/modules/gles2/stress/
Des2sLongRunningTests.cpp72 const std::vector<gls::ProgramContext> contexts(1, progLib.generateBufferContext(4)); in init() local
123 contexts, cases[caseNdx].probs, in init()
184 …const std::vector<gls::ProgramContext> contexts (1, progLib.generateTextureContext(numTextures, 5… in init() local
191 contexts, cases[caseNdx].probs, in init()
200 …const std::vector<gls::ProgramContext> contexts(1, progLib.generateTextureContext(1, 128, 128, 0.5… in init() local
241 contexts, cases[caseNdx].probs, in init()
249 std::vector<gls::ProgramContext> contexts; in init() local
250 contexts.push_back(progLib.generateFragmentPointLightContext(512, 512)); in init()
251 contexts.push_back(progLib.generateVertexUniformLoopLightContext(512, 512)); in init()
278 contexts, cases[caseNdx].probs, in init()
[all …]
/external/llvm/tools/llvm-diff/
DDiffConsumer.cpp73 unsigned N = contexts.size(); in printValue()
76 DiffContext &ctxt = contexts[N]; in printValue()
95 if (contexts.empty()) return; in header()
97 I = contexts.begin(), E = contexts.end(); I != E; ++I) { in header()
144 contexts.push_back(DiffContext(L, R)); in enterContext()
149 Differences |= contexts.back().Differences; in exitContext()
150 contexts.pop_back(); in exitContext()
/external/deqp/modules/egl/
DteglColorClearCase.cpp168 …Surface surface, const Config& config, const std::vector<std::pair<EGLint, EGLContext> >& contexts) in executeForContexts() argument
193 EGLint api = contexts[0].first; in executeForContexts()
194 EGLContext context = contexts[0].second; in executeForContexts()
208 …std::pair<EGLint, EGLContext> >::const_iterator ctxIter = contexts.begin(); ctxIter != contexts.en… in executeForContexts()
230 EGLint api = contexts[0].first; in executeForContexts()
231 EGLContext context = contexts[0].second; in executeForContexts()
329 …Surface surface, const Config& config, const std::vector<std::pair<EGLint, EGLContext> >& contexts) in executeForContexts() argument
351 int numThreads = (int)contexts.size(); in executeForContexts()
389 …ClearThreadSp(new ColorClearThread(egl, display, surface, contexts[threadNdx].second, contexts[thr… in executeForContexts()
399 EGLint api = contexts[0].first; in executeForContexts()
[all …]
DteglRenderCase.cpp307 vector<std::pair<EGLint, EGLContext> > contexts; in executeForSurface() local
308 contexts.reserve(3*m_numContextsPerApi); // 3 types of contexts at maximum. in executeForSurface()
324contexts.push_back(std::make_pair(EGL_OPENGL_ES2_BIT, egl.createContext(display, config.config, EG… in executeForSurface()
331contexts.push_back(std::make_pair(EGL_OPENGL_ES3_BIT_KHR, egl.createContext(display, config.config… in executeForSurface()
338contexts.push_back(std::make_pair(EGL_OPENGL_ES_BIT, egl.createContext(display, config.config, EGL… in executeForSurface()
345contexts.push_back(std::make_pair(EGL_OPENVG_BIT, egl.createContext(display, config.config, EGL_NO… in executeForSurface()
352 …teForContexts(display, surface, Config(config.config, config.surfaceTypeBit, m_apiMask), contexts); in executeForSurface()
359 …for (vector<std::pair<EGLint, EGLContext> >::iterator i = contexts.begin(); i != contexts.end(); i… in executeForSurface()
365 …for (vector<std::pair<EGLint, EGLContext> >::iterator i = contexts.begin(); i != contexts.end(); i… in executeForSurface()
DteglRenderTests.cpp676 …urface surface, const Config& config, const std::vector<std::pair<EGLint, EGLContext> >& contexts);
694 …Surface surface, const Config& config, const std::vector<std::pair<EGLint, EGLContext> >& contexts) in executeForContexts() argument
699 const int numContexts = (int)contexts.size(); in executeForContexts()
715 vector<ProgramSp> programs (contexts.size()); in executeForContexts()
735 EGLint api = contexts[ctxNdx].first; in executeForContexts()
736 EGLContext context = contexts[ctxNdx].second; in executeForContexts()
746 EGLint api = contexts[0].first; in executeForContexts()
747 EGLContext context = contexts[0].second; in executeForContexts()
760 EGLint api = contexts[ctxNdx].first; in executeForContexts()
761 EGLContext context = contexts[ctxNdx].second; in executeForContexts()
[all …]
DteglMultiThreadTests.cpp1002 vector<EGLContext>& contexts = (thread.getId() == 0 ? m_contexts0 : m_contexts1); in createDestroyObjects() local
1037 else if (contexts.size() > 5 && ((m_types & TYPE_CONTEXT) != 0)) in createDestroyObjects()
1052 else if (contexts.size() < 3 && ((m_types & TYPE_CONTEXT) != 0)) in createDestroyObjects()
1199 contexts.push_back(context); in createDestroyObjects()
1259 const int contextNdx = rnd.getInt(0, (int)(contexts.size()-1)); in createDestroyObjects()
1261 EGLU_CHECK_CALL(egl, destroyContext(m_display, contexts[contextNdx])); in createDestroyObjects()
1262 …ThreadLog::BeginMessage << "eglDestroyContext(" << m_display << ", " << contexts[contextNdx] << "… in createDestroyObjects()
1263 contexts.erase(contexts.begin() + contextNdx); in createDestroyObjects()
1281 vector<EGLContext>& contexts = (thread.getId() == 0 ? m_contexts0 : m_contexts1); in pushObjectsToShared() local
1298 for (int contextNdx = 0; contextNdx < (int)contexts.size(); contextNdx++) in pushObjectsToShared()
[all …]
DteglColorClearCase.hpp52 const std::vector<std::pair<eglw::EGLint, eglw::EGLContext> >& contexts);
70 const std::vector<std::pair<eglw::EGLint, eglw::EGLContext> >& contexts);
/external/libselinux/src/
Dlabel.c46 struct selabel_lookup_rec *contexts) in selabel_validate() argument
50 if (!rec->validating || contexts->validated) in selabel_validate()
53 rc = selinux_validate(&contexts->ctx_raw); in selabel_validate()
57 contexts->validated = 1; in selabel_validate()
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
DTailoredSet.java102 comparePrefixes(c, data.contexts, dataIndex + 2, baseData.contexts, baseIndex + 2); in compare()
104 addPrefixes(data, c, data.contexts, dataIndex + 2); in compare()
109 addPrefixes(baseData, c, baseData.contexts, baseIndex + 2); in compare()
126 … compareContractions(c, data.contexts, dataIndex + 2, baseData.contexts, baseIndex + 2); in compare()
128 addContractions(c, data.contexts, dataIndex + 2); in compare()
133 addContractions(c, baseData.contexts, baseIndex + 2); in compare()
353 addContractions(c, d.contexts, idx + 2); in addPrefix()
DCollationDataBuilder.java582 CharsTrie.Iterator prefixes = CharsTrie.iterator(base.contexts, trieIndex + 2, 0); in copyFromBaseCE32()
652 CharsTrie.Iterator suffixes = CharsTrie.iterator(base.contexts, trieIndex + 2, 0); in copyContractionsFromBaseCE32()
977 data.contexts = contexts.toString(); in buildMappings()
989 contexts.setLength(0); in clearContexts()
1002 contexts.setLength(0); in buildContexts()
1133 int index = contexts.indexOf(context.toString()); in addContextTrie()
1135 index = contexts.length(); in addContextTrie()
1136 contexts.append(context); in addContextTrie()
1219 builderData.contexts = builder.contexts.toString(); in fetchCEs()
1313 builderData.contexts = builder.contexts.toString(); in getCE32FromBuilderData()
[all …]
/external/valgrind/memcheck/tests/
Daddressable.stderr.exp10 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
39 ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 0 from 0)
48 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
62 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
82 ERROR SUMMARY: 2 errors from 2 contexts (suppressed: 0 from 0)
91 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
/external/valgrind/drd/tests/
Dthreaded-fork-vcs.stderr.exp3 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
6 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
Dthreaded-fork.stderr.exp3 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
6 ERROR SUMMARY: 0 errors from 0 contexts (suppressed: 0 from 0)
/external/jetty/src/resources/org/eclipse/jetty/server/jmx/
DServer-mbean.properties6 contexts: MMBean:RO:The contexts of this server key
/external/selinux/libselinux/src/
Dlabel.c141 struct selabel_lookup_rec *contexts) in selabel_validate() argument
145 if (!rec->validating || contexts->validated) in selabel_validate()
148 rc = selinux_validate(&contexts->ctx_raw); in selabel_validate()
152 contexts->validated = 1; in selabel_validate()
Dlabel_internal.h80 struct selabel_lookup_rec *contexts) hidden;
96 struct selabel_lookup_rec *contexts,
/external/icu/icu4c/source/i18n/
Dcollationsets.cpp83 const UChar *p = data->contexts + Collation::indexFromCE32(ce32); in compare()
86 const UChar *q = baseData->contexts + Collation::indexFromCE32(baseCE32); in compare()
93 const UChar *q = baseData->contexts + Collation::indexFromCE32(baseCE32); in compare()
99 const UChar *p = data->contexts + Collation::indexFromCE32(ce32); in compare()
106 const UChar *q = baseData->contexts + Collation::indexFromCE32(baseCE32); in compare()
117 const UChar *q = baseData->contexts + Collation::indexFromCE32(baseCE32); in compare()
319 const UChar *p = d->contexts + Collation::indexFromCE32(ce32); in addPrefix()
541 const UChar *p = data->contexts + Collation::indexFromCE32(ce32); in handlePrefixes()
560 const UChar *p = data->contexts + Collation::indexFromCE32(ce32); in handleContractions()
/external/jetty/src/java/org/eclipse/jetty/server/session/
DJDBCSessionIdManager.java493 Handler[] contexts = _server.getChildHandlersByClass(ContextHandler.class); in invalidateAll() local
494 for (int i=0; contexts!=null && i<contexts.length; i++) in invalidateAll()
496 …SessionHandler sessionHandler = (SessionHandler)((ContextHandler)contexts[i]).getChildHandlerByCla… in invalidateAll()
835 Handler[] contexts = _server.getChildHandlersByClass(ContextHandler.class); in scavenge() local
836 for (int i=0; contexts!=null && i<contexts.length; i++) in scavenge()
839 …SessionHandler sessionHandler = (SessionHandler)((ContextHandler)contexts[i]).getChildHandlerByCla… in scavenge()
/external/clang/test/Index/
Dcomplete-member-access.m48 // CHECK-CC1: Completion contexts:
56 // CHECK-CC2: Completion contexts:
66 // CHECK-CC3: Completion contexts:
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
DAppleObjCRuntime.cpp207 SymbolContextList contexts; in GetPrintForDebuggerAddr() local
210 …ules.FindSymbolsWithNameAndType(ConstString ("_NSPrintForDebugger"), eSymbolTypeCode, contexts)) && in GetPrintForDebuggerAddr()
211 …odules.FindSymbolsWithNameAndType(ConstString ("_CFPrintForDebugger"), eSymbolTypeCode, contexts))) in GetPrintForDebuggerAddr()
214 contexts.GetContextAtIndex(0, context); in GetPrintForDebuggerAddr()
/external/mesa3d/src/glx/apple/
DRELEASE_NOTES52 contexts requires a similar visual or GLXFBConfig be used in the
71 contexts, though they are all direct contexts by definition (see above).

12345678910>>...23