HomeSort by relevance Sort by last modified time
    Searched defs:Context (Results 126 - 150 of 1592) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/tools/common/m2/repository/io/grpc/grpc-context/1.0.3/
grpc-context-1.0.3.jar 
  /external/clang/lib/ASTMatchers/Dynamic/
Diagnostics.cpp 24 Diagnostics::Context::Context(ConstructMatcherEnum, Diagnostics *Error,
31 Diagnostics::Context::Context(MatcherArgEnum, Diagnostics *Error,
40 Diagnostics::Context::~Context() { Error->ContextStack.pop_back(); }
46 // Merge all errors that happened while in this context.
  /external/skia/src/shaders/
SkShader.cpp 93 SkShaderBase::Context* SkShaderBase::makeContext(const ContextRec& rec, SkArenaAlloc* alloc) const {
99 SkShaderBase::Context* SkShaderBase::makeBurstPipelineContext(const ContextRec& rec,
114 SkShaderBase::Context::Context(const SkShaderBase& shader, const ContextRec& rec)
117 // We should never use a context for RP-only shaders.
123 // Because the context parameters must be valid at this point, we know that the matrix is
130 SkShaderBase::Context::~Context() {}
132 void SkShaderBase::Context::shadeSpan4f(int x, int y, SkPM4f dst[], int count) {
209 // SkShader::Context::shadeSpan4f() handles the paint opacity internally
    [all...]
  /external/skqp/src/shaders/
SkShader.cpp 93 SkShaderBase::Context* SkShaderBase::makeContext(const ContextRec& rec, SkArenaAlloc* alloc) const {
99 SkShaderBase::Context* SkShaderBase::makeBurstPipelineContext(const ContextRec& rec,
114 SkShaderBase::Context::Context(const SkShaderBase& shader, const ContextRec& rec)
117 // We should never use a context for RP-only shaders.
123 // Because the context parameters must be valid at this point, we know that the matrix is
130 SkShaderBase::Context::~Context() {}
132 void SkShaderBase::Context::shadeSpan4f(int x, int y, SkPM4f dst[], int count) {
209 // SkShader::Context::shadeSpan4f() handles the paint opacity internally
    [all...]
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
bwe_test_logging.cc 36 Logging::Context::Context(uint32_t name, int64_t timestamp_ms, bool enabled) {
40 Logging::Context::Context(const std::string& name, int64_t timestamp_ms,
45 Logging::Context::Context(const char* name, int64_t timestamp_ms,
50 Logging::Context::~Context() {
  /system/netd/server/
MDnsSdListener.h 56 class Context {
61 Context(int refNumber, MDnsSdListener *m) {
66 ~Context() {
75 DNSServiceRef *allocateServiceRef(int id, Context *c);
90 Context *mContext;
92 Element(int id, Context *context)
93 : mId(id), mNext(NULL), mContext(context), mReady(0) {}
  /build/soong/android/
register.go 79 type Context struct {
80 *blueprint.Context
83 func NewContext() *Context {
84 return &Context{blueprint.NewContext()}
87 func (ctx *Context) Register() {
100 registerMutators(ctx.Context, preArch, preDeps, postDeps)
  /build/soong/ui/build/
context.go 18 "context"
57 // Context combines a context.Context, logger.Logger, and StdIO redirection.
60 type Context struct{ *ContextImpl }
62 context.Context
  /device/linaro/bootloader/edk2/NetworkPkg/IpSecDxe/Ikev2/
Info.c 25 dependes on the Context's parameters.
29 @param[in] Context The Data passed from the caller. If the Context is not NULL
38 IN VOID *Context
60 if (Context != NULL) {
61 InfoContext = (IKEV2_INFO_EXCHANGE_CONTEXT *) Context;
91 // be same as the request MessageId which passed through the Context.
122 } else if (Context != NULL) {
147 // be same as the request MessageId which passed through the Context.
237 IKEV2_INFO_EXCHANGE_CONTEXT Context;
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Mtftp6Dxe/
Mtftp6Impl.c 340 MTFTP6_GETINFO_CONTEXT Context;
357 Context.Packet = Packet;
358 Context.PacketLen = PacketLength;
359 Context.Status = EFI_SUCCESS;
373 Token.Context = &Context;
387 return Context.Status;
  /external/clang/lib/AST/
ItaniumCXXABI.cpp 54 /// literals within a particular context.
64 ASTContext &Context = CallOperator->getASTContext();
67 Context.getFunctionType(Context.VoidTy, Proto->getParamTypes(),
69 Key = Context.getCanonicalType(Key);
99 ASTContext &Context;
101 ItaniumCXXABI(ASTContext &Ctx) : Context(Ctx) { }
105 const TargetInfo &Target = Context.getTargetInfo();
115 const llvm::Triple &T = Context.getTargetInfo().getTriple();
130 const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD)
    [all...]
  /external/compiler-rt/lib/tsan/dd/
dd_rtl.h 43 struct Context {
  /external/curl/docs/examples/
htmltitle.cpp 51 // libxml callback context structure
54 struct Context
56 Context(): addTitle(false) { }
139 Context *context = (Context *)voidContext; local
142 context->title = "";
143 context->addTitle = true;
155 Context *context = (Context *)voidContext local
181 Context *context = (Context *)voidContext; local
194 Context *context = (Context *)voidContext; local
242 Context context; local
    [all...]
  /external/gemmlowp/meta/
test_transform_benchmark.cc 48 template <typename Context, typename Params>
50 Context* context, const Params& params) {
75 MultiThreadTransform1D<Context, Params, kernel_size>(context, params);
83 MultiThreadTransform1D<Context, Params, kernel_size>(context, params);
101 typedef SimpleContext<gemmlowp::WorkersPool> Context;
102 Context context(4, new gemmlowp::WorkersPool())
    [all...]
  /external/google-breakpad/src/processor/
synth_minidump.cc 129 Context::Context(const Dump &dump, const MDRawContextX86 &context)
132 // The high 24 bits identify the CPU. Note that context records with no CPU
134 assert(((context.context_flags & MD_CONTEXT_CPU_MASK) == 0) ||
135 (context.context_flags & MD_CONTEXT_X86));
138 D32(context.context_flags);
139 D32(context.dr0);
140 D32(context.dr1);
141 D32(context.dr2)
    [all...]
  /external/llvm/examples/BrainF/
BrainFDriver.cpp 106 LLVMContext Context;
142 std::unique_ptr<Module> Mod(bf.parse(in, 65536, cf, Context)); // 64 KiB
  /external/llvm/examples/Fibonacci/
fibonacci.cpp 52 static Function *CreateFibFunction(Module *M, LLVMContext &Context) {
56 cast<Function>(M->getOrInsertFunction("fib", Type::getInt32Ty(Context),
57 Type::getInt32Ty(Context),
61 BasicBlock *BB = BasicBlock::Create(Context, "EntryBlock", FibF);
64 Value *One = ConstantInt::get(Type::getInt32Ty(Context), 1);
65 Value *Two = ConstantInt::get(Type::getInt32Ty(Context), 2);
72 BasicBlock *RetBB = BasicBlock::Create(Context, "return", FibF);
74 BasicBlock* RecurseBB = BasicBlock::Create(Context, "recurse", FibF);
81 ReturnInst::Create(Context, One, RetBB);
98 ReturnInst::Create(Context, Sum, RecurseBB)
    [all...]
  /external/llvm/include/llvm/Analysis/
CallGraphSCCPass.h 91 void *Context; // The CGPassManager object that is vending this.
95 CallGraphSCC(CallGraph &cg, void *context) : CG(cg), Context(context) {}
  /external/llvm/lib/Target/NVPTX/
NVVMIntrRange.cpp 68 LLVMContext &Context = C->getParent()->getContext();
69 IntegerType *Int32Ty = Type::getInt32Ty(Context);
73 C->setMetadata(LLVMContext::MD_range, MDNode::get(Context, LowAndHigh));
  /external/llvm/tools/llvm-dis/
llvm-dis.cpp 123 static void diagnosticHandler(const DiagnosticInfo &DI, void *Context) {
125 OS << (char *)Context << ": ";
141 static Expected<std::unique_ptr<Module>> openInputFile(LLVMContext &Context) {
148 getLazyBitcodeModule(std::move(*MBOrErr), Context,
166 getStreamedBitcodeModule(DisplayFilename, std::move(Streamer), Context);
177 LLVMContext Context;
180 Context.setDiagnosticHandler(diagnosticHandler, argv[0]);
184 Expected<std::unique_ptr<Module>> MOrErr = openInputFile(Context);
  /external/llvm/unittests/IR/
MDBuilderTest.cpp 22 LLVMContext Context;
26 MDBuilder MDHelper(Context);
33 MDBuilder MDHelper(Context);
46 MDBuilder MDHelper(Context);
61 MDBuilder MDHelper(Context);
73 MDBuilder MDHelper(Context);
83 MDBuilder MDHelper(Context);
TypeBuilderTest.cpp 19 LLVMContext Context;
20 EXPECT_EQ(Type::getVoidTy(Context), (TypeBuilder<void, true>::get(Context)));
21 EXPECT_EQ(Type::getVoidTy(Context), (TypeBuilder<void, false>::get(Context)));
23 EXPECT_EQ(Type::getInt8PtrTy(Context),
24 (TypeBuilder<void *, false>::get(Context)));
25 EXPECT_EQ(Type::getInt8PtrTy(Context),
26 (TypeBuilder<const void *, false>::get(Context)));
27 EXPECT_EQ(Type::getInt8PtrTy(Context),
    [all...]
  /external/oj-libjdwp/make/src/classes/build/tools/jdwpgen/
Context.java 30 class Context {
42 Context() {
47 private Context(String whereJava, String whereC) {
52 Context subcontext(String level) {
53 Context ctx;
55 ctx = new Context(level, level);
57 ctx = new Context(whereJava + "." + level, whereC + "_" + level);
64 private Context cloneContext() {
65 Context ctx = new Context(whereJava, whereC)
    [all...]
  /external/owasp/sanitizer/src/tests/org/owasp/html/
HtmlChangeReporterTest.java 37 static class Context {
43 final Context testContext = new Context();
49 HtmlChangeListener<Context> listener = new HtmlChangeListener<Context>() {
50 public void discardedTag(Context context, String elementName) {
51 assertSame(testContext, context);
56 Context context, String tagName, String... attributeNames)
    [all...]
  /external/spirv-llvm/lib/SPIRV/
SPIRVLowerBool.cpp 61 SPIRVLowerBool():ModulePass(ID), Context(nullptr) {
106 Context = &M.getContext();
123 LLVMContext *Context;

Completed in 805 milliseconds

1 2 3 4 56 7 8 91011>>