/external/libvpx/libvpx/vp8/common/ |
context.c | 16 int Contexts[vp8_coef_counter_dimen];
|
/bionic/libc/system_properties/include/system_properties/ |
contexts.h | 34 class Contexts { 36 virtual ~Contexts() {
|
contexts_pre_split.h | 31 #include "contexts.h" 35 class ContextsPreSplit : public Contexts {
|
contexts_serialized.h | 34 #include "contexts.h" 36 class ContextsSerialized : public Contexts {
|
contexts_split.h | 31 #include "contexts.h" 36 class ContextsSplit : public Contexts {
|
system_properties.h | 35 #include "contexts.h" 79 // contexts. 85 Contexts* contexts_;
|
/external/clang/lib/Format/ |
TokenAnnotator.cpp | 39 Contexts.push_back(Context(tok::unknown, 1, /*IsExpression=*/false)); 54 if (Previous.Previous->is(tok::r_paren) && Contexts.size() > 1 && 61 Left->ParentBracket = Contexts.back().ContextKind; 66 bool InExprContext = Contexts.back().IsExpression; 68 Contexts.back().IsExpression = false; 71 Contexts.back().InTemplateArgument = 102 Contexts[Contexts.size() - 2].IsExpression && 116 Left->ParentBracket = Contexts.back().ContextKind; 120 Contexts.back().ColonIsForRangeExpr [all...] |
/external/grpc-grpc-java/core/src/main/java/io/grpc/ |
Contexts.java | 25 public final class Contexts { 27 private Contexts() {
|
/external/syzkaller/vendor/google.golang.org/appengine/aetest/ |
instance_classic.go | 8 // for multiple test Contexts that delegate all App Engine API calls to that
|
/external/syzkaller/vendor/golang.org/x/net/context/ |
context.go | 16 // Programs that use Contexts should follow these rules to keep interfaces 20 // Do not store Contexts inside a struct type; instead, pass a Context 35 // Contexts are safe for simultaneous use by multiple goroutines. 38 // Contexts. 53 // whether Contexts are propagated correctly in a program.
|
pre_go19.go | 76 // // Package user defines a User type that's stored in Contexts. 81 // // User is the type of value stored in the Contexts. 88 // // userKey is the key for user.User values in Contexts. It is
|
/external/clang/lib/Analysis/ |
AnalysisDeclContext.cpp | 85 llvm::DeleteContainerSeconds(Contexts); 310 AnalysisDeclContext *&AC = Contexts[D]; 391 LOC *L = cast_or_null<LOC>(Contexts.FindNodeOrInsertPos(ID, InsertPos)); 395 Contexts.InsertNode(L, InsertPos); 409 cast_or_null<StackFrameContext>(Contexts.FindNodeOrInsertPos(ID, InsertPos)); 412 Contexts.InsertNode(L, InsertPos); 433 cast_or_null<BlockInvocationContext>(Contexts.FindNodeOrInsertPos(ID, 437 Contexts.InsertNode(L, InsertPos); 610 llvm::DeleteContainerSeconds(Contexts); 620 for (llvm::FoldingSet<LocationContext>::iterator I = Contexts.begin() [all...] |
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/S3Support/Dxe/ |
QncS3Support.h | 53 EFI_DISPATCH_CONTEXT_UNION Contexts[1];
|
QncS3Support.c | 211 *Context = &mS3Parameter->Contexts[mS3Parameter->StorePosition];
212 CopyMem (&mS3Parameter->Contexts[mS3Parameter->StorePosition], DispatchItem->Parameter, sizeof(UINT32));
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/ |
DeclContext.cpp | 27 /// that. In that case, just do not unique anything that refers to the contexts 56 // By default stop gathering child contexts. 78 // because of the way we identify contexts, and they won't be generated 181 auto ContextIter = Contexts.find(&Key); 183 if (ContextIter == Contexts.end()) { 189 std::tie(ContextIter, Inserted) = Contexts.insert(NewContext); 199 assert(ContextIter != Contexts.end());
|
DeclContext.h | 65 /// The contexts are conceptually organized as a tree (eg. a function scope is 143 DeclContext::Map Contexts;
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-profdata/ |
llvm-profdata.cpp | 262 // Initialize the writer contexts. 263 SmallVector<std::unique_ptr<WriterContext>, 4> Contexts; 265 Contexts.emplace_back(llvm::make_unique<WriterContext>( 270 loadInput(Input, Contexts[0].get()); 277 Pool.async(loadInput, Input, Contexts[Ctx].get()); 282 // Merge the writer contexts together (~ lg(NumThreads) serial steps). 283 unsigned Mid = Contexts.size() / 2; 284 unsigned End = Contexts.size(); 288 Pool.async(mergeWriterContexts, Contexts[I].get(), 289 Contexts[I + Mid].get()) [all...] |
/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/mesa3d/docs/specs/ |
MESA_multithread_makecurrent.spec | 37 For some applications, maintaining per-thread contexts and 66 Replace the following sentence from section 2.2 Rendering Contexts: 78 Replace the following sentence from section 3.3.7 Rendering Contexts: 85 Replace the following sentence from section 3.5 Rendering Contexts: 94 None. The GLX extension only extends to direct rendering contexts. 133 (5) What requirements should be placed on the user managing contexts 143 share in synchronization for binding of their own contexts, so the 144 refcounting of the contexts is required to be threadsafe. 146 (6) Does this apply to indirect contexts? 149 for indirect contexts is left as-is [all...] |
/external/clang/lib/Sema/ |
CodeCompleteConsumer.cpp | 282 SmallVector<const DeclContext *, 2> Contexts; 286 Contexts.push_back(DC); 296 for (unsigned I = Contexts.size(); I != 0; --I) { 303 const DeclContext *CurDC = Contexts[I-1];
|
/external/clang/include/clang/Analysis/ |
AnalysisContext.h | 380 llvm::FoldingSet<LocationContext> Contexts; 411 ContextMap Contexts;
|
/external/grpc-grpc-java/core/src/test/java/io/grpc/ |
ContextsTest.java | 19 import static io.grpc.Contexts.interceptCall; 20 import static io.grpc.Contexts.statusFromCancelled; 43 * Tests for {@link Contexts}.
|
/external/clang/lib/Frontend/ |
ASTUnit.cpp | 263 /// \brief Determine the set of code-completion contexts in which this 275 uint64_t Contexts = 0; 278 // Types can appear in these contexts. 280 Contexts |= (1LL << CodeCompletionContext::CCC_TopLevel) 287 // In C++, types can appear in expressions contexts (for functional casts). 289 Contexts |= (1LL << CodeCompletionContext::CCC_Expression); 294 Contexts |= (1LL << CodeCompletionContext::CCC_ObjCMessageReceiver); 298 Contexts |= (1LL << CodeCompletionContext::CCC_ObjCInterfaceName); 302 Contexts |= (1LL << CodeCompletionContext::CCC_EnumTag); 309 Contexts |= (1LL << CodeCompletionContext::CCC_UnionTag) [all...] |
/external/clang/tools/libclang/ |
CIndexCodeCompletion.cpp | 296 unsigned long long Contexts; 329 Contexts(CXCompletionContext_Unknown), 355 unsigned long long contexts = 0; local 360 contexts = CXCompletionContext_MacroName; 367 contexts = CXCompletionContext_AnyType | 370 contexts |= CXCompletionContext_EnumTag | 379 contexts = CXCompletionContext_AnyType | 383 contexts |= CXCompletionContext_EnumTag | 392 contexts = CXCompletionContext_AnyValue; 394 contexts |= CXCompletionContext_AnyType [all...] |
/external/llvm/tools/dsymutil/ |
DwarfLinker.cpp | 86 /// The contexts are conceptually organised as a tree (eg. a function 163 DeclContext::Map Contexts; [all...] |