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

1 2 3 4 5 6

  /external/llvm/include/llvm/Transforms/Utils/
BuildLibCalls.h 115 CallInst *CI;
121 bool fold(CallInst *CI, const DataLayout *TD, const TargetLibraryInfo *TLI);
  /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/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 61 CallInst *CI = dyn_cast<CallInst>(SI->getCondition());
62 if (!CI)
65 Function *Fn = CI->getCalledFunction();
69 Value *ArgValue = CI->getArgOperand(0);
70 ConstantInt *ExpectedValue = dyn_cast<ConstantInt>(CI->getArgOperand(1));
85 MDBuilder(CI->getContext()).createBranchWeights(Weights));
105 CallInst *CI = dyn_cast<CallInst>(CmpI->getOperand(0));
106 if (!CI)
109 Function *Fn = CI->getCalledFunction();
113 Value *ArgValue = CI->getArgOperand(0)
    [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;
  /ndk/sources/cxx-stl/llvm-libc++/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;
insert_size_value.pass.cpp 46 typedef typename C::const_iterator CI;
48 CI i = c1.insert(c1.begin() + P, size, x);
66 typedef typename C::const_iterator CI;
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);
66 typedef typename C::const_iterator CI;
97 typedef typename C::const_iterator CI;
103 CI it = c.cbegin() + i;
104 CI jt = c.cbegin() + j;
  /ndk/sources/cxx-stl/llvm-libc++/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/IR/
IRBuilder.cpp 57 CallInst *CI = CallInst::Create(Callee, Ops, "");
58 Builder->GetInsertBlock()->getInstList().insert(Builder->GetInsertPoint(),CI);
59 Builder->SetInstDebugLocation(CI);
60 return CI;
72 CallInst *CI = createCallHelper(TheFn, Ops, this);
76 CI->setMetadata(LLVMContext::MD_tbaa, TBAATag);
78 return CI;
92 CallInst *CI = createCallHelper(TheFn, Ops, this);
96 CI->setMetadata(LLVMContext::MD_tbaa, TBAATag);
100 CI->setMetadata(LLVMContext::MD_tbaa_struct, TBAAStructTag)
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
CharacterTest.java 140 public void test_codePointAt$CI() {
242 public void test_codePointBefore$CI() {
314 public void test_toCharsI$CI() {
    [all...]
  /external/clang/include/clang/Lex/
PreprocessorLexer.h 99 PPConditionalInfo CI;
100 CI.IfLoc = DirectiveStart;
101 CI.WasSkipping = WasSkipping;
102 CI.FoundNonSkip = FoundNonSkip;
103 CI.FoundElse = FoundElse;
104 ConditionalStack.push_back(CI);
106 void pushConditionalLevel(const PPConditionalInfo &CI) {
107 ConditionalStack.push_back(CI);
113 bool popConditionalLevel(PPConditionalInfo &CI) {
115 CI = ConditionalStack.back()
    [all...]
  /external/clang/lib/Rewrite/Frontend/
FrontendActions.cpp 33 ASTConsumer *HTMLPrintAction::CreateASTConsumer(CompilerInstance &CI,
35 if (raw_ostream *OS = CI.createDefaultOutputFile(false, InFile))
36 return CreateHTMLPrinter(OS, CI.getPreprocessor());
43 ASTConsumer *FixItAction::CreateASTConsumer(CompilerInstance &CI,
87 bool FixItAction::BeginSourceFileAction(CompilerInstance &CI,
97 Rewriter.reset(new FixItRewriter(CI.getDiagnostics(), CI.getSourceManager(),
98 CI.getLangOpts(), FixItOpts.get()));
107 bool FixItRecompile::BeginInvocation(CompilerInstance &CI) {
112 const FrontendOptions &FEOpts = CI.getFrontendOpts()
    [all...]

Completed in 579 milliseconds

1 2 3 4 5 6