/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/table/ |
H A D | ChangeTest.java | 37 assertThat(Change.empty().getRanges()).isEmpty(); in testEmpty() 38 assertThat(Change.empty().getAssignments()).isEmpty(); in testEmpty() 39 // Not all "no-op" changes are equal to the "empty" change (unlike RangeTree). This should be in testEmpty() 42 assertThat(Change.empty()) in testEmpty() 43 .isNotEqualTo(Change.builder(RangeTree.empty()).assign(COL_A, "foo").build()); in testEmpty() 44 assertThat(Change.empty()).isNotEqualTo(Change.builder(ranges("12xxxx")).build()); in testEmpty()
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
H A D | ValidateOutputs.cpp | 146 ((!mOutputs.empty() && !mUnspecifiedLocationOutputs.empty()) || in validate() 157 if (!mYuvOutputs.empty() && (mYuvOutputs.size() > 1 || mUsesFragDepth || !mOutputs.empty() || in validate() 158 !mUnspecifiedLocationOutputs.empty())) in validate()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | SizedMRUCache_unittest.cpp | 35 EXPECT_FALSE(sizedCache.empty()); in TEST() 39 EXPECT_FALSE(sizedCache.empty()); in TEST() 45 EXPECT_TRUE(sizedCache.empty()); in TEST() 68 EXPECT_FALSE(sizedCache.empty()); in TEST() 79 EXPECT_FALSE(sizedCache.empty()); in TEST()
|
H A D | BlobCache_unittest.cpp | 54 EXPECT_FALSE(blobCache.empty()); in TEST() 58 EXPECT_FALSE(blobCache.empty()); in TEST() 65 EXPECT_TRUE(blobCache.empty()); in TEST() 88 EXPECT_FALSE(blobCache.empty()); in TEST() 100 EXPECT_FALSE(blobCache.empty()); in TEST()
|
H A D | ResourceMap_unittest.cpp | 36 ASSERT_TRUE(resourceMap.empty()); in TEST() 51 ASSERT_TRUE(resourceMap.empty()); in TEST() 83 ASSERT_TRUE(resourceMap.empty()); in TEST() 109 ASSERT_FALSE(resourceMap.empty()); in TEST() 129 ASSERT_TRUE(resourceMap.empty()); in TEST()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/ |
H A D | QueryMtl.h | 33 bool empty() const { return mNumOffsets == 0; } in empty() function in rx::VisibilityBufferOffsetsMtl 39 ASSERT(!empty()); in back() 45 ASSERT(!empty()); in front() 51 ASSERT(empty()); in setStartOffset() 57 ASSERT(!empty()); in addOffset()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/ |
H A D | StagingDescriptorAllocatorD3D12.cpp | 45 if (mAvailableHeaps.empty()) { in AllocateCPUDescriptors() 49 ASSERT(!mAvailableHeaps.empty()); in AllocateCPUDescriptors() 54 ASSERT(!buffer.freeBlockIndices.empty()); in AllocateCPUDescriptors() 60 if (buffer.freeBlockIndices.empty()) { in AllocateCPUDescriptors() 110 if (freeBlockIndices.empty()) { in Deallocate()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Demangle/ |
H A D | StringView.h | 75 assert(!empty()); in front() 80 assert(!empty()); in back() 85 assert(!empty()); in popFront() 103 bool startsWith(char C) const { return !empty() && *begin() == C; } in startsWith() 116 bool empty() const { return First == Last; } in empty() function in StringView
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
H A D | SmallSet.h | 55 LLVM_NODISCARD bool empty() const { in empty() function in llvm::SmallSet 56 return Vector.empty() && Set.empty(); in empty() 93 while (!Vector.empty()) { in insert() 124 bool isSmall() const { return Set.empty(); } in isSmall()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | GlobPattern.cpp | 71 // '*' is represented by an empty bitvector. in scan() 134 while (!S.empty()) { in create() 156 if (Pats.empty()) in matchOne() 157 return S.empty(); in matchOne() 163 if (Pats.empty()) in matchOne() 173 if (S.empty() || !Pats[0][(uint8_t)S[0]]) in matchOne()
|
H A D | StringRef.cpp | 337 if (KeepEmpty || !S.empty()) 363 if (KeepEmpty || !S.empty()) 390 if (Str.empty()) 423 if (Str.empty()) return true; 428 while (!Str2.empty()) { 469 if (Str.empty() || Str.front() != '-') { 501 return !Str.empty(); 511 return !Str.empty(); 524 if (Str.empty()) return true; 528 while (!Str.empty() [all...] |
/third_party/skia/third_party/externals/tint/fuzzers/tint_spirv_tools_fuzzer/ |
H A D | spirv_opt_mutator.cc | 72 assert(!opt_passes_.empty() && "Must be at least one pass"); 91 // - the `optimized_binary_` is not empty. in Mutate() 96 assert(!binary.empty() && "Can't run the optimizer on an empty binary"); in Mutate() 122 } while (optimized_binary_.empty() && ++num_stuck < kMaxNumStuck); in Mutate() 124 return {optimized_binary_.empty() ? Status::kStuck : Status::kComplete, in Mutate() 125 !optimized_binary_.empty()}; in Mutate()
|
/third_party/rust/crates/nix/src/sys/ |
H A D | signalfd.rs | 69 /// let mut mask = SigSet::empty(); 90 Self::with_flags(mask, SfdFlags::empty()) in new() 100 signalfd(self.0, mask, SfdFlags::empty()).map(drop) in set_mask() 152 let mask = SigSet::empty(); in create_signalfd() 158 let mask = SigSet::empty(); in create_signalfd_with_opts() 168 let mask = SigSet::empty(); in read_empty_signalfd()
|
/third_party/node/src/ |
H A D | node_options-inl.h | 257 bool empty() const { return remaining() == 0; } in empty() function 261 return synthetic_args.empty() ? underlying->at(1) : synthetic_args.front(); in first() 266 if (synthetic_args.empty()) { in pop_first() 294 if (v8_args->empty()) in Parse() 297 while (!args.empty() && errors->empty()) { in Parse() 352 (!args.empty() && in Parse() 353 !args.first().empty() && in Parse() 417 if (value.empty()) { in Parse() 422 if (args.empty()) { in Parse() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
H A D | ModuleUtils.cpp | 93 if (Init.empty()) in appendToUsedList() 113 assert(!InitName.empty() && "Expected init function name"); in declareSanitizerInitFunction() 124 assert(!InitName.empty() && "Expected init function name"); in createSanitizerCtorAndInitFunctions() 135 if (!VersionCheckName.empty()) { in createSanitizerCtorAndInitFunctions() 150 assert(!CtorName.empty() && "Expected ctor function name"); in getOrCreateSanitizerCtorAndInitFunctions() 168 assert(!Name.empty() && "Expected init function name"); in getOrCreateInitFunction() 223 if (ComdatEntriesCovered.empty()) in filterDeadComdatFunctions() 229 if (ComdatEntriesCovered.empty()) in filterDeadComdatFunctions() 235 if (ComdatEntriesCovered.empty()) in filterDeadComdatFunctions() 241 if (ComdatEntriesCovered.empty()) { in filterDeadComdatFunctions() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
H A D | StringRef.cpp | 351 if (KeepEmpty || !S.empty()) 377 if (KeepEmpty || !S.empty()) 399 if (Str.empty()) 432 if (Str.empty()) return true; 437 while (!Str2.empty()) { 478 if (Str.empty() || Str.front() != '-') { 510 return !Str.empty(); 520 return !Str.empty(); 533 if (Str.empty()) return true; 537 while (!Str.empty() [all...] |
/test/testfwk/arkxtest/uitest/core/ |
H A D | select_strategy.cpp | 115 if (!anchorMatch_.empty()) { in Describe() 121 if (!myselfMatch_.empty()) { in Describe() 285 if (!targetWidgets.empty() && !wantMulti_) { 365 if (!targetWidgets.empty() && !wantMulti_) { 649 if (myselfTargets.empty()) { in DoComplexSelect() 652 if (multiWithInAnchorMatcher.empty()) { in DoComplexSelect() 660 if (filterParentValidId.empty()) { in DoComplexSelect() 745 if (buildParam.afterAnchorMatcherVec.empty() && buildParam.beforeAnchorMatcherVec.empty() && in BuildSelectStrategy() 746 buildParam.withInAnchorMatcherVec.empty()) { in BuildSelectStrategy() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | BranchProbabilityInfo.cpp | 182 while (!WorkList.empty()) { in computePostDominatedByUnreachable() 193 else if (!successors(BB).empty() && in computePostDominatedByUnreachable() 211 while (!WorkList.empty()) { in computePostDominatedByColdCall() 221 else if (!successors(BB).empty() && in computePostDominatedByColdCall() 250 if (UnreachableEdges.empty()) in calcUnreachableHeuristics() 253 if (ReachableEdges.empty()) { in calcUnreachableHeuristics() 396 if (ColdEdges.empty()) in calcColdCallHeuristics() 399 if (NormalEdges.empty()) { in calcColdCallHeuristics() 551 while (!WorkList.empty()) { in computeUnlikelySuccessors() 639 if (BackEdges.empty() in calcLoopBranchHeuristics() [all...] |
/third_party/backends/testsuite/backend/genesys/ |
H A D | tests_row_buffer.cpp | 37 ASSERT_TRUE(buf.empty()); in test_row_buffer_push_pop_forward() 45 ASSERT_FALSE(buf.empty()); in test_row_buffer_push_pop_forward() 61 ASSERT_TRUE(buf.empty()); in test_row_buffer_push_pop_backward() 69 ASSERT_FALSE(buf.empty()); in test_row_buffer_push_pop_backward()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/ |
H A D | WinCFGuard.cpp | 37 if (MF->getLongjmpTargets().empty()) in endFunction() 51 while (!Users.empty()) { in isPossibleIndirectCallTarget() 87 if (Functions.empty() && LongjmpTargets.empty()) in endModule()
|
/third_party/skia/third_party/externals/spirv-tools/test/opt/ |
H A D | pass_utils.cpp | 43 EXPECT_TRUE(!expected_messages.empty()); in GetTestMessageConsumer() 44 if (expected_messages.empty()) { in GetTestMessageConsumer() 60 if (process_str->empty() || find_str.empty()) { in FindAndReplace()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/opt/ |
H A D | pass_utils.cpp | 43 EXPECT_TRUE(!expected_messages.empty()); in GetTestMessageConsumer() 44 if (expected_messages.empty()) { in GetTestMessageConsumer() 60 if (process_str->empty() || find_str.empty()) { in FindAndReplace()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/ |
H A D | ValueList.h | 60 assert(ResolveConstants.empty() && "Constants not resolved?"); in ~BitcodeReaderValueList() 75 assert(ResolveConstants.empty() && "Constants not resolved?"); in clear() 90 bool empty() const { return ValuePtrs.empty(); }
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/GlobalISel/ |
H A D | GISelWorkList.h | 42 bool empty() const { return WorklistMap.empty(); } in empty() function in llvm::GISelWorkList 62 // This asserts that the WorklistMap is empty, and then 66 assert(WorklistMap.empty() && "Expecting empty worklistmap"); in finalize() 86 assert((Finalized || WorklistMap.empty()) && "Neither finalized nor empty"); in remove() 108 assert(I && "Pop back on empty worklist"); in pop_back_val()
|
/third_party/skia/third_party/externals/freetype/builds/ |
H A D | detect.mk | 114 $(info $(empty) platform $(PLATFORM)) 115 $(info $(empty) compiler $(CC)) 116 $(info $(empty) configuration directory $(subst /,$(SEP),$(PLATFORM_DIR))) 117 $(info $(empty) configuration rules $(subst /,$(SEP),$(CONFIG_RULES)))
|