HomeSort by relevance Sort by last modified time
    Searched full:contexts (Results 501 - 525 of 2585) sorted by null

<<21222324252627282930>>

  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
NFAConfiguration.java 102 * syntactic/semantic contexts are the same. I don't think
104 * semantic contexts, but might as well define equals to be
  /external/iproute2/man/man8/
ss.8 82 .B \-z, \-\-contexts
179 Display all TCP sockets with process SELinux security contexts.
  /external/mesa3d/docs/relnotes/
11.0.7.html 28 because compatibility contexts are not supported.
127 <li>mesa: support GL_RED/GL_RG in ES2 contexts when driver support exists</li>
6.3 63 contexts so they can't be deleted until they're unbound in _all_ contexts.
  /external/mesa3d/src/mesa/drivers/dri/common/
dri_util.c 106 * It's used to create global state for the driver across contexts on the same
377 * [...] This bit is supported for OpenGL and OpenGL ES contexts.
396 * OpenGL contexts must support the GL_ARB_robustness extension, or
397 * equivalent core API functional- ity. OpenGL ES contexts must support
409 /* There are no forward-compatible contexts before OpenGL 3.0. The
412 * "Forward-compatible contexts are defined only for OpenGL versions
415 * Forward-looking contexts are supported by silently converting the
587 ** to handle surfaceless contexts properly.
  /external/python/cpython2/Doc/library/
contextlib.rst 1 :mod:`contextlib` --- Utilities for :keyword:`with`\ -statement contexts
5 :synopsis: Utilities for with-statement contexts.
  /external/selinux/libselinux/man/man3/
selinux_restorecon.3 4 selinux_restorecon \- restore file(s) default SELinux security contexts
17 restores file default security contexts on filesystems that support extended
  /external/selinux/libselinux/src/
label_media.c 2 * Media contexts backend for labeling system
23 struct selabel_lookup_rec lr; /* holds contexts for lookup result */
query_user_context.c 8 /* context_menu - given a list of contexts, presents a menu of security contexts
matchpathcon.c 39 struct selabel_lookup_rec *contexts,
43 char **ctx = &contexts->ctx_raw;
50 rc = selabel_validate(rec, contexts);
71 * An array for mapping integers to contexts
467 /* Compare two contexts to see if their differences are "significant",
  /external/v8/src/compiler/
js-context-specialization.cc 12 #include "src/contexts.h"
110 // contexts that have the same value in the corresponding context slot.
  /external/v8/src/
contexts.cc 5 #include "src/contexts.h"
238 PrintF(" - trying other script contexts\n");
240 // Try other script contexts.
350 // Catch contexts have the variable name in the extension slot.
385 // to with, script or native contexts up the context chain.
401 // whitelisted, then only consider with, script or native contexts.
582 // Check that the context belongs to the weak native contexts list.
733 // contexts. This is necessary to fix circular dependencies.
  /system/sepolicy/prebuilts/api/26.0/public/
recovery.te 17 # Set security contexts on files that are not known to the loaded policy.
40 # Get file contexts
  /system/sepolicy/public/
recovery.te 17 # Set security contexts on files that are not known to the loaded policy.
41 # Get file contexts
  /prebuilts/devtools/tools/lib/
org-eclipse-core-commands-3.6.0.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.core.commands_3.6.0.I20100512-1500.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/org-eclipse-core-commands/3.6.0/
org-eclipse-core-commands-3.6.0.jar 
  /external/icu/icu4c/source/i18n/
collationdatabuilder.cpp 79 * Default CE32 for all contexts with this same prefix.
85 * CE32 for the built contexts.
86 * When fetching CEs from the builder, the contexts are built into their runtime form
88 * The result is cached in the list head. It is reset when the contexts are modified.
176 builderData.contexts = builder.contexts.getBuffer();
272 builderData.contexts = builder.contexts.getBuffer();
797 const UChar *p = base->contexts + Collation::indexFromCE32(ce32);
834 const UChar *p = base->contexts + Collation::indexFromCE32(ce32)
    [all...]
  /libcore/ojluni/src/main/java/javax/net/ssl/
SSLSession.java 161 * visible across different access control contexts.
176 * visible across different access control contexts.
194 * visible across different access control contexts.
197 * across different access control contexts
208 * visible across different access control contexts.
  /external/clang/lib/AST/
DeclBase.cpp 1056 DeclContext::collectAllContexts(SmallVectorImpl<DeclContext *> &Contexts){
1057 Contexts.clear();
1060 Contexts.push_back(this);
1067 Contexts.push_back(N);
1069 std::reverse(Contexts.begin(), Contexts.end());
    [all...]
  /external/clang/tools/c-index-test/
c-index-test.c 2222 unsigned long long contexts; local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
LocaleDisplayNamesImpl.java 100 public static LocaleDisplayNames getInstance(ULocale locale, DisplayContext... contexts) {
102 return cache.get(locale, contexts);
135 public LocaleDisplayNamesImpl(ULocale locale, DisplayContext... contexts) {
140 for (DisplayContext contextItem : contexts) {
735 public LocaleDisplayNames get(ULocale locale, DisplayContext... contexts) {
740 for (DisplayContext contextItem : contexts) {
767 this.cache = new LocaleDisplayNamesImpl(locale, contexts);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
LocaleDisplayNamesImpl.java 96 public static LocaleDisplayNames getInstance(ULocale locale, DisplayContext... contexts) {
98 return cache.get(locale, contexts);
131 public LocaleDisplayNamesImpl(ULocale locale, DisplayContext... contexts) {
136 for (DisplayContext contextItem : contexts) {
731 public LocaleDisplayNames get(ULocale locale, DisplayContext... contexts) {
736 for (DisplayContext contextItem : contexts) {
763 this.cache = new LocaleDisplayNamesImpl(locale, contexts);
  /external/deqp/modules/egl/
teglGLES2SharedRenderingPerfTests.cpp 720 TestThread (const vector<TestContext*> contexts);
749 TestThread::TestThread (const vector<TestContext*> contexts)
750 : m_contexts (contexts)
854 // Create contexts and resources
862 // Destroy resources and contexts
882 void createThreads (vector<TestThread*>& threads, int threadCount, int perThreadContextCount, vector<TestContext*>& contexts)
884 DE_ASSERT(threadCount * perThreadContextCount == (int)contexts.size());
892 threadContexts.push_back(contexts[threadNdx * perThreadContextCount + contextNdx]);
986 log << TestLog::Message << "Number of contexts used to render with each thread: " << config.perThreadContextCount << TestLog::EndMessage;
992 log << TestLog::Message << "Shared contexts." << TestLog::EndMessage
    [all...]
  /external/icu/icu4c/source/common/unicode/
uldnames.h 276 * @param contexts List of one or more context settings (e.g. for dialect
278 * @param length Number of items in the contexts list
286 uldn_openForContext(const char * locale, UDisplayContext *contexts,

Completed in 1521 milliseconds

<<21222324252627282930>>