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

1 2 3 4 5 6 7 8

  /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 60 unsigned getInlineThreshold(CallSite CS) const;
67 virtual InlineCost getInlineCost(CallSite CS) = 0;
86 bool shouldInline(CallSite CS);
  /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));
CodeMetrics.cpp 33 ImmutableCallSite CS(cast<Instruction>(II));
35 if (const Function *F = CS.getCalledFunction()) {
39 if (!CS.isNoInline() && F->hasInternalLinkage() && F->hasOneUse())
54 if (!isa<InlineAsm>(CS.getCalledValue()))
CaptureTracking.cpp 109 CallSite CS(I);
113 if (CS.onlyReadsMemory() && CS.doesNotThrow() && I->getType()->isVoidTy())
123 CallSite::arg_iterator B = CS.arg_begin(), E = CS.arg_end();
125 if (A->get() == V && !CS.doesNotCapture(A - B))
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...]
  /external/llvm/lib/Transforms/IPO/
InlineSimple.cpp 51 InlineCost getInlineCost(CallSite CS) {
52 return ICA->getInlineCost(CS, getInlineThreshold(CS));