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

1 2 3 4 5

  /prebuilts/go/darwin-x86/test/ken/
cplx0.go 7 // Test trivial, bootstrap-level complex numbers, including printing.
  /prebuilts/go/linux-x86/test/ken/
cplx0.go 7 // Test trivial, bootstrap-level complex numbers, including printing.
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mmix/
sec-11.d 5 # A trivial check that we get a graceful error when trying to emit
  /prebuilts/go/darwin-x86/src/errors/
errors.go 13 // errorString is a trivial implementation of error.
  /prebuilts/go/linux-x86/src/errors/
errors.go 13 // errorString is a trivial implementation of error.
  /external/eigen/unsupported/test/
cxx11_tensor_ref.cpp 211 array<std::pair<ptrdiff_t, ptrdiff_t>, 4> trivial; local
212 trivial[0] = std::make_pair(0, 0);
213 trivial[1] = std::make_pair(0, 0);
214 trivial[2] = std::make_pair(0, 0);
215 trivial[3] = std::make_pair(0, 0);
216 Tensor<float, 4> padded = ref.shuffle(shuffle_dims).pad(trivial);
  /prebuilts/go/darwin-x86/misc/cgo/stdio/
file.go 8 A trivial example of wrapping a C library in Go.
  /prebuilts/go/linux-x86/misc/cgo/stdio/
file.go 8 A trivial example of wrapping a C library in Go.
  /external/clang/test/CodeGenCXX/
uncopyable-args.cpp 4 namespace trivial { namespace
5 // Trivial structs should be passed directly.
14 // CHECK: alloca %"struct.trivial::A"
19 // WIN64-LABEL: declare void @"\01?foo@trivial@@YAXUA@1@@Z"(i64)
44 // The presence of a move constructor implicitly deletes the trivial copy ctor
198 // FIXME: This class has a non-trivial copy ctor and a trivial copy ctor. It's
  /prebuilts/go/darwin-x86/misc/cgo/test/
issue3729.go 19 // try to pass some non-trivial arguments to function g2
  /prebuilts/go/darwin-x86/test/bench/go1/
fannkuch_test.go 23 perm1[i] = i // initial (trivial) permutation
  /prebuilts/go/linux-x86/misc/cgo/test/
issue3729.go 19 // try to pass some non-trivial arguments to function g2
  /prebuilts/go/linux-x86/test/bench/go1/
fannkuch_test.go 23 perm1[i] = i // initial (trivial) permutation
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
Spiller.cpp 32 enum SpillerName { trivial, standard, inline_ }; enumerator in enum:__anon36009::SpillerName
39 cl::values(clEnumVal(trivial, "trivial spiller"),
86 DEBUG(dbgs() << "Trivial spill everywhere of reg" << li->reg << "\n");
237 case trivial: return new TrivialSpiller(pass, mf, vrm);
  /external/parameter-framework/upstream/test/functional-tests/
FloatingPoint.cpp 49 <FloatingPointParameter Name="trivial" Size="32"/>
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
micromips-size-1.s 5 # Smoke-test a trivial case.
  /compatibility/cdd/10_software-compatibility-testing/
10_2_cts-verifier.md 27 that differ only in trivial ways. Specifically, device implementations that
  /external/python/cpython2/Lib/lib2to3/tests/
test_main.py 79 self.trivial_py2_file = os.path.join(self.py2_src_dir, "trivial.py")
81 with open(self.trivial_py2_file, "w") as trivial:
82 trivial.write("print 'I need a simple conversion.'")
83 self.setup_files.append("trivial.py")
112 stderr, r"No changes to .*/trivial\.py".replace("/", sep))
  /external/python/cpython3/Lib/lib2to3/tests/
test_main.py 69 self.trivial_py2_file = os.path.join(self.py2_src_dir, "trivial.py")
71 with open(self.trivial_py2_file, "w") as trivial:
72 trivial.write("print 'I need a simple conversion.'")
73 self.setup_files.append("trivial.py")
102 stderr, r"No changes to .*/trivial\.py".replace("/", sep))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_main.py 79 self.trivial_py2_file = os.path.join(self.py2_src_dir, "trivial.py")
81 with open(self.trivial_py2_file, "w") as trivial:
82 trivial.write("print 'I need a simple conversion.'")
83 self.setup_files.append("trivial.py")
112 stderr, r"No changes to .*/trivial\.py".replace("/", sep))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/
test_main.py 79 self.trivial_py2_file = os.path.join(self.py2_src_dir, "trivial.py")
81 with open(self.trivial_py2_file, "w") as trivial:
82 trivial.write("print 'I need a simple conversion.'")
83 self.setup_files.append("trivial.py")
112 stderr, r"No changes to .*/trivial\.py".replace("/", sep))
  /prebuilts/go/darwin-x86/misc/cgo/testshared/
shared_test.go 391 // Build a trivial program that links against the shared runtime and check it runs.
393 goCmd(t, "install", "-linkshared", "trivial")
394 run(t, "trivial executable", "./bin/trivial")
395 AssertIsLinkedTo(t, "./bin/trivial", soname)
396 AssertHasRPath(t, "./bin/trivial", gorootInstallDir)
399 // Build a trivial program in PIE mode that links against the shared runtime and check it runs.
401 goCmd(t, "build", "-buildmode=pie", "-o", "trivial.pie", "-linkshared", "trivial")
402 run(t, "trivial executable", "./trivial.pie"
    [all...]
  /prebuilts/go/linux-x86/misc/cgo/testshared/
shared_test.go 391 // Build a trivial program that links against the shared runtime and check it runs.
393 goCmd(t, "install", "-linkshared", "trivial")
394 run(t, "trivial executable", "./bin/trivial")
395 AssertIsLinkedTo(t, "./bin/trivial", soname)
396 AssertHasRPath(t, "./bin/trivial", gorootInstallDir)
399 // Build a trivial program in PIE mode that links against the shared runtime and check it runs.
401 goCmd(t, "build", "-buildmode=pie", "-o", "trivial.pie", "-linkshared", "trivial")
402 run(t, "trivial executable", "./trivial.pie"
    [all...]
  /external/libcxx/test/libcxx/utilities/utility/pairs/pairs.pair/
non_trivial_copy_move_ABI.pass.cpp 21 // Test that we properly provide the trivial copy operations by default.
38 #error trivial ctor ABI macro defined
82 struct Trivial {
83 Trivial(Trivial const&) = default;
85 static_assert(!HasNonTrivialABI<Trivial>::value, "");
136 using P = std::pair<Trivial, int>;
trivial_copy_move_ABI.pass.cpp 17 // Test that we properly provide the trivial copy operations by default.
33 #error Non-trivial ctor ABI macro defined
77 struct Trivial {
78 Trivial(Trivial const&) = default;
80 static_assert(HasTrivialABI<Trivial>::value, "");
131 using P = std::pair<Trivial, int>;

Completed in 1420 milliseconds

1 2 3 4 5