HomeSort by relevance Sort by last modified time
    Searched defs:Context (Results 1 - 25 of 726) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/deqp/modules/gles2/
tes2Context.cpp 21 * \brief OpenGL ES 2.0 test context.
40 Context::Context (tcu::TestContext& testCtx)
64 Context::~Context (void)
73 const tcu::RenderTarget& Context::getRenderTarget (void) const
  /external/deqp/modules/gles3/
tes3Context.cpp 21 * \brief OpenGL ES 3.0 test context.
37 Context::Context (tcu::TestContext& testCtx)
61 Context::~Context (void)
70 const tcu::RenderTarget& Context::getRenderTarget (void) const
  /external/parameter-framework/upstream/parameter/log/include/log/
Context.h 40 /** Log formatter which provide context indentation */
41 class Context
48 * @param[in] context name of the context to open
50 Context(Logger &logger, const std::string &context) : mLogger(logger)
52 mLogger.info() << context << " {";
57 ~Context()
64 Context(const Context &)
    [all...]
  /external/v8/tools/testrunner/objects/
context.py 29 class Context():
62 return Context(packed[0], packed[1], None, packed[2], False,
  /packages/inputmethods/LatinIME/tools/dicttool/compat/android/content/
Context.java 19 public class Context {
  /prebuilts/go/darwin-x86/src/cmd/go/
context.go 11 type Context struct {
24 func newContext(c *build.Context) *Context {
25 return &Context{
  /prebuilts/go/linux-x86/src/cmd/go/
context.go 11 type Context struct {
24 func newContext(c *build.Context) *Context {
25 return &Context{
  /art/runtime/arch/
context.h 30 // Representation of a thread's context on the executing machine, used to implement long jumps in
32 class Context {
34 // Creates a context for the running architecture
35 static Context* Create();
37 virtual ~Context() {}
39 // Re-initializes the registers for context re-use.
92 // Switches execution of the executing context to this context
  /external/deqp/framework/opengl/simplereference/
sglrContext.hpp 23 * \brief Simplified GLES reference context.
38 // Abstract drawing context with GL-style API
40 class Context
43 Context (glu::ContextType type) : m_type(type) {}
44 virtual ~Context (void) {}
204 // Helpers implemented by Context.
  /external/deqp/modules/gles31/
tes31Context.cpp 21 * \brief OpenGL ES 3.1 test context.
38 Context::Context (tcu::TestContext& testCtx)
49 Context::~Context (void)
54 void Context::createRenderContext (void)
77 void Context::destroyRenderContext (void)
86 const tcu::RenderTarget& Context::getRenderTarget (void) const
  /external/clang/include/clang/AST/
EvaluatedExprVisitor.h 32 const ASTContext &Context;
37 explicit EvaluatedExprVisitorBase(const ASTContext &Context) : Context(Context) { }
85 if (!CE->isUnevaluatedBuiltinCall(Context))
114 explicit EvaluatedExprVisitor(const ASTContext &Context) :
115 EvaluatedExprVisitorBase<make_ptr, ImplClass>(Context) { }
123 explicit ConstEvaluatedExprVisitor(const ASTContext &Context) :
124 EvaluatedExprVisitorBase<make_const_ptr, ImplClass>(Context) { }
  /external/llvm/tools/llvm-split/
llvm-split.cpp 39 LLVMContext &Context = getGlobalContext();
43 std::unique_ptr<Module> M = parseIRFile(InputFilename, Err, Context);
  /external/llvm/unittests/Transforms/Utils/
ValueMapperTest.cpp 20 LLVMContext Context;
21 TempMDTuple T = MDTuple::getTemporary(Context, None);
28 LLVMContext Context;
29 auto *D = MDTuple::getDistinct(Context, None);
44 LLVMContext Context;
45 Metadata *Old = MDTuple::getDistinct(Context, None);
46 auto *D = MDTuple::getDistinct(Context, Old);
49 Metadata *New = MDTuple::getDistinct(Context, None);
  /external/mesa3d/src/gallium/drivers/radeon/
loader.cpp 27 LLVMContext &Context = getGlobalContext();
30 M.reset(ParseIRFile(InputFilename, Err, Context));
  /external/llvm/tools/llvm-diff/
DifferenceEngine.h 36 /// A RAII object for recording the current context.
37 struct Context {
38 Context(DifferenceEngine &Engine, Value *L, Value *R) : Engine(Engine) {
42 ~Context() {
  /external/skia/include/core/
SkDrawLooper.h 39 class SK_API Context : ::SkNoncopyable {
41 Context() {}
42 virtual ~Context() {}
62 * Called right before something is being drawn. Returns a Context
65 * memory for the Context. The required size can be queried by calling
69 virtual Context* createContext(SkCanvas*, void* storage) const = 0;
72 * Returns the number of bytes needed to store subclasses of Context (belonging to the
  /external/clang/test/CodeGenCXX/
linetable-eh.cpp 27 class Context {
34 virtual shared_ptr<Context> GetContext () = 0;
  /external/clang/unittests/Tooling/
RefactoringCallbacksTest.cpp 32 RewriterTestContext Context;
33 FileID ID = Context.createInMemoryFile("input.cc", Code);
35 Context.Rewrite));
36 EXPECT_EQ(Expected, Context.getRewrittenText(ID));
RewriterTest.cpp 19 RewriterTestContext Context;
20 FileID ID = Context.createOnDiskFile("t.cpp", "line1\nline2\nline3\nline4");
21 Context.Rewrite.ReplaceText(Context.getLocation(ID, 2, 1), 5, "replaced");
22 EXPECT_FALSE(Context.Rewrite.overwriteChangedFiles());
24 Context.getFileContentFromDisk("t.cpp"));
28 RewriterTestContext Context;
29 FileID FailingID = Context.createInMemoryFile("invalid/failing.cpp", "test");
30 Context.Rewrite.ReplaceText(Context.getLocation(FailingID, 1, 2), 1, "other")
    [all...]
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
Writable.java 22 interface Context {
24 Context createSubcontext(Set<ClassName> newTypes);
27 Appendable write(Appendable appendable, Context context) throws IOException;
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/
Context.java 25 public interface Context {
  /external/libunwind/doc/
libunwind-ia64.tex 194 \section{The Unwind-Context Type}
  /external/llvm/examples/ModuleMaker/
ModuleMaker.cpp 26 LLVMContext Context;
30 Module *M = new Module("test", Context);
34 FunctionType::get(Type::getInt32Ty(Context), /*not vararg*/false);
42 BasicBlock *BB = BasicBlock::Create(Context, "EntryBlock", F);
45 Value *Two = ConstantInt::get(Type::getInt32Ty(Context), 2);
46 Value *Three = ConstantInt::get(Type::getInt32Ty(Context), 3);
56 BB->getInstList().push_back(ReturnInst::Create(Context, Add));
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyFastISel.cpp 47 LLVMContext *Context;
57 Context = &FuncInfo.Fn->getContext();
  /external/llvm/tools/llvm-as/
llvm-as.cpp 95 LLVMContext &Context = getGlobalContext();
101 std::unique_ptr<Module> M = parseAssemblyFile(InputFilename, Err, Context);

Completed in 1718 milliseconds

1 2 3 4 5 6 7 8 91011>>