HomeSort by relevance Sort by last modified time
    Searched refs:CS (Results 51 - 75 of 199) sorted by null

1 23 4 5 6 7 8

  /external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
UTF16BECharsetEncoderTest.java 29 private static final Charset CS = Charset.forName("utf-16be");
35 cs = CS;
UTF16LECharsetEncoderTest.java 29 private static final Charset CS = Charset.forName("utf-16le");
35 cs = CS;
UTFCharsetEncoderTest.java 29 private static final Charset CS = Charset.forName("utf-8");
35 cs = CS;
ISOCharsetEncoderTest.java 32 private static final Charset CS = Charset.forName("iso-8859-1");
38 cs = CS;
  /external/clang/lib/Analysis/
FormatStringParsing.h 37 FormatSpecifier &CS,
42 FormatSpecifier &CS, const char *Start,
  /external/llvm/include/llvm/Analysis/
InlineCost.h 126 InlineCost getInlineCost(CallSite CS, int Threshold);
135 InlineCost getInlineCost(CallSite CS, Function *Callee, int Threshold);
CallGraph.h 261 void addCalledFunction(CallSite CS, CallGraphNode *M) {
262 assert(!CS.getInstruction() ||
263 !CS.getCalledFunction() ||
264 !CS.getCalledFunction()->isIntrinsic());
265 CalledFunctions.push_back(std::make_pair(CS.getInstruction(), M));
279 void removeCallEdgeFor(CallSite CS);
293 void replaceCallEdge(CallSite CS, CallSite NewCS, CallGraphNode *NewNode);
  /external/llvm/include/llvm/Support/
CallSite.h 293 bool operator==(const CallSite &CS) const { return I == CS.I; }
294 bool operator!=(const CallSite &CS) const { return I != CS.I; }
295 bool operator<(const CallSite &CS) const {
296 return getInstruction() < CS.getInstruction();
311 ImmutableCallSite(CallSite CS) : Base(CS.getInstruction()) {}
  /external/llvm/lib/Transforms/IPO/
IPConstantPropagation.cpp 99 CallSite CS(cast<Instruction>(U));
100 if (!CS.isCallee(UI))
105 CallSite::arg_iterator AI = CS.arg_begin();
224 CallSite CS(*UI);
225 Instruction* Call = CS.getInstruction();
229 if (!Call || !CS.isCallee(UI))
243 New = CS.getArgument(A->getArgNo());
269 New = CS.getArgument(A->getArgNo());
DeadArgumentElimination.cpp 267 CallSite CS(Fn.use_back());
268 Instruction *Call = CS.getInstruction();
271 Args.assign(CS.arg_begin(), CS.arg_begin() + NumArgs);
274 AttributeSet PAL = CS.getAttributes();
289 cast<InvokeInst>(New)->setCallingConv(CS.getCallingConv());
293 cast<CallInst>(New)->setCallingConv(CS.getCallingConv());
369 CallSite CS(*I);
370 if (!CS || !CS.isCallee(I)
    [all...]
FunctionAttrs.cpp 127 CallSite CS(cast<Value>(I));
128 if (CS) {
130 if (CS.getCalledFunction() && SCCNodes.count(CS.getCalledFunction()))
132 AliasAnalysis::ModRefBehavior MRB = AA->getModRefBehavior(CS);
140 for (CallSite::arg_iterator CI = CS.arg_begin(), CE = CS.arg_end();
286 CallSite CS(U->getUser());
287 if (!CS.getInstruction()) { Captured = true; return true; }
289 Function *F = CS.getCalledFunction()
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
DependencyAnalysis.cpp 47 ImmutableCallSite CS = static_cast<const Value *>(Inst);
48 assert(CS && "Only calls can alter reference counts!");
51 AliasAnalysis::ModRefBehavior MRB = PA.getAA()->getModRefBehavior(CS);
55 for (ImmutableCallSite::arg_iterator I = CS.arg_begin(), E = CS.arg_end();
85 } else if (ImmutableCallSite CS = static_cast<const Value *>(Inst)) {
87 for (ImmutableCallSite::arg_iterator OI = CS.arg_begin(),
88 OE = CS.arg_end(); OI != OE; ++OI) {
ObjCARCAPElim.cpp 43 static bool MayAutorelease(ImmutableCallSite CS, unsigned Depth = 0);
70 bool ObjCARCAPElim::MayAutorelease(ImmutableCallSite CS, unsigned Depth) {
71 if (const Function *Callee = CS.getCalledFunction()) {
  /external/srec/srec/include/
comp_stats.h 129 #define dump_comp_stats1( CS,FP) dump_comp_stats( CS,FP)
140 #define dump_comp_stats1( CS,FP)
  /frameworks/compile/slang/
slang_rs_object_ref_count.h 53 explicit Scope(clang::CompoundStmt *CS) : mCS(CS) {
141 void VisitCompoundStmt(clang::CompoundStmt *CS);
  /external/icu4c/test/cintltst/
cbiditst.h 41 #define CS U_COMMON_NUMBER_SEPARATOR
  /external/libphonenumber/java/test/com/android/i18n/phonenumbers/
RegionCode.java 36 static final String CS = "CS";
  /external/llvm/include/llvm/CodeGen/
Analysis.h 89 bool isInTailCallPosition(ImmutableCallSite CS, const TargetLowering &TLI);
  /external/llvm/lib/Analysis/
AliasAnalysisCounter.cpp 109 ModRefResult getModRefInfo(ImmutableCallSite CS,
152 AliasAnalysisCounter::getModRefInfo(ImmutableCallSite CS,
154 ModRefResult R = getAnalysis<AliasAnalysis>().getModRefInfo(CS, Loc);
168 errs() << "\t<->" << *CS.getInstruction() << '\n';
  /external/clang/include/clang/Analysis/Analyses/
FormatString.h 318 ConversionSpecifier CS;
326 : CS(isPrintf), UsesPositionalArg(false), argIndex(0) {}
400 static bool classof(const analyze_format_string::ConversionSpecifier *CS) {
401 return CS->isPrintfKind();
427 void setConversionSpecifier(const PrintfConversionSpecifier &cs) {
428 CS = cs;
459 return cast<PrintfConversionSpecifier>(CS);
529 static bool classof(const analyze_format_string::ConversionSpecifier *CS) {
530 return !CS->isPrintfKind()
    [all...]
  /external/llvm/lib/Analysis/IPA/
CallGraphSCCPass.cpp 251 CallSite CS(cast<Value>(I));
252 if (!CS) continue;
253 Function *Callee = CS.getCalledFunction();
259 CallSites.find(CS.getInstruction());
267 if (ExistingNode->getFunction() == CS.getCalledFunction())
275 if (CheckingMode && CS.getCalledFunction() &&
285 if (Function *Callee = CS.getCalledFunction()) {
299 CGN->replaceCallEdge(CS, CS, CalleeNode);
309 if (Function *Callee = CS.getCalledFunction())
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BlockCounter.cpp 29 CountKey(const StackFrameContext *CS, unsigned ID)
30 : CallSite(CS), BlockID(ID) {}
  /external/jsilver/src/org/clearsilver/jni/
JniCs.java 19 import org.clearsilver.CS;
27 * JNI implementation of the CS interface.
29 public class JniCs implements CS {
88 throw new NullPointerException("CS is closed.");
95 throw new NullPointerException("CS is closed.");
102 throw new NullPointerException("CS is closed.");
111 throw new NullPointerException("CS is closed.");
125 // The optional CS file loader to use to read in files
137 * Set the CS file loader to use
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 763 static bool isSafeToEliminateVarargsCast(const CallSite CS,
773 if (!CS.isByValArgument(ix))
    [all...]
  /external/clang/lib/AST/
StmtPrinter.cpp 199 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(If->getThen())) {
201 PrintRawCompoundStmt(CS);
212 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Else)) {
214 PrintRawCompoundStmt(CS);
240 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Node->getBody())) {
242 PrintRawCompoundStmt(CS);
262 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Node->getBody())) {
263 PrintRawCompoundStmt(CS);
296 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Node->getBody())) {
297 PrintRawCompoundStmt(CS);
    [all...]

Completed in 559 milliseconds

1 23 4 5 6 7 8