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

1 2 3 4 5 6 7 8 91011>>

  /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 8 CallSite(const CallSite &CS);
14 virtual int getModRefInfo(CallSite CS);
24 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/chromium_org/net/third_party/nss/ssl/
sslinfo.c 89 #define CS(x) x, #x
132 {0,CS(TLS_RSA_WITH_AES_128_GCM_SHA256), S_RSA, K_RSA, C_AESGCM, B_128, M_AEAD_128, 1, 0, 0, },
134 {0,CS(TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA), S_RSA, K_DHE, C_CAMELLIA, B_256, M_SHA, 0, 0, 0, },
135 {0,CS(TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA), S_DSA, K_DHE, C_CAMELLIA, B_256, M_SHA, 0, 0, 0, },
136 {0,CS(TLS_DHE_RSA_WITH_AES_256_CBC_SHA256), S_RSA, K_DHE, C_AES, B_256, M_SHA256, 1, 0, 0, },
137 {0,CS(TLS_DHE_RSA_WITH_AES_256_CBC_SHA), S_RSA, K_DHE, C_AES, B_256, M_SHA, 1, 0, 0, },
138 {0,CS(TLS_DHE_DSS_WITH_AES_256_CBC_SHA), S_DSA, K_DHE, C_AES, B_256, M_SHA, 1, 0, 0, },
139 {0,CS(TLS_RSA_WITH_CAMELLIA_256_CBC_SHA), S_RSA, K_RSA, C_CAMELLIA, B_256, M_SHA, 0, 0, 0, },
140 {0,CS(TLS_RSA_WITH_AES_256_CBC_SHA256), S_RSA, K_RSA, C_AES, B_256, M_SHA256, 1, 0, 0, },
141 {0,CS(TLS_RSA_WITH_AES_256_CBC_SHA), S_RSA, K_RSA, C_AES, B_256, M_SHA, 1, 0, 0, }
    [all...]
  /external/clang/lib/CodeGen/
CGStmtOpenMP.cpp 27 const CapturedStmt *CS = cast<CapturedStmt>(S.getAssociatedStmt());
28 llvm::Value *CapturedStruct = GenerateCapturedStmtArgument(*CS);
33 CGCapturedStmtInfo CGInfo(*CS, CS->getCapturedRegionKind());
35 OutlinedFn = CGF.GenerateCapturedStmtFunction(*CS);
52 const CapturedStmt *CS = cast<CapturedStmt>(S.getAssociatedStmt());
53 const Stmt *Body = CS->getCapturedStmt();
  /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));
NoAliasAnalysis.cpp 47 ModRefBehavior getModRefBehavior(ImmutableCallSite CS) override {
57 Location getArgLocation(ImmutableCallSite CS, unsigned ArgIdx,
60 return Location(CS.getArgument(ArgIdx), UnknownSize,
61 CS.getInstruction()->getMetadata(LLVMContext::MD_tbaa));
64 ModRefResult getModRefInfo(ImmutableCallSite CS,
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 107 CallSite CS(I);
111 if (CS.onlyReadsMemory() && CS.doesNotThrow() && I->getType()->isVoidTy())
121 CallSite::arg_iterator B = CS.arg_begin(), E = CS.arg_end();
123 if (A->get() == V && !CS.doesNotCapture(A - B))
  /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);
77 void RSASTReplace::VisitCompoundStmt(clang::CompoundStmt *CS) {
78 VisitStmt(CS);
79 ReplaceInCompoundStmt(CS);
82 void RSASTReplace::VisitCaseStmt(clang::CaseStmt *CS) {
83 if (matchesStmt(CS->getSubStmt()))
    [all...]
  /bionic/libc/include/sys/
reg.h 47 #define CS 13
71 #define CS 17
  /development/ndk/platforms/android-L/include/sys/
reg.h 47 #define CS 13
71 #define CS 17
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/sys/
reg.h 45 # define CS 17
73 # define CS 13
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/sys/
reg.h 45 # define CS 17
73 # define CS 13
  /prebuilts/ndk/9/platforms/android-19/arch-arm64/usr/include/sys/
reg.h 47 #define CS 13
71 #define CS 17
  /prebuilts/ndk/9/platforms/android-19/arch-mips64/usr/include/sys/
reg.h 47 #define CS 13
71 #define CS 17
  /prebuilts/ndk/9/platforms/android-19/arch-x86_64/usr/include/sys/
reg.h 47 #define CS 13
71 #define CS 17
  /external/llvm/lib/Transforms/IPO/
Inliner.cpp 126 static bool InlineCallIfPossible(CallSite CS, InlineFunctionInfo &IFI,
130 Function *Callee = CS.getCalledFunction();
131 Function *Caller = CS.getCaller();
135 if (!InlineFunction(CS, IFI, InsertLifetime))
163 // When processing our SCC, check to see if CS was inlined from some other
264 unsigned Inliner::getInlineThreshold(CallSite CS) const {
270 Function *Caller = CS.getCaller();
280 Function *Callee = CS.getCalledFunction();
304 static void emitAnalysis(CallSite CS, const Twine &Msg) {
305 Function *Caller = CS.getCaller()
    [all...]
InlineAlways.cpp 52 InlineCost getInlineCost(CallSite CS) override;
91 InlineCost AlwaysInliner::getInlineCost(CallSite CS) {
92 Function *Callee = CS.getCalledFunction();
98 CS.hasFnAttr(Attribute::AlwaysInline) &&
  /external/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.ownerless/
owner_less.pass.cpp 47 typedef std::owner_less<std::shared_ptr<int> > CS;
48 CS cs; local
50 assert(!cs(p1, p2));
51 assert(!cs(p2, p1));
52 assert(cs(p1 ,p3) || cs(p3, p1));
53 assert(cs(p3, p1) == cs(p3, p2));
55 assert(!cs(p1, w2))
62 CS cs; local
    [all...]
  /external/llvm/tools/opt/
AnalysisWrappers.cpp 44 CallSite CS(cast<Value>(UI));
45 if (!CS) continue;
47 for (CallSite::arg_iterator AI = CS.arg_begin(),
48 E = CS.arg_end(); AI != E; ++AI) {
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.weak/util.smartptr.ownerless/
owner_less.pass.cpp 47 typedef std::owner_less<std::shared_ptr<int> > CS;
48 CS cs; local
50 assert(!cs(p1, p2));
51 assert(!cs(p2, p1));
52 assert(cs(p1 ,p3) || cs(p3, p1));
53 assert(cs(p3, p1) == cs(p3, p2));
55 assert(!cs(p1, w2))
62 CS cs; local
    [all...]

Completed in 1395 milliseconds

1 2 3 4 5 6 7 8 91011>>