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

1 2

  /external/chromium_org/third_party/icu/source/test/intltest/
transrt.cpp 110 // Legal
113 class Legal {
115 Legal() {}
116 virtual ~Legal() {}
120 class LegalJamo : public Legal {
165 class LegalGreek : public Legal {
185 // A special case which is legal but should be
200 // Legal greek has breathing marks IFF there is a vowel or RHO at the start
341 Legal* legalSource; // NOT owned
362 Legal* adoptedLegal
975 Legal *legal = new Legal(); local
989 Legal *legal = new Legal(); local
998 Legal *legal = new Legal(); local
1013 Legal *legal = new LegalJamo(); local
1023 Legal *legal = new Legal(); local
1143 LegalGreek *legal = new LegalGreek(TRUE); local
1178 LegalGreek *legal = new LegalGreek(FALSE); local
1210 LegalGreek *legal = new LegalGreek(FALSE); local
1231 Legal *legal = new Legal(); local
1280 LegalHebrew* legal = new LegalHebrew(error); local
1293 Legal *legal = new Legal(); local
1392 Legal *legal = new LegalIndic(); local
1659 Legal *legal = new LegalIndic(); local
1660 test.test(UnicodeString(fromSet,""),UnicodeString(toSet,""),exclusions,this,quick,legal); local
1682 Legal *legal = new LegalIndic(); local
    [all...]
  /external/icu4c/test/intltest/
transrt.cpp 111 // Legal
114 class Legal {
116 Legal() {}
117 virtual ~Legal() {}
121 class LegalJamo : public Legal {
166 class LegalGreek : public Legal {
186 // A special case which is legal but should be
201 // Legal greek has breathing marks IFF there is a vowel or RHO at the start
342 Legal* legalSource; // NOT owned
363 Legal* adoptedLegal
976 Legal *legal = new Legal(); local
990 Legal *legal = new Legal(); local
999 Legal *legal = new Legal(); local
1014 Legal *legal = new LegalJamo(); local
1024 Legal *legal = new Legal(); local
1144 LegalGreek *legal = new LegalGreek(TRUE); local
1179 LegalGreek *legal = new LegalGreek(FALSE); local
1211 LegalGreek *legal = new LegalGreek(FALSE); local
1232 Legal *legal = new Legal(); local
1281 LegalHebrew* legal = new LegalHebrew(error); local
1294 Legal *legal = new Legal(); local
1393 Legal *legal = new LegalIndic(); local
1660 Legal *legal = new LegalIndic(); local
1661 test.test(UnicodeString(fromSet,""),UnicodeString(toSet,""),exclusions,this,quick,legal); local
1683 Legal *legal = new LegalIndic(); local
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonISelLowering.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp 160 void vectorize(LoopVectorizationLegality *Legal) {
162 createEmptyLoop(Legal);
165 vectorizeLoop(Legal);
185 Instruction *addRuntimeCheck(LoopVectorizationLegality *Legal,
188 void createEmptyLoop(LoopVectorizationLegality *Legal);
190 void vectorizeLoop(LoopVectorizationLegality *Legal);
201 void vectorizeBlockInLoop(LoopVectorizationLegality *Legal, BasicBlock *BB,
214 LoopVectorizationLegality *Legal);
357 /// LoopVectorizationLegality checks if it is legal to vectorize a loop, and
499 /// Returns true if it is legal to vectorize this loop
    [all...]
  /external/llvm/lib/Target/R600/
AMDGPUISelLowering.cpp 45 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
46 setOperationAction(ISD::FEXP2, MVT::f32, Legal);
47 setOperationAction(ISD::FPOW, MVT::f32, Legal);
48 setOperationAction(ISD::FLOG2, MVT::f32, Legal);
49 setOperationAction(ISD::FABS, MVT::f32, Legal);
50 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
51 setOperationAction(ISD::FRINT, MVT::f32, Legal);
AMDILISelLowering.cpp 164 setOperationAction(ISD::Constant , MVT::i64 , Legal);
177 setOperationAction(ISD::ConstantFP , MVT::f64 , Legal);
205 setOperationAction(ISD::ConstantFP , MVT::f32 , Legal);
206 setOperationAction(ISD::Constant , MVT::i32 , Legal);
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp 337 // f32 and f64 cases are Legal, f80 case is not
349 // are Legal, f80 is custom lowered.
360 // f32 and f64 cases are Legal, f80 case is not
413 // (low) operations are left as Legal, as there are single-result
443 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
444 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16 , Legal);
445 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Legal);
564 setOperationAction(ISD::PREFETCH , MVT::Other, Legal);
615 setOperationAction(ISD::TRAP, MVT::Other, Legal);
616 setOperationAction(ISD::DEBUGTRAP, MVT::Other, Legal);
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXISelLowering.cpp 143 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i64, Legal);
144 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
145 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Legal);
146 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8 , Legal);
150 setOperationAction(ISD::ROTL, MVT::i64, Legal);
151 setOperationAction(ISD::ROTR, MVT::i64, Legal);
157 setOperationAction(ISD::ROTL, MVT::i32, Legal);
158 setOperationAction(ISD::ROTR, MVT::i32, Legal);
200 // This is legal in NVPTX
201 setOperationAction(ISD::ConstantFP, MVT::f64, Legal);
    [all...]
  /external/llvm/include/llvm/Target/
TargetLowering.h 81 Legal, // The target natively supports this operation.
87 /// This enum indicates whether a types are legal for a target, and if not,
253 /// The 'representative' register class is the largest legal super-reg
302 /// legal (return 'Legal') or we need to promote it to a larger type (return
325 /// the largest legal type it will be expanded to.
336 llvm_unreachable("Type is not legal nor is it to be expanded!");
341 /// Vector types are broken down into some number of legal first class types.
384 /// legal.
392 /// VT must be a legal type. By default, we optimistically assume mos
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDGPUISelLowering.cpp 35 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
36 setOperationAction(ISD::FEXP2, MVT::f32, Legal);
37 setOperationAction(ISD::FRINT, MVT::f32, Legal);
AMDILISelLowering.cpp 180 setOperationAction(ISD::Constant , MVT::i64 , Legal);
194 setOperationAction(ISD::ConstantFP , MVT::f64 , Legal);
223 setOperationAction(ISD::ConstantFP , MVT::f32 , Legal);
224 setOperationAction(ISD::Constant , MVT::i32 , Legal);
SIISelLowering.cpp 44 setOperationAction(ISD::ADD, MVT::i64, Legal);
45 setOperationAction(ISD::ADD, MVT::i32, Legal);
  /external/mesa3d/src/gallium/drivers/radeon/
AMDGPUISelLowering.cpp 35 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
36 setOperationAction(ISD::FEXP2, MVT::f32, Legal);
37 setOperationAction(ISD::FRINT, MVT::f32, Legal);
AMDILISelLowering.cpp 180 setOperationAction(ISD::Constant , MVT::i64 , Legal);
194 setOperationAction(ISD::ConstantFP , MVT::f64 , Legal);
223 setOperationAction(ISD::ConstantFP , MVT::f32 , Legal);
224 setOperationAction(ISD::Constant , MVT::i32 , Legal);
SIISelLowering.cpp 44 setOperationAction(ISD::ADD, MVT::i64, Legal);
45 setOperationAction(ISD::ADD, MVT::i32, Legal);
  /external/llvm/lib/Target/Mips/
MipsSEISelLowering.cpp 49 setOperationAction(ISD::ADD, VecTys[i], Legal);
50 setOperationAction(ISD::SUB, VecTys[i], Legal);
51 setOperationAction(ISD::LOAD, VecTys[i], Legal);
52 setOperationAction(ISD::STORE, VecTys[i], Legal);
53 setOperationAction(ISD::BITCAST, VecTys[i], Legal);
78 setOperationAction(ISD::MUL, MVT::v2i16, Legal);
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp 146 // Legal floating-point operations.
147 setOperationAction(ISD::FABS, MVT::f32, Legal);
148 setOperationAction(ISD::FABS, MVT::f64, Legal);
150 setOperationAction(ISD::FCEIL, MVT::f32, Legal);
151 setOperationAction(ISD::FCEIL, MVT::f64, Legal);
153 setOperationAction(ISD::FFLOOR, MVT::f32, Legal);
154 setOperationAction(ISD::FFLOOR, MVT::f64, Legal);
156 setOperationAction(ISD::FNEARBYINT, MVT::f32, Legal);
157 setOperationAction(ISD::FNEARBYINT, MVT::f64, Legal);
159 setOperationAction(ISD::FNEG, MVT::f32, Legal);
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCISelLowering.cpp 86 setIndexedLoadAction(ISD::PRE_INC, MVT::i1, Legal);
87 setIndexedLoadAction(ISD::PRE_INC, MVT::i8, Legal);
88 setIndexedLoadAction(ISD::PRE_INC, MVT::i16, Legal);
89 setIndexedLoadAction(ISD::PRE_INC, MVT::i32, Legal);
90 setIndexedLoadAction(ISD::PRE_INC, MVT::i64, Legal);
91 setIndexedStoreAction(ISD::PRE_INC, MVT::i1, Legal);
92 setIndexedStoreAction(ISD::PRE_INC, MVT::i8, Legal);
93 setIndexedStoreAction(ISD::PRE_INC, MVT::i16, Legal);
94 setIndexedStoreAction(ISD::PRE_INC, MVT::i32, Legal);
95 setIndexedStoreAction(ISD::PRE_INC, MVT::i64, Legal);
    [all...]
  /device/asus/grouper/keymaster/
NOTICE 58 "Legal Entity" shall mean the union of the acting entity and all
66 "You" (or "Your") shall mean an individual or Legal Entity
95 or by an individual or Legal Entity authorized to submit on behalf of
105 "Contributor" shall mean Licensor and any individual or Legal Entity
196 8. Limitation of Liability. In no event and under no legal theory,
  /device/asus/grouper/self-extractors/nvidia/staging/keymaster/
NOTICE 58 "Legal Entity" shall mean the union of the acting entity and all
66 "You" (or "Your") shall mean an individual or Legal Entity
95 or by an individual or Legal Entity authorized to submit on behalf of
105 "Contributor" shall mean Licensor and any individual or Legal Entity
196 8. Limitation of Liability. In no event and under no legal theory,
  /device/asus/tilapia/self-extractors/nvidia/staging/keymaster/
NOTICE 58 "Legal Entity" shall mean the union of the acting entity and all
66 "You" (or "Your") shall mean an individual or Legal Entity
95 or by an individual or Legal Entity authorized to submit on behalf of
105 "Contributor" shall mean Licensor and any individual or Legal Entity
196 8. Limitation of Liability. In no event and under no legal theory,
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorOps.cpp 15 // ISD::SDIV of type v2i64 on x86-32. The type is legal (for example, addition
16 // on a v2i64 is legal), but ISD::SDIV isn't legal, so we have to unroll the
40 /// LegalizedNodes - For nodes that are of legal width, and that have more
55 // Assuming the node is legal, "legalize" the results
60 // isn't legal.
62 // SINT_TO_FLOAT and SHR on vectors isn't legal.
170 case TargetLowering::Legal:
276 case TargetLowering::Legal: break;
303 // Make sure that the generated code is itself legal
    [all...]
LegalizeDAG.cpp 211 assert(TLI.isShuffleMaskLegal(NewMask, NVT) && "Shuffle not legal?");
723 case TargetLowering::Legal:
    [all...]
  /build/tools/droiddoc/templates-ds/
customizations.cs 357 <a href="<?cs var:toroot ?>legal.html">Legal</a>&nbsp;&nbsp;|&nbsp;
  /build/tools/droiddoc/templates-sdk/
customizations.cs 362 <a href="<?cs var:toroot ?>legal.html">Legal</a>&nbsp;&nbsp;|&nbsp;

Completed in 1919 milliseconds

1 2