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

1 2 3 4 5 6

  /external/llvm/include/llvm/Transforms/Utils/
BuildLibCalls.h 123 CallInst *CI;
130 bool fold(CallInst *CI, const DataLayout *TD, const TargetLibraryInfo *TLI);
  /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/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 19 ASTConsumer *ASTMergeAction::CreateASTConsumer(CompilerInstance &CI,
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/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;
  /external/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;
assign_size_value.pass.cpp 46 typedef typename C::const_iterator CI;
51 for (CI i = c1.begin(); i != c1.end(); ++i)
60 typedef typename C::const_iterator CI;
  /external/libcxx/test/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));
63 typedef typename C::const_iterator CI;
insert_rvalue.pass.cpp 49 typedef typename C::const_iterator CI;
51 CI i = c1.insert(c1.begin() + P, MoveOnly(x));
69 typedef typename C::const_iterator CI;
  /external/libcxx/test/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/ObjCARC/
ObjCARCUtil.cpp 177 const CallInst *CI = cast<CallInst>(I);
179 if (const Function *F = CI->getCalledFunction()) {
206 return GetCallSiteClass(CI);
  /external/llvm/lib/Transforms/Utils/
LowerExpectIntrinsic.cpp 62 CallInst *CI = dyn_cast<CallInst>(SI->getCondition());
63 if (!CI)
66 Function *Fn = CI->getCalledFunction();
70 Value *ArgValue = CI->getArgOperand(0);
71 ConstantInt *ExpectedValue = dyn_cast<ConstantInt>(CI->getArgOperand(1));
86 MDBuilder(CI->getContext()).createBranchWeights(Weights));
106 CallInst *CI;
110 CI = dyn_cast<CallInst>(BI->getCondition());
114 CI = dyn_cast<CallInst>(CmpI->getOperand(0));
117 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;
assign_size_value.pass.cpp 46 typedef typename C::const_iterator CI;
51 for (CI i = c1.begin(); i != c1.end(); ++i)
60 typedef typename C::const_iterator CI;

Completed in 2776 milliseconds

1 2 3 4 5 6