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

1 2 3 4 5 6 7

  /external/clang/lib/StaticAnalyzer/Frontend/
ModelInjector.h 45 ModelInjector(CompilerInstance &CI);
65 CompilerInstance &CI;
  /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 47 typedef typename C::const_iterator CI;
51 for (CI i = c1.begin(); i != c1.end(); ++i)
assign_iter_iter.pass.cpp 66 typedef typename C::const_iterator CI;
67 typedef input_iterator<CI> ICI;
  /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);
  /ndk/tests/device/test-stlport_shared-exception/jni/
cond1.cpp 6 #define CI(stmt) try { stmt; abort(); } catch (int) { }
22 CI((argc+1 ? throw 0 : has_destructor()));
23 CI((0 ? has_destructor() : throw 0));
24 CI((1 ? throw 0 : has_destructor()));
29 CI((argc+1 ? throw 0 : no_destructor()));
30 CI((0 ? no_destructor() : throw 0));
31 CI((1 ? throw 0 : no_destructor()));
36 CI(throw PI(i));
42 CI(0 ? 0 : throw PI(i));
45 CI(0 ? has_destructor() : throw PI(i))
    [all...]
  /ndk/tests/device/test-stlport_static-exception/jni/
cond1.cpp 6 #define CI(stmt) try { stmt; abort(); } catch (int) { }
22 CI((argc+1 ? throw 0 : has_destructor()));
23 CI((0 ? has_destructor() : throw 0));
24 CI((1 ? throw 0 : has_destructor()));
29 CI((argc+1 ? throw 0 : no_destructor()));
30 CI((0 ? no_destructor() : throw 0));
31 CI((1 ? throw 0 : no_destructor()));
36 CI(throw PI(i));
42 CI(0 ? 0 : throw PI(i));
45 CI(0 ? has_destructor() : throw PI(i))
    [all...]
  /build/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 46 typedef typename C::const_iterator CI;
51 CI i = c1.begin();
resize_size_value.pass.cpp 46 typedef typename C::const_iterator CI;
51 CI i = c1.begin();
  /external/libcxx/test/std/containers/sequences/deque/deque.modifiers/
emplace.pass.cpp 49 typedef typename C::const_iterator CI;
51 CI i = c1.emplace(c1.begin() + P, Emplaceable(1, 2.5));
insert_rvalue.pass.cpp 49 typedef typename C::const_iterator CI;
51 CI i = c1.insert(c1.begin() + P, MoveOnly(x));
insert_size_value.pass.cpp 48 typedef typename C::const_iterator CI;
50 CI i = c1.insert(c1.begin() + P, size, x);
113 typedef typename C::const_iterator CI;
119 CI it = c.cbegin() + i;
120 CI jt = c.cbegin() + j;
insert_value.pass.cpp 46 typedef typename C::const_iterator CI;
48 CI i = c1.insert(c1.begin() + P, x);
95 typedef typename C::const_iterator CI;
101 CI it = c.cbegin() + i;
102 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/Target/AMDGPU/
AMDGPUAnnotateKernelFeatures.cpp 64 CallInst *CI = cast<CallInst>(U);
66 Function *CallingFunction = CI->getParent()->getParent();
  /external/llvm/lib/Transforms/Scalar/
LowerExpectIntrinsic.cpp 45 CallInst *CI = dyn_cast<CallInst>(SI.getCondition());
46 if (!CI)
49 Function *Fn = CI->getCalledFunction();
53 Value *ArgValue = CI->getArgOperand(0);
54 ConstantInt *ExpectedValue = dyn_cast<ConstantInt>(CI->getArgOperand(1));
68 MDBuilder(CI->getContext()).createBranchWeights(Weights));
87 CallInst *CI;
91 CI = dyn_cast<CallInst>(BI.getCondition());
95 CI = dyn_cast<CallInst>(CmpI->getOperand(0));
98 if (!CI)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.capacity/
resize_size.pass.cpp 45 typedef typename C::const_iterator CI;
50 CI i = c1.begin();
61 typedef typename C::const_iterator CI;
resize_size_value.pass.cpp 45 typedef typename C::const_iterator CI;
50 CI i = c1.begin();
61 typedef typename C::const_iterator CI;
shrink_to_fit.pass.cpp 54 typedef typename C::const_iterator CI;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.cons/
assign_iter_iter.pass.cpp 58 typedef typename C::const_iterator CI;
68 typedef typename C::const_iterator CI;
69 typedef input_iterator<CI> ICI;
81 typedef typename C::const_iterator CI;

Completed in 413 milliseconds

1 2 3 4 5 6 7