HomeSort by relevance Sort by last modified time
    Searched defs:Context (Results 1 - 25 of 499) 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/linux-tools-perf/src/tools/perf/scripts/perl/Perf-Trace-Util/lib/Perf/Trace/
Context.pm 1 package Perf::Trace::Context;
23 XSLoader::load('Perf::Trace::Context', $VERSION);
29 Perf::Trace::Context - Perl extension for accessing functions in perf.
33 use Perf::Trace::Context;
  /external/llvm/unittests/Transforms/Utils/
ValueMapperTest.cpp 20 LLVMContext Context;
21 TempMDTuple T = MDTuple::getTemporary(Context, None);
  /external/v8/tools/testrunner/objects/
context.py 29 class Context():
59 return Context(packed[0], packed[1], None, packed[2], False,
  /packages/inputmethods/LatinIME/tools/dicttool/compat/android/content/
Context.java 19 public class 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.
81 // 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)
70 void Context::destroyRenderContext (void)
79 const tcu::RenderTarget& Context::getRenderTarget (void) const
  /external/clang/unittests/Tooling/
RewriterTest.cpp 16 RewriterTestContext Context;
17 FileID ID = Context.createOnDiskFile("t.cpp", "line1\nline2\nline3\nline4");
18 Context.Rewrite.ReplaceText(Context.getLocation(ID, 2, 1), 5, "replaced");
19 EXPECT_FALSE(Context.Rewrite.overwriteChangedFiles());
21 Context.getFileContentFromDisk("t.cpp"));
25 RewriterTestContext Context;
26 FileID FailingID = Context.createInMemoryFile("invalid/failing.cpp", "test");
27 Context.Rewrite.ReplaceText(Context.getLocation(FailingID, 1, 2), 1, "other")
    [all...]
RefactoringCallbacksTest.cpp 32 RewriterTestContext Context;
33 FileID ID = Context.createInMemoryFile("input.cc", Code);
35 Context.Rewrite));
36 EXPECT_EQ(Expected, Context.getRewrittenText(ID));
  /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() {
llvm-diff.cpp 35 static std::unique_ptr<Module> readModule(LLVMContext &Context,
38 std::unique_ptr<Module> M = parseIRFile(Name, Diag, Context);
73 LLVMContext Context;
76 std::unique_ptr<Module> LModule = readModule(Context, LeftFilename);
77 std::unique_ptr<Module> RModule = readModule(Context, RightFilename);
  /external/skia/include/core/
SkDrawLooper.h 41 class SK_API Context : ::SkNoncopyable {
43 Context() {}
44 virtual ~Context() {}
64 * Called right before something is being drawn. Returns a Context
67 * memory for the Context. The required size can be queried by calling
71 virtual Context* createContext(SkCanvas*, void* storage) const = 0;
74 * 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/libunwind/doc/
libunwind-ia64.tex 194 \section{The Unwind-Context Type}
  /external/llvm/bindings/python/llvm/tests/
test_bitreader.py 5 from ..core import Context
  /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/tools/llvm-as/
llvm-as.cpp 96 LLVMContext &Context = getGlobalContext();
102 std::unique_ptr<Module> M = parseAssemblyFile(InputFilename, Err, Context);
  /external/protobuf/src/google/protobuf/compiler/java/
java_context.h 59 // A context object holds the information that is shared among all code
61 class Context {
63 explicit Context(const FileDescriptor* file);
64 ~Context();
66 // Get the name resolver associated with this context. The resolver
87 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Context);
java_context.cc 45 Context::Context(const FileDescriptor* file)
50 Context::~Context() {
53 ClassNameResolver* Context::GetNameResolver() {
100 void Context::InitializeFieldGeneratorInfo(const FileDescriptor* file) {
106 void Context::InitializeFieldGeneratorInfoForMessage(
126 void Context::InitializeFieldGeneratorInfoForFields(
170 const FieldGeneratorInfo* Context::GetFieldGeneratorInfo(
181 const OneofGeneratorInfo* Context::GetOneofGeneratorInfo
    [all...]
  /external/skia/src/gpu/gl/mesa/
SkMesaGLContext.h 17 typedef intptr_t Context;
40 Context fContext;
  /frameworks/compile/slang/
slang_rs_check_ast.h 32 slang::RSContext *Context;
51 : Context(Con),
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
dot.rb 51 class Context
109 tree_template = Context.new( tree_template, :nodes => [], :edges => [] )
154 edge_template = Context.new( edge_template,
165 node_template = Context.new( NODE_TEMPLATE )

Completed in 545 milliseconds

1 2 3 4 5 6 7 8 91011>>