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

1 2 3 4 5 6 7 8 91011>>

  /art/runtime/arch/
context.h 27 // Representation of a thread's context on the executing machine, used to implement long jumps in
29 class Context {
31 // Creates a context for the running architecture
32 static Context* Create();
34 virtual ~Context() {}
36 // Re-initializes the registers for context re-use.
58 // Switch execution of the executing context to this context
  /external/chromium_org/v8/tools/testrunner/objects/
context.py 29 class Context():
49 return Context(packed[0], packed[1], None, packed[2], False,
  /external/linux-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/clang/lib/AST/
MangleNumberingContext.cpp 1 //===--- MangleNumberingContext.cpp - Context for mangling numbers --------===//
25 ASTContext &Context = CallOperator->getASTContext();
27 QualType Key = Context.getFunctionType(Context.VoidTy, Proto->getArgTypes(),
29 Key = Context.getCanonicalType(Key);
ItaniumCXXABI.cpp 32 ASTContext &Context;
34 ItaniumCXXABI(ASTContext &Ctx) : Context(Ctx) { }
38 const TargetInfo &Target = Context.getTargetInfo();
59 const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD);
61 Context.toCharUnitsFromBits(Context.getTargetInfo().getPointerWidth(0));
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
loader.cpp 27 LLVMContext &Context = getGlobalContext();
30 M.reset(ParseIRFile(InputFilename, Err, Context));
  /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 Module *ReadModule(LLVMContext &Context, StringRef Name) {
37 Module *M = ParseIRFile(Name, Diag, Context);
72 LLVMContext Context;
75 Module *LModule = ReadModule(Context, LeftFilename);
76 Module *RModule = ReadModule(Context, RightFilename);
  /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 90 LLVMContext &Context = getGlobalContext();
96 OwningPtr<Module> M(ParseAssemblyFile(InputFilename, Err, Context));
  /external/llvm/tools/llvm-link/
llvm-link.cpp 57 LLVMContext& Context) {
62 Result = ParseIRFile(FN, Err, Context);
74 LLVMContext &Context = getGlobalContext();
82 InputFilenames[BaseArg], Context));
91 OwningPtr<Module> M(LoadFile(argv[0], InputFilenames[i], Context));
  /external/chromium/webkit/glue/
websocketstreamhandle_impl.cc 23 // WebSocketStreamHandleImpl::Context -----------------------------------------
25 class WebSocketStreamHandleImpl::Context
26 : public base::RefCounted<Context>,
29 explicit Context(WebSocketStreamHandleImpl* handle);
52 friend class base::RefCounted<Context>;
53 ~Context() {
61 // |bridge_| is alive from Connect to DidClose, so Context must be alive
65 DISALLOW_COPY_AND_ASSIGN(Context);
68 WebSocketStreamHandleImpl::Context::Context(WebSocketStreamHandleImpl* handle
    [all...]
  /external/chromium_org/net/base/
file_stream_context_posix.cc 47 FileStream::Context::Context(const BoundNetLog& bound_net_log,
57 FileStream::Context::Context(base::PlatformFile file,
69 FileStream::Context::~Context() {
72 int64 FileStream::Context::GetFileSize() const {
83 int FileStream::Context::ReadAsync(IOBuffer* in_buf,
92 base::Bind(&Context::ReadFileImpl, base::Unretained(this), buf, buf_len),
93 base::Bind(&Context::ProcessAsyncResult
    [all...]
  /external/chromium_org/webkit/child/
websocketstreamhandle_impl.cc 32 // WebSocketStreamHandleImpl::Context -----------------------------------------
34 class WebSocketStreamHandleImpl::Context
35 : public base::RefCounted<Context>,
38 explicit Context(WebSocketStreamHandleImpl* handle);
63 friend class base::RefCounted<Context>;
64 virtual ~Context() {
72 // |bridge_| is alive from Connect to DidClose, so Context must be alive
76 DISALLOW_COPY_AND_ASSIGN(Context);
79 WebSocketStreamHandleImpl::Context::Context(WebSocketStreamHandleImpl* handle
    [all...]
  /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 )
  /external/chromium_org/chrome/app/
metro_driver_win.cc 16 typedef int (*InitMetro)(LPTHREAD_START_ROUTINE thread_proc, void* context);
18 struct Context {
24 Context* context = reinterpret_cast<Context*>(param); local
25 int rv = context->fn(context->instance);
26 delete context;
65 Context* context = new Context local
    [all...]
  /external/chromium_org/chrome/browser/plugins/
plugin_info_message_filter.h 37 class Context {
39 Context(int render_process_id, Profile* profile);
41 Context();
42 ~Context();
101 Context context_;
  /external/chromium_org/third_party/angle_dx11/src/compiler/preprocessor/
Tokenizer.h 22 struct Context
53 Context mContext; // Scanner extra.
  /external/chromium_org/third_party/skia/include/gpu/gl/
SkMesaGLContext.h 17 typedef intptr_t Context;
32 Context fOldContext;
44 Context fContext;
  /external/llvm/examples/HowToUseJIT/
HowToUseJIT.cpp 56 LLVMContext Context;
59 Module *M = new Module("test", Context);
65 cast<Function>(M->getOrInsertFunction("add1", Type::getInt32Ty(Context),
66 Type::getInt32Ty(Context),
71 BasicBlock *BB = BasicBlock::Create(Context, "EntryBlock", Add1F);
97 cast<Function>(M->getOrInsertFunction("foo", Type::getInt32Ty(Context),
101 BB = BasicBlock::Create(Context, "EntryBlock", FooF);
  /external/llvm/include/llvm/Analysis/
CallGraphSCCPass.h 84 void *Context; // The CGPassManager object that is vending this.
87 CallGraphSCC(void *context) : Context(context) {}
  /external/llvm/include/llvm/Target/
Mangler.h 37 MCContext &Context;
51 Mangler(MCContext &Context, const TargetMachine *TM)
52 : Context(Context), TM(TM), NextAnonGlobalID(1) {}

Completed in 2197 milliseconds

1 2 3 4 5 6 7 8 91011>>