HomeSort by relevance Sort by last modified time
    Searched refs:Case (Results 76 - 100 of 174) sorted by null

1 2 34 5 6 7

  /external/clang/lib/Driver/
SanitizerArgs.cpp 464 case 0:
467 case 1:
470 case 2:
473 case 3:
476 case 4:
535 case options::OPT__SLASH_MTd:
536 case options::OPT__SLASH_MDd:
537 case options::OPT__SLASH_LDd:
654 // Special case: don't accept -fsanitize=all.
677 .Case("func", CoverageFunc
    [all...]
ToolChains.cpp 97 .Case("armv6k", "armv6")
98 .Case("armv6m", "armv6m")
99 .Case("armv5tej", "armv5")
100 .Case("xscale", "xscale")
101 .Case("armv4t", "armv4t")
102 .Case("armv7", "armv7")
147 case llvm::Triple::aarch64:
150 case llvm::Triple::thumb:
151 case llvm::Triple::arm:
203 case Action::LipoJobClass
    [all...]
Driver.cpp 104 .Case("gcc", GCCMode)
105 .Case("g++", GXXMode)
106 .Case("cpp", CPPMode)
107 .Case("cl", CLMode)
386 .Case("full", LTOK_Full)
387 .Case("thin", LTOK_Thin)
475 .Case("cwd", SaveTempsCwd)
476 .Case("obj", SaveTempsObj)
    [all...]
  /external/eigen/Eigen/src/SVD/
JacobiSVD.h 24 *** Their role is to reduce the problem of computing the SVD to the case of a square matrix.
31 template<typename MatrixType, int QRPreconditioner, int Case>
41 (Case == PreconditionIfMoreColsThanRows && bool(a)) ||
42 (Case == PreconditionIfMoreRowsThanCols && bool(b)) )
46 template<typename MatrixType, int QRPreconditioner, int Case,
47 bool DoAnything = qr_preconditioner_should_do_anything<MatrixType, QRPreconditioner, Case>::ret
50 template<typename MatrixType, int QRPreconditioner, int Case>
51 class qr_preconditioner_impl<MatrixType, QRPreconditioner, Case, false>
468 * You can ask for only \em thin \a U or \a V to be computed, meaning the following. In case of a rectangular n-by-p matrix, letting \a m be the
    [all...]
  /external/eigen/unsupported/Eigen/src/SVD/
