/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/table/ |
H A D | DisjointRangeMap.java | 43 private RangeTree assignedRanges = RangeTree.empty(); 50 * Returns the ranges assigned to the given value (returns the empty range if the given value 57 return map.getOrDefault(checkedValue, RangeTree.empty()); in getRanges() 86 ranges = ranges.subtract(map.getOrDefault(checkedValue, RangeTree.empty())); in checkAssign() 123 map.put(checkedValue, ranges.union(map.getOrDefault(checkedValue, RangeTree.empty()))); in assign() 156 /** Returns all values assigned to non-empty ranges in this column. */
|
/third_party/python/Lib/asyncio/ |
H A D | queues.py | 12 """Raised when Queue.get_nowait() is called on an empty Queue.""" 95 def empty(self): member in Queue 96 """Return True if the queue is empty, False otherwise.""" 152 If queue is empty, wait until an item is available. 154 while self.empty(): 168 if not self.empty() and not getter.cancelled(): 180 if self.empty():
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/TranslatorMetalDirect/ |
H A D | Name.cpp | 52 bool Name::empty() const in empty() function in Name 71 ASSERT(!mRawName.empty()); in emit() 76 ASSERT(!mRawName.empty()); in emit() 88 ASSERT(!mRawName.empty()); in emit()
|
H A D | RewriteOutArgs.cpp | 60 bool empty() const { return mEntries.empty(); } in empty() function in __anon19784::SmallMultiSet 88 ~Rewriter() override { ASSERT(mVarBuffer.empty()); } 110 ASSERT(mVarBuffer.empty());
|
/third_party/skia/third_party/externals/angle2/src/common/ |
H A D | utilities_unittest.cpp | 38 // Parsing no array indices should result in an empty array. 43 EXPECT_TRUE(indices.empty()); in TEST() 69 EXPECT_TRUE(indices.empty()); in TEST() 72 EXPECT_TRUE(indices.empty()); in TEST() 75 EXPECT_TRUE(indices.empty()); in TEST() 86 // Parse an empty string for an array index.
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/ |
H A D | TpiStreamBuilder.cpp | 49 if (NewSize / EightKB > TypeRecordBytes / EightKB || TypeRecords.empty()) { in addTypeRecord() 104 assert((TypeRecords.size() == TypeHashes.size() || TypeHashes.empty()) && in calculateHashBufferSize() 128 if (!TypeHashes.empty()) { in finalizeMsfLayout() 156 assert(!Rec.empty()); // An empty record will not write anything, but it in commit()
|
H A D | PDBFileBuilder.cpp | 174 if (!InjectedSources.empty()) { in finalizeMsfLayout() 227 assert(!InjectedSourceTable.empty()); in commitSrcHeaderBlock() 247 if (InjectedSourceTable.empty()) in commitInjectedSources() 265 assert(!Filename.empty()); in commit() 287 if (NSE.second.empty()) in commit() 323 assert(!InfoStreamBlocks.empty()); in commit()
|
/third_party/vk-gl-cts/external/vulkancts/framework/vulkan/ |
H A D | vkDeviceUtil.cpp | 55 bool validationEnabled = (!enabledLayers.empty()); in createDefaultInstance() 133 (extensionNamePtrs.empty() ? nullptr : extensionNamePtrs.data()), in createDefaultInstance() 152 if (devices.empty()) in chooseDeviceIndex() 183 if (devices.empty()) in chooseDevice()
|
/third_party/vk-gl-cts/external/amber/src/android_sample/jni/ |
H A D | amber_script.cc | 70 if (script_info_.empty()) in LoadAllScriptsFromAsset() 75 if (info.script_content.empty()) in LoadAllScriptsFromAsset() 85 if (shader_content.empty()) in LoadAllScriptsFromAsset() 89 if (id.empty()) in LoadAllScriptsFromAsset()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/ |
H A D | SymbolStringPool.h | 39 /// Returns true if the pool is empty. 40 bool empty() const; 114 // Returns false for null, empty, and tombstone values, true otherwise. 146 assert(Pool.empty() && "Dangling references at pool destruction time"); in ~SymbolStringPool() 167 inline bool SymbolStringPool::empty() const { in empty() function in llvm::orc::SymbolStringPool 169 return Pool.empty(); in empty()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/ |
H A D | StringMatcher.cpp | 30 assert(!Matches.empty()); in FindFirstNonCommonLetter() 51 assert(!Matches.empty() && "Must have at least one string to match!"); in EmitStringMatcherForChar() 67 while (!Code.empty()) { in EmitStringMatcherForChar() 133 if (Matches.empty()) return; in Emit()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/ObjCARC/ |
H A D | BlotMapVector.h | 109 bool empty() const { in empty() function in llvm::BlotMapVector 110 assert(Map.empty() == Vector.empty()); in empty() 111 return Map.empty(); in empty()
|
/third_party/skia/third_party/externals/tint/src/reader/spirv/ |
H A D | namer.cc | 71 if (suggested_name.empty()) { in Sanitize() 72 return "empty"; in Sanitize() 163 // Creates an empty vector the first time we visit this struct. in SuggestSanitizedMemberName() 165 // Resizing will set new entries to the empty string. in SuggestSanitizedMemberName() 168 if (entry.empty()) { in SuggestSanitizedMemberName() 178 // Resizing will set new entries to the empty string. in ResolveMemberNamesForStruct() 208 if (!name.empty()) { in ResolveMemberNamesForStruct() 222 if (name.empty()) { in ResolveMemberNamesForStruct()
|
/third_party/rust/crates/nix/test/sys/ |
H A D | test_signal.rs | 27 SaFlags::empty(), in test_old_sigaction_flags() 28 SigSet::empty(), in test_old_sigaction_flags() 49 let mut old_signal_set = SigSet::empty(); in test_sigprocmask() 63 let mut signal_set = SigSet::empty(); in test_sigprocmask()
|
/third_party/rust/crates/rustix/tests/net/ |
H A D | poll.rs | 49 let nread = recv(&data_socket, &mut buffer, RecvFlags::empty()).unwrap(); in server() 58 send(&data_socket, b"goodnight, moon", SendFlags::empty()).unwrap(); in server() 87 send(&data_socket, b"hello, world", SendFlags::empty()).unwrap(); in client() 95 let nread = recv(&data_socket, &mut buffer, RecvFlags::empty()).unwrap(); in client()
|
/third_party/libabigail/src/ |
H A D | abg-tools-utils.cc | 361 /// Test if a given directory exists and is empty. 434 /// empty. Note that convert_char_stars_to_char_star_stars() can be 470 /// empty. Note that convert_char_stars_to_char_star_stars() can be 691 if (path.empty()) in dir_name() 719 if (path.empty()) in base_name() 743 if (path.empty()) in real_path() 797 if (path.empty()) in ensure_parent_dir_created() 821 if (!prog_name.empty()) in emit_prefix() 906 if (str.empty()) in string_begins_with() 909 if (prefix.empty()) in string_begins_with() [all...] |
/third_party/glslang/glslang/MachineIndependent/ |
H A D | SpirvIntrinsics.cpp | 86 if (!spirvReq2->extensions.empty()) { in mergeSpirvRequirements() 87 if (spirvReq1->extensions.empty()) in mergeSpirvRequirements() 93 if (!spirvReq2->capabilities.empty()) { in mergeSpirvRequirements() 94 if (spirvReq1->capabilities.empty()) in mergeSpirvRequirements() 343 if (!spirvInst2->set.empty()) { in mergeSpirvInstruction() 344 if (spirvInst1->set.empty()) in mergeSpirvInstruction()
|
/third_party/gn/src/gn/ |
H A D | ninja_action_target_writer.cc | 93 if (!input_deps.empty()) { in Run() 99 if (!order_only_deps.empty()) { in Run() 154 if (!target_->sources().empty()) in WriteRuleDefinition() 186 if (mnemonic.empty()) in WriteRuleDefinition() 220 if (!input_deps.empty()) { in WriteSourceRules() 228 if (!order_only_deps.empty()) { in WriteSourceRules()
|
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
H A D | sfn_alu_readport_validation.cpp | 179 int empty = -1; in reserve_const() local 183 empty = res; in reserve_const() 191 if (empty >= 0) { in reserve_const() 192 m_hw_const_addr[empty] = value.sel(); in reserve_const() 193 (m_hw_const_bank[empty] = value.kcache_bank()); in reserve_const() 194 m_hw_const_chan[empty] = value.chan() >> 1; in reserve_const()
|
/third_party/node/src/inspector/ |
H A D | main_thread_interface.cc | 210 bool needs_notify = requests_.empty(); in Post() 226 if (dispatching_message_queue_.empty()) { in WaitForFrontendEvent() 228 while (requests_.empty()) incoming_message_cond_.Wait(scoped_lock); in WaitForFrontendEvent() 239 if (dispatching_message_queue_.empty()) { in DispatchMessages() 243 had_messages = !dispatching_message_queue_.empty(); in DispatchMessages() 244 while (!dispatching_message_queue_.empty()) { in DispatchMessages()
|
/third_party/node/test/pummel/ |
H A D | test-webcrypto-derivebits-pbkdf2.js | 40 empty: '', 46 empty: '', 119 empty: { 223 empty: { 258 empty: { 327 empty: {
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/ |
H A D | DebugHandlerBase.cpp | 96 while (!WorkList.empty()) { in identifyScopeMarkers() 100 if (!Children.empty()) in identifyScopeMarkers() 196 if (LScopes.empty()) { in beginFunction() 205 assert(DbgValues.empty() && "DbgValues map wasn't cleaned!"); in beginFunction() 206 assert(DbgLabels.empty() && "DbgLabels map wasn't cleaned!"); in beginFunction() 214 if (Entries.empty()) in beginFunction()
|
/third_party/skia/third_party/externals/spirv-tools/source/fuzz/ |
H A D | fuzzer_pass_add_equation_instructions.cpp | 115 if (candidate_instructions.empty()) { in Apply() 151 if (!candidate_instructions.empty()) { in Apply() 206 if (!integer_instructions.empty()) { in Apply() 259 if (!boolean_instructions.empty()) { in Apply() 275 if (!integer_instructions.empty()) { in Apply() 291 } while (!candidate_opcodes.empty()); in Apply()
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/fuzz/ |
H A D | fuzzer_pass_add_equation_instructions.cpp | 115 if (candidate_instructions.empty()) { in Apply() 151 if (!candidate_instructions.empty()) { in Apply() 206 if (!integer_instructions.empty()) { in Apply() 259 if (!boolean_instructions.empty()) { in Apply() 275 if (!integer_instructions.empty()) { in Apply() 291 } while (!candidate_opcodes.empty()); in Apply()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/MCTargetDesc/ |
H A D | ARMMCTargetDesc.cpp | 140 if (ArchID != ARM::ArchKind::INVALID && (CPU.empty() || CPU == "generic")) in ParseARMTriple() 144 if (!ARMArchFeature.empty()) in ParseARMTriple() 150 if (!ARMArchFeature.empty()) in ParseARMTriple() 156 if (!ARMArchFeature.empty()) in ParseARMTriple() 167 if (!FS.empty()) { in createARMMCSubtargetInfo() 168 if (!ArchFS.empty()) in createARMMCSubtargetInfo()
|