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

1 2

  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p2.cpp 18 namespace N0 {
33 template<> void N0::f0(int) { } // okay
36 template<> void N0::f0(long) { } // expected-error{{not in a namespace enclosing}}
39 template<> void N0::f0(double) { } // expected-warning{{originally be declared}}
48 namespace N0 {
72 void N0::X0<T>::ft1(T t, U u) {
76 template<typename T> T N0::X0<T>::member;
78 template<> struct N0::X0<void> { }; // expected-warning{{originally}}
79 N0::X0<void> test_X0;
82 template<> struct N0::X0<const void> { }; // expected-error{{originally}
    [all...]
p2-0x.cpp 18 namespace N0 {
33 template<> void N0::f0(int) { } // okay
36 template<> void N0::f0(long) { } // expected-error{{not in a namespace enclosing}}
39 template<> void N0::f0(double) { }
48 namespace N0 {
72 void N0::X0<T>::ft1(T t, U u) {
76 template<typename T> T N0::X0<T>::member;
78 template<> struct N0::X0<void> { };
79 N0::X0<void> test_X0;
82 template<> struct N0::X0<const void> { }; // expected-error{{class template specialization of 'X0' must originally be d (…)
    [all...]
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/
p3.cpp 5 namespace N0 {
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 230 SDValue SimplifySelect(DebugLoc DL, SDValue N0, SDValue N1, SDValue N2);
231 SDValue SimplifySelectCC(DebugLoc DL, SDValue N0, SDValue N1, SDValue N2,
234 SDValue SimplifySetCC(EVT VT, SDValue N0, SDValue N1, ISD::CondCode Cond,
242 SDValue MatchBSwapHWordLow(SDNode *N, SDValue N0, SDValue N1,
244 SDValue MatchBSwapHWord(SDNode *N, SDValue N0, SDValue N1);
525 SDValue N0, N1, N2;
526 if (isSetCCEquivalent(N, N0, N1, N2) && N.getNode()->hasOneUse())
532 SDValue N0, SDValue N1) {
533 EVT VT = N0.getValueType();
534 if (N0.getOpcode() == Opc && isa<ConstantSDNode>(N0.getOperand(1)))
    [all...]
TargetLowering.cpp     [all...]
InstrEmitter.cpp 486 SDValue N0 = Node->getOperand(0);
519 const ConstantSDNode *SD = cast<ConstantSDNode>(N0);
522 AddOperand(MI, N0, 0, 0, VRBaseMap, /*IsDebug=*/false,
    [all...]
  /external/llvm/include/llvm/ADT/
StringSwitch.h 84 template<unsigned N0, unsigned N1>
85 StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1],
90 template<unsigned N0, unsigned N1, unsigned N2>
91 StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1],
96 template<unsigned N0, unsigned N1, unsigned N2, unsigned N3>
97 StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1],
103 template<unsigned N0, unsigned N1, unsigned N2, unsigned N3, unsigned N4>
104 StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1],
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/
p4.cpp 11 namespace N0 {
  /external/clang/test/CXX/temp/temp.arg/temp.arg.type/
p2.cpp 22 namespace N0 {
  /external/clang/test/SemaCXX/
linkage-spec.cpp 30 namespace N0 {
  /external/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp 619 SDValue N0 = N.getOperand(0);
632 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
640 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
649 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
652 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
656 AM.BlockAddr = cast<BlockAddressSDNode>(N0)->getBlockAddress();
657 AM.SymbolFlags = cast<BlockAddressSDNode>(N0)->getTargetFlags();
671 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
675 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
680 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
    [all...]
X86ISelLowering.cpp     [all...]
  /external/llvm/lib/Target/MSP430/
MSP430ISelDAGToDAG.cpp 145 SDValue N0 = N.getOperand(0);
147 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
151 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
156 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
159 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
163 AM.BlockAddr = cast<BlockAddressSDNode>(N0)->getBlockAddress();
164 //AM.SymbolFlags = cast<BlockAddressSDNode>(N0)->getTargetFlags();
  /libcore/luni/src/test/java/libcore/java/lang/
ClassCastExceptionTest.java 157 A0, B0, C0, D0, E0, F0, G0, H0, I0, J0, K0, L0, M0, N0, O0, P0, Q0, R0, S0, T0, U0, V0, W0, X0, Y0, Z0,
162 A0, B0, C0, D0, E0, F0, G0, H0, I0, J0, K0, L0, M0, N0, O0, P0, Q0, R0, S0, T0, U0, V0, W0, X0, Y0, Z0,
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]
ARMISelDAGToDAG.cpp     [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 596 SDValue N0 = Op.getOperand(0);
600 if (N0.getOpcode() == ISD::ADD) {
601 AddOp = N0;
605 OtherOp = N0;
    [all...]
  /external/openssl/crypto/bn/asm/
ppc64-mont.pl 89 $n0="r7";
135 $N0="f14"; $N1="f15"; $N2="f16"; $N3="f17";
227 ld $n0,0($n0) ; pull n0[0] value
240 mulld $t7,$t7,$n0 ; tp[0]*n0
255 ; transfer (ap[0]*bp[0])*n0 to FPU as 4x16-bit values
301 lfd $N0,`$FRAME+96`($sp)
309 fcfid $N0,$N
    [all...]
  /external/bison/src/
reduce.c 65 | then do subset tests against N0, but even for the C grammar the |
70 useful_production (rule_number r, bitset N0)
78 if (ISVAR (*rhsp) && !bitset_test (N0, *rhsp - ntokens))
  /external/llvm/lib/Target/CellSPU/
SPUISelLowering.cpp     [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp 605 SDValue N0 = Node->getOperand(0);
629 Dividend = CurDAG->getMachineNode(SystemZ::MOVSX64rr32, dl, MVT::i64, N0);
631 Dividend = N0.getNode();
685 SDValue N0 = Node->getOperand(0);
709 SDNode *Dividend = N0.getNode();
  /external/llvm/lib/Target/Alpha/
AlphaISelDAGToDAG.cpp 232 SDValue N0 = N->getOperand(0);
239 Chain = CurDAG->getCopyToReg(Chain, dl, Alpha::R27, N0,
  /external/clang/test/SemaTemplate/
instantiate-member-template.cpp 120 namespace N0 {
  /external/llvm/lib/Target/PowerPC/
PPCISelDAGToDAG.cpp     [all...]
  /external/llvm/include/llvm/Target/
TargetLowering.h     [all...]

Completed in 434 milliseconds

1 2