Home
last modified time | relevance | path

Searched refs:isTrue (Results 1 - 23 of 23) sorted by relevance

/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/ant/
H A DCleanOutputDirectoryTaskTest.java34 assertWasAutogenerated("// Header#1", "// Header#2").isTrue(); in testWasFileAutoGenerated_lenientMatching()
35 assertWasAutogenerated("# Header#1", "# Header#2").isTrue(); in testWasFileAutoGenerated_lenientMatching()
36 assertWasAutogenerated("# Header#1", "// Header#2").isTrue(); in testWasFileAutoGenerated_lenientMatching()
37 assertWasAutogenerated("// Header#1", "//Header#2").isTrue(); in testWasFileAutoGenerated_lenientMatching()
39 assertWasAutogenerated("// Header#1", "// Header#2", "// More comment", "Not a comment").isTrue(); in testWasFileAutoGenerated_lenientMatching()
41 assertWasAutogenerated("\uFEFF// Header#1", "// Header#2").isTrue(); in testWasFileAutoGenerated_lenientMatching()
63 assertWasAutogenerated("// Header#1", "// Header#2", WAS_GENERATED_LINE).isTrue(); in testWasFileAutoGenerated_withLabel()
64 assertWasAutogenerated("// Hello", "// World", WAS_GENERATED_LINE).isTrue(); in testWasFileAutoGenerated_withLabel()
65 assertWasAutogenerated("// Shorter Header", WAS_GENERATED_LINE).isTrue(); in testWasFileAutoGenerated_withLabel()
66 assertWasAutogenerated("// This", "// Is", "// A", "// Longer", "// Header", WAS_GENERATED_LINE).isTrue(); in testWasFileAutoGenerated_withLabel()
[all...]
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/
H A DRbPathTest.java59 assertThat(p).startsWith(p).isTrue(); in testStartsWith()
60 assertThat(p).startsWith(RbPath.of()).isTrue(); in testStartsWith()
62 assertThat(p).startsWith(p.getParent()).isTrue(); in testStartsWith()
63 assertThat(p).startsWith(RbPath.of("foo")).isTrue(); in testStartsWith()
71 assertThat(p).endsWith(p).isTrue(); in testEndsWith()
72 assertThat(p).endsWith(RbPath.of()).isTrue(); in testEndsWith()
74 assertThat(p).endsWith(RbPath.of("bar", "baz")).isTrue(); in testEndsWith()
82 assertThat(p).contains(p).isTrue(); in testContains()
83 assertThat(p).contains(RbPath.of()).isTrue(); in testContains()
85 assertThat(p).contains(RbPath.of("bar", "baz")).isTrue(); in testContains()
[all...]
H A DIcuDataTest.java20 assertThat(icuData.hasFallback()).isTrue(); in testSimple()
/third_party/typescript/tests/baselines/reference/
H A DunknownType2.js3 type isTrue<T extends true> = T;
34 type A = isTrue<isUnknown<typeof u>>
38 type B = isTrue<isUnknown<typeof u>>
42 type C = isTrue<isUnknown<typeof u>>
46 type D = isTrue<isUnknown<typeof u>>
50 type E = isTrue<isUnknown<typeof u>>
83 type unionDoesNotNarrow = isTrue<isUnknown<typeof u>>
87 type intersectionDoesNotNarrow = isTrue<isUnknown<typeof u>>
130 type End = isTrue<isUnknown<typeof x>>
144 type End = isTrue<isUnknow
[all...]
/third_party/vk-gl-cts/framework/common/
H A DtcuTexCompareVerifier.cpp49 bool isTrue; member
53 : isTrue (false) in CmpResultSet()
74 res.isTrue = cmpReference-err < cmpValue; in execCompare()
79 res.isTrue = cmpReference-err <= cmpValue; in execCompare()
84 res.isTrue = cmpReference+err > cmpValue; in execCompare()
89 res.isTrue = cmpReference+err >= cmpValue; in execCompare()
94 res.isTrue = de::inRange(cmpValue, cmpReference-err, cmpReference+err); in execCompare()
99 res.isTrue = err != 0.0f || cmpValue != cmpReference; in execCompare()
104 res.isTrue = true; in execCompare()
115 DE_ASSERT(res.isTrue || re in execCompare()
[all...]
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/
H A DPrefixTreeTest.java47 assertThat(prefix.prefixes(seq("1230000"))).isTrue(); in testPrefixes()
48 assertThat(prefix.prefixes(seq("555000"))).isTrue(); in testPrefixes()
158 assertThat(PrefixTree.minimal(ranges("xxxx"), ranges("123"), 0).isIdentity()).isTrue(); in testMinimal()
160 assertThat(PrefixTree.minimal(ranges("123x"), RangeTree.empty(), 0).isIdentity()).isTrue(); in testMinimal()
H A DRangeTreeTest.java169 assertThat(a.containsAll(a)).isTrue(); in testContainsAll()
170 assertThat(a.containsAll(RangeTree.empty())).isTrue(); in testContainsAll()
173 assertThat(a.containsAll(ranges("1[23][56][78]x", "4567890"))).isTrue(); in testContainsAll()
181 assertThat(ranges("", "1").containsAll(ranges(""))).isTrue(); in testContainsAll()
H A DRangeSpecificationTest.java81 assertThat(RangeSpecification.empty().matches(DigitSequence.empty())).isTrue(); in testMatches()
275 assertThat(r.matches(DigitSequence.of(digits))).isTrue(); in assertAllMatch()
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/table/
H A DColumnTest.java39 assertThat(column.cast(true)).isTrue(); in testBooleanColumn()
42 assertThat(column.parse("true")).isTrue(); in testBooleanColumn()
44 assertThat(column.parse("TRUE")).isTrue(); in testBooleanColumn()
H A DRangeKeyTest.java110 assertThat(key.contains(digitSequence("12"), 8)).isTrue(); in testContains()
/third_party/icu/icu4c/source/test/cintltst/
H A Dputiltst.c60 UBool isTrue=false; in TestPUtilAPI() local
120 isTrue=uprv_isNegativeInfinity(uprv_getInfinity() * -1); in TestPUtilAPI()
121 if(isTrue != true){ in TestPUtilAPI()
125 isTrue=uprv_isPositiveInfinity(uprv_getInfinity()); in TestPUtilAPI()
126 if(isTrue != true){ in TestPUtilAPI()
130 isTrue=uprv_isInfinite(uprv_getInfinity()); in TestPUtilAPI()
131 if(isTrue != true){ in TestPUtilAPI()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCChecker.cpp67 bool &isTrue) { in initReg()
71 isTrue = HexagonMCInstrInfo::isPredicatedTrue(MCII, MCI); in initReg()
89 bool isTrue = false; in init() local
94 initReg(MCI, MCI.getOperand(i).getReg(), PredReg, isTrue); in init()
96 initReg(MCI, MCID.getImplicitUses()[i], PredReg, isTrue); in init()
124 Defs[R].insert(PredSense(PredReg, isTrue)); in init()
176 Defs[*SRI].insert(PredSense(PredReg, isTrue)); in init()
66 initReg(MCInst const &MCI, unsigned R, unsigned &PredReg, bool &isTrue) initReg() argument
H A DHexagonMCChecker.h77 void initReg(MCInst const &, unsigned, unsigned &PredReg, bool &isTrue);
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/regex/
H A DEdgeTest.java77 assertThat(v.wasTested).isTrue(); in testConcatenation()
93 assertThat(v.wasTested).isTrue(); in testGroup()
104 assertThat(isOptional).isTrue(); in testOptionalGroup()
110 assertThat(v.wasTested).isTrue(); in testOptionalGroup()
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/model/
H A DFormatSpecTest.java92 assertThat(t.hasNationalPrefix()).isTrue(); in testTemplate_splitPrefix()
122 assertThat(t.hasNationalPrefix()).isTrue(); in testTemplate_replacementWithNationalPrefix()
/third_party/skia/modules/canvaskit/
H A DWasmCommon.h86 if (src["_ck"].isTrue()) { in JSSpan()
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/regex/
H A DRegexTransformerTest.java300 assertThat(fallbacks.get(0).isFallbackFor(symbol.get(0))).isTrue(); in testFallbacks_simple()
304 assertThat(fallbacks.get(1).isFallbackFor(name.get(0))).isTrue(); in testFallbacks_simple()
/third_party/libphonenumber/migrator/src/test/java/com/google/phonenumbers/migrator/
H A DMigrationUtilsTest.java129 assertThat(oldFormat.matches(testNumberToMatch)).isTrue(); in findMatchingRecipe_expectMatchingRecipe()
/third_party/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
H A DRubyMessage.java217 if (!ret.isTrue()) { in eq()
259 if (field.end_with_p(context, equalSign).isTrue()) { in methodMissing()
538 val = value.isTrue(); in convert()
/third_party/backends/backend/
H A Depsonds.c2446 static void setBit (SANE_Byte* bytes, SANE_Int bitIndex, SANE_Bool isTrue) in setBit() argument
2451 if (isTrue) { in setBit()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp5994 /// If \p isTrue is true, return the true value of \p SI, otherwise return
5999 SelectInst *SI, bool isTrue, in getTrueOrFalseValue()
6007 V = (isTrue ? DefSI->getTrueValue() : DefSI->getFalseValue()); in getTrueOrFalseValue()
5998 getTrueOrFalseValue( SelectInst *SI, bool isTrue, const SmallPtrSet<const Instruction *, 2> &Selects) getTrueOrFalseValue() argument
/third_party/sqlite/src/
H A Dsqlite3.c110222 int isTrue; /* IS TRUE or IS NOT TRUE */ global() local
111044 int isTrue; /* IS TRUE or IS NOT TRUE */ global() local
111218 int isTrue; /* IS TRUE or IS NOT TRUE */ global() local
[all...]
/third_party/rust/crates/bindgen/bindgen-tests/tests/
H A Dstylo.hpp[all...]

Completed in 169 milliseconds