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

1 2 3 4 5 6 7 8 91011>>

  /external/swiftshader/third_party/LLVM/include/llvm/Transforms/Utils/
BuildLibCalls.h 100 CallInst *CI;
106 bool fold(CallInst *CI, const TargetData *TD);
  /external/clang/lib/StaticAnalyzer/Frontend/
ModelInjector.h 45 ModelInjector(CompilerInstance &CI);
65 CompilerInstance &CI;
  /external/clang/unittests/Frontend/
CodeGenActionTest.cpp 33 CompilerInstance &CI = getCompilerInstance();
34 if (!CI.hasPreprocessor())
36 if (!CI.hasSema())
37 CI.createSema(getTranslationUnitKind(), nullptr);
  /external/llvm/tools/bugpoint-passes/
TestPasses.cpp 61 if (CallInst *CI = dyn_cast<CallInst>(I)) {
62 if (!CI->use_empty())
63 CI->replaceAllUsesWith(Constant::getNullValue(CI->getType()));
64 CI->getParent()->getInstList().erase(CI);
  /external/libcxx/test/std/containers/sequences/deque/deque.cons/
assign_size_value.pass.cpp 48 typedef typename C::const_iterator CI;
52 for (CI i = c1.begin(); i != c1.end(); ++i)
  /external/llvm/unittests/ADT/
IntervalMapTest.cpp 45 UUMap::const_iterator CI;
46 CI = map.begin();
47 EXPECT_TRUE(CI == I);
50 EXPECT_TRUE(I2 == CI);
  /external/swiftshader/third_party/LLVM/unittests/ADT/
IntervalMapTest.cpp 45 UUMap::const_iterator CI;
46 CI = map.begin();
47 EXPECT_TRUE(CI == I);
50 EXPECT_TRUE(I2 == CI);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/deque/deque.cons/
assign_size_value.pass.cpp 48 typedef typename C::const_iterator CI;
52 for (CI i = c1.begin(); i != c1.end(); ++i)
assign_iter_iter.pass.cpp 67 typedef typename C::const_iterator CI;
68 typedef input_iterator<CI> ICI;
  /build/make/tools/droiddoc/test/generics/src/com/android/generics/
FooBar.java 24 public class CI extends C implements Iface
  /external/clang/lib/Frontend/
ASTMerge.cpp 20 ASTMergeAction::CreateASTConsumer(CompilerInstance &CI, StringRef InFile) {
21 return AdaptedAction->CreateASTConsumer(CI, InFile);
24 bool ASTMergeAction::BeginSourceFileAction(CompilerInstance &CI,
30 AdaptedAction->setCompilerInstance(&CI);
31 return AdaptedAction->BeginSourceFileAction(CI, Filename);
35 CompilerInstance &CI = getCompilerInstance();
36 CI.getDiagnostics().getClient()->BeginSourceFile(
37 CI.getASTContext().getLangOpts());
38 CI.getDiagnostics().SetArgToStringFn(&FormatASTNodeDiagnosticArgument,
39 &CI.getASTContext())
    [all...]
  /external/libcxx/test/std/containers/sequences/deque/deque.capacity/
resize_size.pass.cpp 49 typedef typename C::const_iterator CI;
54 CI i = c1.begin();
resize_size_value.pass.cpp 49 typedef typename C::const_iterator CI;
54 CI i = c1.begin();
  /external/libcxx/test/std/containers/sequences/deque/deque.modifiers/
emplace.pass.cpp 50 typedef typename C::const_iterator CI;
52 CI i = c1.emplace(c1.begin() + P, Emplaceable(1, 2.5));
insert_rvalue.pass.cpp 50 typedef typename C::const_iterator CI;
52 CI i = c1.insert(c1.begin() + P, MoveOnly(x));
insert_size_value.pass.cpp 49 typedef typename C::const_iterator CI;
51 CI i = c1.insert(c1.begin() + P, size, x);
114 typedef typename C::const_iterator CI;
120 CI it = c.cbegin() + i;
121 CI jt = c.cbegin() + j;
insert_value.pass.cpp 47 typedef typename C::const_iterator CI;
49 CI i = c1.insert(c1.begin() + P, x);
96 typedef typename C::const_iterator CI;
102 CI it = c.cbegin() + i;
103 CI jt = c.cbegin() + j;
  /external/libcxx/test/std/containers/sequences/deque/deque.special/
copy.pass.cpp 50 typedef typename C::const_iterator CI;
52 typedef random_access_iterator<CI> RACI;
53 typedef input_iterator<CI> ICI;
copy_backward.pass.cpp 50 typedef typename C::const_iterator CI;
52 typedef random_access_iterator<CI> RACI;
move.pass.cpp 50 typedef typename C::const_iterator CI;
52 typedef random_access_iterator<CI> RACI;
move_backward.pass.cpp 50 typedef typename C::const_iterator CI;
52 typedef random_access_iterator<CI> RACI;
  /external/llvm/lib/Transforms/Scalar/
LowerExpectIntrinsic.cpp 57 CallInst *CI = dyn_cast<CallInst>(SI.getCondition());
58 if (!CI)
61 Function *Fn = CI->getCalledFunction();
65 Value *ArgValue = CI->getArgOperand(0);
66 ConstantInt *ExpectedValue = dyn_cast<ConstantInt>(CI->getArgOperand(1));
80 MDBuilder(CI->getContext()).createBranchWeights(Weights));
99 CallInst *CI;
103 CI = dyn_cast<CallInst>(BI.getCondition());
107 CI = dyn_cast<CallInst>(CmpI->getOperand(0));
110 if (!CI)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/deque/deque.capacity/
resize_size.pass.cpp 49 typedef typename C::const_iterator CI;
54 CI i = c1.begin();
resize_size_value.pass.cpp 49 typedef typename C::const_iterator CI;
54 CI i = c1.begin();
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/deque/deque.modifiers/
emplace.pass.cpp 50 typedef typename C::const_iterator CI;
52 CI i = c1.emplace(c1.begin() + P, Emplaceable(1, 2.5));

Completed in 1067 milliseconds

1 2 3 4 5 6 7 8 91011>>