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

1 23 4 5 6 7 8 91011>>

  /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 32 LLVMContext Context;
36 Module *M = new Module("test", Context);
40 FunctionType::get(Type::getInt32Ty(Context), /*not vararg*/false);
48 BasicBlock *BB = BasicBlock::Create(Context, "EntryBlock", F);
51 Value *Two = ConstantInt::get(Type::getInt32Ty(Context), 2);
52 Value *Three = ConstantInt::get(Type::getInt32Ty(Context), 3);
62 BB->getInstList().push_back(ReturnInst::Create(Context, Add));
  /external/llvm/tools/llvm-as/
llvm-as.cpp 94 LLVMContext Context;
100 std::unique_ptr<Module> M = parseAssemblyFile(InputFilename, Err, Context);
  /external/llvm/tools/llvm-as-fuzzer/
llvm-as-fuzzer.cpp 56 LLVMContext Context;
69 M = parseAssembly(MemBuf->getMemBufferRef(), Err, Context);
  /external/llvm/tools/llvm-diff/
llvm-diff.cpp 33 static std::unique_ptr<Module> readModule(LLVMContext &Context,
36 std::unique_ptr<Module> M = parseIRFile(Name, Diag, Context);
71 LLVMContext Context;
74 std::unique_ptr<Module> LModule = readModule(Context, LeftFilename);
75 std::unique_ptr<Module> RModule = readModule(Context, RightFilename);
  /external/llvm/unittests/Analysis/
CallGraphTest.cpp 47 LLVMContext Context;
48 Module M("", Context);
55 LLVMContext Context;
56 Module M("", Context);
  /external/llvm/unittests/IR/
DebugTypeODRUniquingTest.cpp 18 LLVMContext Context;
19 EXPECT_FALSE(Context.isODRUniquingDebugTypes());
20 Context.enableDebugTypeODRUniquing();
21 EXPECT_TRUE(Context.isODRUniquingDebugTypes());
22 Context.disableDebugTypeODRUniquing();
23 EXPECT_FALSE(Context.isODRUniquingDebugTypes());
27 LLVMContext Context;
28 MDString &UUID = *MDString::get(Context, "string");
32 Context, UUID, dwarf::DW_TAG_class_type, nullptr, nullptr, 0, nullptr,
36 Context.enableDebugTypeODRUniquing()
    [all...]
WaymarkTest.cpp 23 LLVMContext Context;
27 return ConstantInt::get(Type::getInt8Ty(Context), c);
29 FunctionType *FT = FunctionType::get(Type::getVoidTy(Context), true);
  /external/swiftshader/third_party/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/swiftshader/third_party/LLVM/tools/llvm-as/
llvm-as.cpp 91 LLVMContext &Context = getGlobalContext();
97 std::auto_ptr<Module> M(ParseAssemblyFile(InputFilename, Err, Context));
  /external/swiftshader/third_party/LLVM/tools/llvm-diff/
llvm-diff.cpp 37 static Module *ReadModule(LLVMContext &Context, StringRef Name) {
39 Module *M = ParseIRFile(Name, Diag, Context);
74 LLVMContext Context;
77 Module *LModule = ReadModule(Context, LeftFilename);
78 Module *RModule = ReadModule(Context, RightFilename);
82 DifferenceEngine Engine(Context, Consumer);
DifferenceEngine.h 37 /// A RAII object for recording the current context.
38 struct Context {
39 Context(DifferenceEngine &Engine, Value *L, Value *R) : Engine(Engine) {
43 ~Context() {
60 DifferenceEngine(LLVMContext &context, Consumer &consumer)
61 : context(context), consumer(consumer), globalValueOracle(0) {}
85 LLVMContext &context; member in class:llvm::DifferenceEngine
  /external/swiftshader/third_party/subzero/src/
IceInstrumentation.cpp 36 LoweringContext Context;
37 Context.init(Func->getNodes().front());
39 Context.init(Node);
40 while (!Context.atEnd()) {
42 instrumentFuncStart(Context);
45 instrumentInst(Context);
47 Context.advanceCur();
48 Context.advanceNext();
59 void Instrumentation::instrumentInst(LoweringContext &Context) {
60 assert(!Context.atEnd())
    [all...]
  /frameworks/compile/slang/
slang_rs_check_ast.h 32 slang::RSContext *Context;
51 : Context(Con),
  /hardware/interfaces/renderscript/1.0/default/
Context.h 36 struct Context : public IContext {
37 Context(uint32_t sdkVersion, ContextType ct, int32_t flags);
  /packages/apps/Nfc/nci/jni/extns/pn54x/src/mifare/
phFriNfc.h 38 * First Parameter: Context
39 * Set to the address of the called instance (component instance context
43 * context structure instance of the called component. Such a structure
85 void* Context; /* Instance address (context) parameter.
89 * the component context structure instance
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
context.py 29 """Factory function for creating context objects."""
34 return Context(policy, name)
37 class Context(symbol.PolicySymbol):
39 """A SELinux security context/security attribute."""
49 """The user portion of the context."""
54 """The role portion of the context."""
59 """The type portion of the context."""
64 """The MLS range of the context."""
  /external/protobuf/src/google/protobuf/compiler/java/
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...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Include/Protocol/
MmioDevice.h 38 // Context for the protocol
40 VOID *Context;
  /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/brotli/java/org/brotli/dec/
Context.java 10 * Common context lookup table for all context modes.
12 final class Context {

Completed in 485 milliseconds

1 23 4 5 6 7 8 91011>>