JacobiSVD.h 24 *** Their role is to reduce the problem of computing the SVD to the case of a square matrix.
31 template<typename MatrixType, int QRPreconditioner, int Case>
41 (Case == PreconditionIfMoreColsThanRows && bool(a)) ||
42 (Case == PreconditionIfMoreRowsThanCols && bool(b)) )
46 template<typename MatrixType, int QRPreconditioner, int Case,
47 bool DoAnything = qr_preconditioner_should_do_anything<MatrixType, QRPreconditioner, Case>::ret
50 template<typename MatrixType, int QRPreconditioner, int Case>
51 class qr_preconditioner_impl<MatrixType, QRPreconditioner, Case, false>
460 * You can ask for only \em thin \a U or \a V to be computed, meaning the following. In case of a rectangular n-by-p matrix, letting \a m be the
652 /*** step 1. The R-SVD step: we use a QR decomposition to reduce to the case of a square matrix *
    [all...]
  /external/llvm/lib/Transforms/Scalar/
CorrelatedValuePropagation.cpp 115 // LVI can tells us the value. In that case replace the incoming value with
137 // value can never be that constant. In that case replace the incoming
222 /// never fire. If the uselessness of a case could be determined locally then
226 /// safely be removed. If a case fires on every incoming edge then the entire
227 /// switch can be removed and replaced with a branch to the case destination.
241 // Analyse each switch case in turn. This is done in reverse order so that
242 // removing a case doesn't cause trouble for the iteration.
246 ConstantInt *Case = CI.getCaseValue();
248 // Check to see if the switch condition is equal to/not equal to the case
252 // Is the switch condition equal to the case value
    [all...]
  /external/clang/lib/Sema/
SemaAttr.cpp 74 // An empty stack is a special case...
155 case POAK_Native:
156 case POAK_Power:
157 case POAK_Natural:
164 case POAK_Packed:
169 case POAK_Mac68k:
179 case POAK_Reset:
220 case Sema::PPK_Default: // pack([n])
224 case Sema::PPK_Show: // pack(show)
237 case Sema::PPK_Push: // pack(push [, id] [, [n]
    [all...]
SemaExceptionSpec.cpp 41 /// such a case and turns off delay-parsing of exception specifications.
57 .Case("array", true)
58 .Case("pair", true)
59 .Case("priority_queue", true)
60 .Case("stack", true)
61 .Case("queue", true)
307 case EST_DynamicNone:
311 case EST_Dynamic: {
326 case EST_BasicNoexcept:
330 case EST_ComputedNoexcept
    [all...]
  /external/llvm/include/llvm/ADT/
StringSwitch.h 33 /// .Case("red", Red)
34 /// .Case("orange", Orange)
35 /// .Case("yellow", Yellow)
36 /// .Case("green", Green)
37 /// .Case("blue", Blue)
38 /// .Case("indigo", Indigo)
58 StringSwitch& Case(const char (&S)[N], const T& Value) {
  /external/llvm/include/llvm/MC/
MCLinkerOptimizationHint.h 53 #define MCLOHCaseNameToId(Name) .Case(#Name, MCLOH_ ## Name)
67 #define MCLOHCaseIdToName(Name) case MCLOH_ ## Name: return StringRef(#Name);
84 case MCLOH_AdrpAdrp:
85 case MCLOH_AdrpLdr:
86 case MCLOH_AdrpAdd:
87 case MCLOH_AdrpLdrGot:
90 case MCLOH_AdrpAddLdr:
91 case MCLOH_AdrpLdrGotLdr:
92 case MCLOH_AdrpAddStr:
93 case MCLOH_AdrpLdrGotStr
    [all...]
  /external/llvm/lib/Object/
MachOObjectFile.cpp 401 case MachO::N_UNDF :
403 case MachO::N_SECT :
489 // In the case if a malformed Mach-O file where the section offset is past
653 case Triple::x86: {
668 case Triple::x86_64: {
687 case Triple::arm: {
706 case Triple::aarch64: {
722 case Triple::ppc: {
747 case Triple::UnknownArch:
997 case llvm::MachO::CPU_TYPE_I386
    [all...]
  /external/v8/src/interpreter/
control-flow-builders.h 124 // This method should be called by the SwitchBuilder owner when the case
125 // statement with |index| is emitted to update the case jump site.
128 // This method is called when visiting case comparison operation for |index|.
131 void Case(int index) { EmitJumpIfTrue(&case_sites_, index); }
134 // is a default case statement. Inserts a Jump to a unbound label that is
139 // Unbound labels that identify jumps for case statements in the code.
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_MCReconBlock_s.s 97 ;// $pSrc In case the macro accepts stride, it increments the pSrc by
103 ;// register numbering. In case offset is 0, $scratch is not modified.
300 IF $rndVal = 0 ;// rounding case
303 ELSE ;// Not rounding case
454 ;// and right-down diagonal pixels. Just as in HalfPixelX case, M_LOAD_XINT
524 M_CASE Case$predictType.Rnd$rnd.Offset0
525 M_CASE Case$predictType.Rnd$rnd.Offset1
526 M_CASE Case$predictType.Rnd$rnd.Offset2
527 M_CASE Case$predictType.Rnd$rnd.Offset3
551 ;// for the specified predictType. In case of "IntegerPixel" predictType,
    [all...]
  /system/tools/aidl/
generate_java_binder.cpp 303 Case* c = new Case(transactCodeName);
492 Case* c = new Case("INTERFACE_TRANSACTION");
ast_java.cpp 338 Case::Case(const string& c) { cases.push_back(c); }
340 void Case::Write(CodeWriter* to) const {
346 to->Write("case %s:\n", s.c_str());
  /external/llvm/lib/Target/AMDGPU/AsmParser/
AMDGPUAsmParser.cpp 263 case Register:
266 case Immediate:
269 case Token:
272 case Expression:
483 case 1: return AMDGPU::VGPR_32RegClassID;
484 case 2: return AMDGPU::VReg_64RegClassID;
485 case 3: return AMDGPU::VReg_96RegClassID;
486 case 4: return AMDGPU::VReg_128RegClassID;
487 case 8: return AMDGPU::VReg_256RegClassID;
488 case 16: return AMDGPU::VReg_512RegClassID
    [all...]
  /external/llvm/lib/Analysis/
SparsePropagation.cpp 55 if (I != ValueState.end()) return I->second; // Common case, in the map
198 SwitchInst::CaseIt Case = SI.findCaseValue(cast<ConstantInt>(C));
199 Succs[Case.getSuccessorIndex()] = true;
  /external/llvm/lib/Target/Mips/
MipsSEFrameLowering.cpp 100 case Mips::LOAD_CCOND_DSP:
103 case Mips::STORE_CCOND_DSP:
106 case Mips::LOAD_ACC64:
107 case Mips::LOAD_ACC64DSP:
110 case Mips::LOAD_ACC128:
113 case Mips::STORE_ACC64:
116 case Mips::STORE_ACC64DSP:
119 case Mips::STORE_ACC128:
122 case Mips::BuildPairF64:
126 case Mips::BuildPairF64_64
    [all...]
  /external/clang/tools/driver/
cc1as_main.cpp 229 .Case("asm", FT_Asm)
230 .Case("null", FT_Null)
231 .Case("obj", FT_Obj)
  /external/skia/tests/
FontMgrTest.cpp 204 struct Case {
208 std::vector<Case> cases;
631 for (const StyleSetTest::Case testCase : test.cases) {
  /external/v8/test/mjsunit/
elements-kind.js 277 // Preparation: create one pair of identical objects for each case.
297 // Case 1: SMI->DOUBLE, DOUBLE->OBJECT, SMI->OBJECT.
304 // Case 2: SMI->DOUBLE, SMI->OBJECT, DOUBLE->OBJECT.
313 // Case 3: SMI->OBJECT, SMI->DOUBLE, DOUBLE->OBJECT.
  /external/clang/lib/Analysis/
BodyFarm.cpp 376 .Case("dispatch_sync", create_dispatch_sync)
377 .Case("dispatch_once", create_dispatch_once)
  /external/clang/lib/Frontend/
DependencyFile.cpp 128 .Case("<built-in>", true)
129 .Case("<stdin>", true)
320 /// BSD Make is the simplest case: It does no escaping at all. This means
327 /// filename, it should be escaped as well. (As a special case, $ is escaped
341 /// A corner case that GCC gets only partly right is when the original filename
352 /// original string, which probably doesn't exist either; in any case it won't
436 // sure to leave space for a trailing " \" in case we need to
  /external/libchrome/sandbox/linux/bpf_dsl/
bpf_dsl_unittest.cc 403 .Case(F_SETFD, If(long_arg == O_CLOEXEC, Allow()).Else(Error(EINVAL)))
404 .Case(F_SETFL, Error(EPERM))
  /external/libchrome/sandbox/linux/seccomp-bpf-helpers/
syscall_parameters_restrictions.cc 207 .Case(F_SETFL,
235 case __NR_kill:
236 case __NR_tgkill: {
240 case __NR_tkill:
273 case __NR_sched_getaffinity:
274 case __NR_sched_getattr:
275 case __NR_sched_getparam:
276 case __NR_sched_getscheduler:
277 case __NR_sched_rr_get_interval:
278 case __NR_sched_setaffinity
    [all...]

Completed in 2941 milliseconds

1 2 34 5 6 7