Home
last modified time | relevance | path

Searched refs:empty (Results 376 - 400 of 5188) sorted by relevance

1...<<11121314151617181920>>...208

/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/table/
H A DDisjointRangeMap.java43 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 Dqueues.py12 """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 DName.cpp52 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 DRewriteOutArgs.cpp60 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 Dutilities_unittest.cpp38 // 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 DTpiStreamBuilder.cpp49 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 DPDBFileBuilder.cpp174 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 DvkDeviceUtil.cpp55 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 Damber_script.cc70 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 DSymbolStringPool.h39 /// 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 DStringMatcher.cpp30 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 DBlotMapVector.h109 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 Dnamer.cc71 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 Dtest_signal.rs27 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 Dpoll.rs49 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 Dabg-tools-utils.cc361 /// 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 DSpirvIntrinsics.cpp86 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 Dninja_action_target_writer.cc93 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 Dsfn_alu_readport_validation.cpp179 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 Dmain_thread_interface.cc210 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 Dtest-webcrypto-derivebits-pbkdf2.js40 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 DDebugHandlerBase.cpp96 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 Dfuzzer_pass_add_equation_instructions.cpp115 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 Dfuzzer_pass_add_equation_instructions.cpp115 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 DARMMCTargetDesc.cpp140 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()

Completed in 16 milliseconds

1...<<11121314151617181920>>...208