HomeSort by relevance Sort by last modified time
    Searched refs:CS (Results 1 - 25 of 161) sorted by null

1 2 3 4 5 6 7

  /external/jsilver/src/org/clearsilver/
ClearsilverFactory.java 20 * A factory for constructing new CS and HDF objects. Allows applications to
21 * provide subclasses of HDF or CS to be used by the Java Clearsilver
27 * Create a new CS object.
28 * @param hdf the HDF object to use in constructing the CS object.
29 * @return a new CS object
31 public CS newCs(HDF hdf);
34 * Create a new CS object.
35 * @param hdf the HDF object to use in constructing the CS object.
37 * CS object.
38 * @return a new CS objec
    [all...]
DelegatedCs.java 22 * Utility class that delegates all methods of an CS object. Made to
23 * facilitate the transition to CS being an interface and thus not
26 * This class, and its subclasses must take care to wrap or unwrap HDF and CS
30 public abstract class DelegatedCs implements CS {
31 private final CS cs; field in class:DelegatedCs
33 public DelegatedCs(CS cs) {
35 this.cs = cs;
    [all...]
CS.java 22 public interface CS extends Closeable {
35 * Clean up CS object state.
50 * Parse the given string as a CS template.
56 * Generate output from the CS templates and HDF objects that have been read
69 * Set the CS file loader to use
  /external/clang/test/CodeGenCXX/
2003-11-27-MultipleInheritanceThunk.cpp 7 CallSite(const CallSite &CS);
13 virtual int getModRefInfo(CallSite CS);
23 int getModRefInfo(CallSite CS) {
  /external/llvm/include/llvm/Transforms/IPO/
InlinerPass.h 59 unsigned getInlineThreshold(CallSite CS) const;
66 virtual InlineCost getInlineCost(CallSite CS) = 0;
71 virtual float getInlineFudgeFactor(CallSite CS) = 0;
92 bool shouldInline(CallSite CS);
  /external/llvm/lib/Transforms/Utils/
BasicInliner.cpp 85 CallSite CS(cast<Value>(I));
86 if (CS && CS.getCalledFunction()
87 && !CS.getCalledFunction()->isDeclaration())
88 CallSites.push_back(CS);
100 CallSite CS = CallSites[index];
101 if (Function *Callee = CS.getCalledFunction()) {
105 CS.getInstruction()->getParent()->getParent() == Callee) {
110 InlineCost IC = CA.getInlineCost(CS, NeverInline);
113 <<", call: " << *CS.getInstruction())
    [all...]
  /external/llvm/lib/Analysis/
LibCallAliasAnalysis.cpp 46 ImmutableCallSite CS,
69 LibCallLocationInfo::LocResult Res = LocInfo.isLocation(CS, Loc);
90 LibCallLocationInfo::LocResult Res = LocInfo.isLocation(CS, Loc);
120 LibCallAliasAnalysis::getModRefInfo(ImmutableCallSite CS,
127 if (const Function *F = CS.getCalledFunction()) {
129 MRInfo = ModRefResult(MRInfo & AnalyzeLibCallDetails(FI, CS, Loc));
136 return (ModRefResult)(MRInfo | AliasAnalysis::getModRefInfo(CS, Loc));
CaptureTracking.cpp 73 CallSite CS(I);
77 if (CS.onlyReadsMemory() && CS.doesNotThrow() && I->getType()->isVoidTy())
87 CallSite::arg_iterator B = CS.arg_begin(), E = CS.arg_end();
89 if (A->get() == V && !CS.paramHasAttr(A - B + 1, Attribute::NoCapture))
NoAliasAnalysis.cpp 46 virtual ModRefBehavior getModRefBehavior(ImmutableCallSite CS) {
57 virtual ModRefResult getModRefInfo(ImmutableCallSite CS,
  /external/jsilver/src/org/clearsilver/jni/
JniClearsilverFactory.java 19 import org.clearsilver.CS;
33 * {@link #newCs} will be fully unwrapped before being passed to CS
43 * {@link org.clearsilver.HDF} object to the {@link org.clearsilver.CS}
58 * Create a new CS object.
59 * @param hdf the HDF object to use in constructing the CS object.
60 * @return a new CS object
62 public CS newCs(HDF hdf) {
70 * Create a new CS object. Also checks and unwraps any DelegatedHdfs
72 * @param hdf the HDF object to use in constructing the CS object.
74 * CS object
    [all...]
  /frameworks/compile/slang/
slang_rs_ast_replace.cpp 42 void RSASTReplace::ReplaceInCompoundStmt(clang::CompoundStmt *CS) {
43 clang::Stmt **UpdatedStmtList = new clang::Stmt*[CS->size()];
46 clang::CompoundStmt::body_iterator bI = CS->body_begin();
47 clang::CompoundStmt::body_iterator bE = CS->body_end();
57 CS->setStmts(C, UpdatedStmtList, UpdatedStmtCount);
80 void RSASTReplace::VisitCompoundStmt(clang::CompoundStmt *CS) {
81 VisitStmt(CS);
82 ReplaceInCompoundStmt(CS);
86 void RSASTReplace::VisitCaseStmt(clang::CaseStmt *CS) {
87 if (matchesStmt(CS->getSubStmt()))
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
reg.h 45 # define CS 17
73 # define CS 13
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 76 static bool InlineCallIfPossible(CallSite CS, InlineFunctionInfo &IFI,
79 Function *Callee = CS.getCalledFunction();
80 Function *Caller = CS.getCaller();
84 if (!InlineFunction(CS, IFI))
118 // When processing our SCC, check to see if CS was inlined from some other
197 unsigned Inliner::getInlineThreshold(CallSite CS) const {
201 Function *Caller = CS.getCaller();
208 Function *Callee = CS.getCalledFunction();
218 bool Inliner::shouldInline(CallSite CS) {
219 InlineCost IC = getInlineCost(CS);
    [all...]
InlineAlways.cpp 44 InlineCost getInlineCost(CallSite CS) {
45 return CA.getInlineCost(CS, NeverInline);
47 float getInlineFudgeFactor(CallSite CS) {
48 return CA.getInlineFudgeFactor(CS);
  /external/llvm/tools/opt/
AnalysisWrappers.cpp 45 CallSite CS(cast<Value>(User));
46 if (!CS) continue;
48 for (CallSite::arg_iterator AI = CS.arg_begin(),
49 E = CS.arg_end(); AI != E; ++AI) {
  /external/llvm/include/llvm/Analysis/
InlineCost.h 132 int ConstantFunctionBonus(CallSite CS, Constant *C);
133 int getInlineSize(CallSite CS, Function *Callee);
134 int getInlineBonuses(CallSite CS, Function *Callee);
143 InlineCost getInlineCost(CallSite CS,
150 InlineCost getInlineCost(CallSite CS,
168 float getInlineFudgeFactor(CallSite CS);
LibCallAliasAnalysis.h 40 ModRefResult getModRefInfo(ImmutableCallSite CS,
68 ImmutableCallSite CS,
  /bionic/libc/kernel/arch-x86/asm/
ptrace-abi.h 30 #define CS 13
58 #define CS 136
  /development/ndk/platforms/android-9/arch-x86/include/asm/
ptrace-abi.h 30 #define CS 13
58 #define CS 136
  /external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
GBCharsetEncoderTest.java 29 private static final Charset CS = Charset.forName("gb18030");
35 cs = CS;
  /external/kernel-headers/original/asm-x86/
ptrace-abi.h 19 #define CS 13
48 #define CS 136
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/
ptrace-abi.h 19 #define CS 13
48 #define CS 136
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/asm/
ptrace-abi.h 30 #define CS 13
58 #define CS 136
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/asm/
ptrace-abi.h 30 #define CS 13
58 #define CS 136
  /prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-x86/usr/include/asm/
ptrace-abi.h 30 #define CS 13
58 #define CS 136

Completed in 1008 milliseconds

1 2 3 4 5 6 7