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

1 2 3

  /external/tensorflow/tensorflow/compiler/xla/tests/
hlo_verified_test_base.cc 44 xla::StatusOr<bool> mutated = verifier.Run(module_.get()); local
45 if (!mutated.ok()) {
46 ADD_FAILURE() << "HloVerifier failed: " << mutated.status();
48 EXPECT_FALSE(mutated.ValueOrDie())
  /external/tensorflow/tensorflow/compiler/xla/service/
call_inliner_test.cc 68 TF_ASSERT_OK_AND_ASSIGN(bool mutated, call_inliner.Run(module.get()));
69 ASSERT_TRUE(mutated);
109 TF_ASSERT_OK_AND_ASSIGN(bool mutated, call_inliner.Run(module.get()));
110 ASSERT_TRUE(mutated);
163 TF_ASSERT_OK_AND_ASSIGN(bool mutated, call_inliner.Run(module.get()));
164 ASSERT_TRUE(mutated);
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowBitmapDrawableTest.java 48 Drawable mutated = original.mutate(); local
49 assertThat(original).isNotSameAs(mutated);
50 assertThat(mutated instanceof BitmapDrawable).isTrue();
51 assertThat(original).isEqualTo(mutated);
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
GlideBitmapDrawable.java 24 private boolean mutated; field in class:GlideBitmapDrawable
128 if (!mutated && super.mutate() == this) {
130 mutated = true;
  /build/blueprint/
visit_test.go 26 VisitDepsDepthFirst string `blueprint:"mutated"`
27 VisitDepsDepthFirstIf string `blueprint:"mutated"`
28 VisitDirectDeps string `blueprint:"mutated"`
29 VisitDirectDepsIf string `blueprint:"mutated"`
unpack.go 196 if !proptools.HasTag(field, "blueprint", "mutated") {
197 panic(fmt.Errorf(`int field %s must be tagged blueprint:"mutated"`, propertyName))
217 if proptools.HasTag(field, "blueprint", "mutated") {
220 Err: fmt.Errorf("mutated field %s cannot be set in a Blueprint file", propertyName),
  /system/tools/aidl/
options_unittest.cpp 199 string mutated = test_case.input; local
202 &mutated));
203 EXPECT_EQ(mutated, test_case.result);
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
AnimationDrawableTest.java 180 AnimationDrawable mutated = (AnimationDrawable) mAnimationDrawable.mutate(); local
181 assertEquals(FRAMES_COUNT, mutated.getNumberOfFrames());
185 assertEquals(FRAMES_COUNT + 1, mutated.getNumberOfFrames());
189 assertEquals(FRAMES_COUNT + 2, mutated.getNumberOfFrames());
  /external/protobuf/csharp/src/Google.Protobuf/Reflection/
IFieldAccessor.cs 65 /// Repeated fields are mutated by fetching the value and manipulating it as a list.
66 /// Map fields are mutated by fetching the value and manipulating it as a dictionary.
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
unsafe.go 31 // Since r->left may be mutated by typechecking, check it explicitly
  /prebuilts/go/darwin-x86/src/internal/syscall/windows/sysdll/
sysdll.go 18 // It has no associated mutex and should only be mutated serially
  /prebuilts/go/darwin-x86/test/
closure2.go 77 return i // test that we capture by ref here, i is mutated on every interation
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
unsafe.go 31 // Since r->left may be mutated by typechecking, check it explicitly
  /prebuilts/go/linux-x86/src/internal/syscall/windows/sysdll/
sysdll.go 18 // It has no associated mutex and should only be mutated serially
  /prebuilts/go/linux-x86/test/
closure2.go 77 return i // test that we capture by ref here, i is mutated on every interation
  /build/blueprint/proptools/
extend_test.go 877 // Filter mutated
879 S string `blueprint:"mutated"`
884 S string `blueprint:"mutated"`
889 S string `blueprint:"mutated"`
895 // Filter mutated
897 S *int64 `blueprint:"mutated"`
902 S *int64 `blueprint:"mutated"`
907 S *int64 `blueprint:"mutated"`
  /build/soong/android/
prebuilt.go 37 SourceExists bool `blueprint:"mutated"`
38 UsePrebuilt bool `blueprint:"mutated"`
module.go 214 Default_multilib string `blueprint:"mutated"`
252 CompileTarget Target `blueprint:"mutated"`
253 CompilePrimary bool `blueprint:"mutated"`
256 HostOrDeviceSupported HostOrDeviceSupported `blueprint:"mutated"`
257 ArchSpecific bool `blueprint:"mutated"`
259 SkipInstall bool `blueprint:"mutated"`
261 NamespaceExportedToMake bool `blueprint:"mutated"`
    [all...]
  /build/soong/cc/
relocation_packer.go 40 PackingRelocations bool `blueprint:"mutated"`
pgo.go 65 PgoPresent bool `blueprint:"mutated"`
66 ShouldProfileModule bool `blueprint:"mutated"`
67 PgoCompile bool `blueprint:"mutated"`
coverage.go 24 CoverageEnabled bool `blueprint:"mutated"`
sabi.go 31 CreateSAbiDumps bool `blueprint:"mutated"`
lto.go 50 FullDep bool `blueprint:"mutated"`
51 ThinDep bool `blueprint:"mutated"`
  /development/samples/Vault/src/com/example/android/vault/
VaultProvider.java 583 * @return if the array was mutated.
586 boolean mutated = false;
591 mutated = true;
596 return mutated;
  /external/guava/guava-tests/test/com/google/common/hash/
HashCodeTest.java 367 byte[] mutated = hash.asBytes();
368 mutated[0]++;

Completed in 716 milliseconds

1 2 3