Searched refs:Rest (Results 1 - 9 of 9) sorted by relevance

/external/clang/test/CXX/temp/temp.arg/temp.arg.template/
H A Dp3-0x.cpp5 template <template <class, class...> class TT, class T1, class... Rest>
6 struct eval<TT<T1, Rest...>> { };
21 template<int I, int J, int ...Rest> struct X0a;
22 template<int ...Rest> struct X0b;
32 template<int I, int J, int ...Rest> struct X1a;
33 template<long I, long ...Rest> struct X1b;
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dpartial-ordering.cpp34 template<typename T1, typename T2, typename ...Rest>
35 int &f0(T1, T2, Rest...);
45 template<typename T1, typename T2, typename ...Rest>
46 int &f1(T1, T2, Rest...);
55 template<typename T1, typename T2, typename ...Rest>
56 int &f2(T1, T2, Rest...);
H A Dmetafunctions.cpp98 template<int First, int ...Rest>
99 struct sum<First, Rest...> {
100 static const int value = First + sum<Rest...>::value;
/external/llvm/lib/IR/
H A DDataLayout.cpp213 StringRef &Rest = Split.second; // The rest of the string. local
232 Split = split(Rest, ':');
236 Split = split(Rest, ':');
241 if (!Rest.empty()) {
242 Split = split(Rest, ':');
269 Split = split(Rest, ':');
274 if (!Rest.empty()) {
275 Split = split(Rest, ':');
288 if (Rest.empty())
290 Split = split(Rest, '
[all...]
/external/chromium_org/tools/grit/grit/gather/
H A Dtr_html.py224 def Rest(self): member in class:HtmlChunks
344 m = _MESSAGE_NO_BREAK_COMMENT.match(self.Rest())
351 m = _WHITESPACE.match(self.Rest())
367 m = _NONTRANSLATEABLES.match(self.Rest())
377 m = _ELEMENT.match(self.Rest())
392 sm = _SPECIAL_ELEMENT.match(self.Rest())
404 self.AddChunk(True, self.Rest()[sm.start(group) : sm.end(group)])
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86AsmBackend.cpp325 const uint8_t Rest = ThisNopLength - Prefixes; local
326 for (uint8_t i = 0; i < Rest; i++)
327 OW->Write8(Nops[Rest - 1][i]);
/external/llvm/lib/Analysis/
H A DScalarEvolutionExpander.cpp837 /// Move parts of Base into Rest to leave Base with the minimal
840 static void ExposePointerBase(const SCEV *&Base, const SCEV *&Rest, argument
844 Rest = SE.getAddExpr(Rest,
853 NewAddOps.back() = Rest;
854 Rest = SE.getAddExpr(NewAddOps);
855 ExposePointerBase(Base, Rest, SE);
1309 const SCEV *Rest = SE.getAddRecExpr(NewOps, L, local
1315 const SCEV *RestArray[1] = { Rest };
1332 SE.getUnknown(expand(Rest))));
[all...]
/external/llvm/lib/MC/
H A DELFObjectWriter.cpp525 StringRef Rest = AliasName.substr(Pos); local
526 if (!Symbol.isUndefined() && !Rest.startswith("@@@"))
530 if (Symbol.isUndefined() && Rest.startswith("@@") &&
531 !Rest.startswith("@@@"))
/external/clang/lib/CodeGen/
H A DCGExpr.cpp465 llvm::BasicBlock *Rest = createBasicBlock("not.null"); local
466 Builder.CreateCondBr(Cond, Rest, Done);
467 EmitBlock(Rest);

Completed in 165 milliseconds