/third_party/rust/crates/aho-corasick/src/ |
H A D | nfa.rs | 25 /// up a prefix trie of a given set of patterns, and then wiring up failure 65 /// A set of equivalence classes in terms of bytes. We compute this while 70 /// A set of states. Each state defines its own transitions, a fail 71 /// transition and a set of indices corresponding to matches. 909 // set to the dead state for ALL states following a match, not in fill_failure_transitions() 941 /// Returns a set that tracked queued states. 945 /// returns an inert set that nevers adds anything and always reports 1040 /// A set of state identifiers used to avoid revisiting the same state multiple 1043 /// This set has an "inert" and an "active" mode. When inert, the set neve [all...] |
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
H A D | xml_consistency.py | 54 # We could make this an (extension name, api name) set to be more specific. 115 extension_cmds = set() 123 names = set() 155 """Return a set of "support=" attribute strings that should not be included in the database. 159 return set(()) 199 # Some return codes are related in that only one of a set 203 # set(("XR_ERROR_SESSION_NOT_RUNNING", "XR_ERROR_SESSION_RUNNING")), 219 self.allowedStructs = set(( 233 self.nestedStructs = set(( 243 self.requiredStructs = set(( [all...] |
/third_party/skia/third_party/externals/spirv-tools/source/val/ |
H A D | validation_state.h | 20 #include <set> 231 /// Returns the set of entry points that root call graphs that contain 233 const std::set<uint32_t>& recursive_entry_points() const { in recursive_entry_points() 251 const std::set<SpvExecutionModel>* GetExecutionModels( in GetExecutionModels() 263 const std::set<SpvExecutionMode>* GetExecutionModes( in GetExecutionModes() 287 std::set<uint32_t> EntryPointReferences(uint32_t id) const; 289 /// Inserts an <id> to the set of functions that are target of OpFunctionCall. 323 /// Returns a reference to the set of capabilities in the module. 335 /// is an empty set. 339 /// is an empty set [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/val/ |
H A D | validation_state.h | 20 #include <set> 231 /// Returns the set of entry points that root call graphs that contain 233 const std::set<uint32_t>& recursive_entry_points() const { in recursive_entry_points() 251 const std::set<SpvExecutionModel>* GetExecutionModels( in GetExecutionModels() 263 const std::set<SpvExecutionMode>* GetExecutionModes( in GetExecutionModes() 287 std::set<uint32_t> EntryPointReferences(uint32_t id) const; 289 /// Inserts an <id> to the set of functions that are target of OpFunctionCall. 323 /// Returns a reference to the set of capabilities in the module. 335 /// is an empty set. 339 /// is an empty set [all...] |
/third_party/skia/third_party/externals/icu/source/tools/toolutil/ |
H A D | udbgutil.cpp | 604 #include <set> 619 std::map < std::string, std::set < std::string > > > fTable; 654 fTable[ticket] = std::map < std::string, std::set < std::string > >(); in add() 662 fTable[ticket][where] = std::set < std::string >(); in add() 678 fTable[ticket] = std::map < std::string, std::set < std::string > >(); in add() 686 fTable[ticket][where] = std::set < std::string >(); in add() 704 std::map < std::string, std::set < std::string > > >::iterator i = fTable.begin(); in print() 715 for( std::map< std::string, std::set < std::string > >::iterator ii = (*i).second.begin(); in print() 719 for ( std::set < std::string >::iterator iii = (*ii).second.begin(); in print()
|
/third_party/skia/include/core/ |
H A D | SkMatrix.h | 135 /** Returns SkMatrix set to scale and translate src to dst. ScaleToFit selects 138 empty, returns SkMatrix set to: 193 false positives. For example, when kPerspective_Mask is set, all 194 other bits are set. 481 SkMatrix& set(int index, SkScalar value) { in set() function in SkMatrix 492 SkMatrix& setScaleX(SkScalar v) { return this->set(kMScaleX, v); } in setScaleX() 498 SkMatrix& setScaleY(SkScalar v) { return this->set(kMScaleY, v); } in setScaleY() 504 SkMatrix& setSkewY(SkScalar v) { return this->set(kMSkewY, v); } in setSkewY() 510 SkMatrix& setSkewX(SkScalar v) { return this->set(kMSkewX, v); } in setSkewX() 516 SkMatrix& setTranslateX(SkScalar v) { return this->set(kMTrans [all...] |
/foundation/ability/ability_base/interfaces/kits/native/extractortool/include/ |
H A D | zip_file.h | 21 #include <set> 133 // This descriptor MUST exist if bit 3 of the general purpose bit flag is set (see below). 199 void GetChildNames(const std::string &srcPath, std::set<std::string> &fileSet); 292 void GetChildNamesCache(const std::string &srcPath, std::set<std::string> &fileSet); 296 void GetChildNamesNormal(const std::string &srcPath, std::set<std::string> &fileSet);
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/manager/display_sync/ |
H A D | ui_display_sync_manager.cpp | 195 std::set<int32_t> UIDisplaySyncManager::FindRefreshRateFactors(int32_t refreshRate) in FindRefreshRateFactors() 197 std::set<int32_t> refreshRateFactors; in FindRefreshRateFactors() 222 std::set<int32_t> allFactors; in FindAllRefreshRateFactors() 224 std::set<int32_t> factors = FindRefreshRateFactors(refreshRate); in FindAllRefreshRateFactors()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/render/adapter/ |
H A D | image_painter_utils.cpp | 41 radii[SkRRect::kUpperLeft_Corner].set( in ToSkRadius() 44 radii[SkRRect::kUpperRight_Corner].set( in ToSkRadius() 47 radii[SkRRect::kLowerLeft_Corner].set( in ToSkRadius() 50 radii[SkRRect::kLowerRight_Corner].set( in ToSkRadius()
|
H A D | graphic_modifier.cpp | 54 radii[SkRRect::kUpperLeft_Corner].set(radius_->Get().x_, radius_->Get().x_), in MakeRRect() 55 radii[SkRRect::kUpperRight_Corner].set(radius_->Get().y_, radius_->Get().y_); in MakeRRect() 56 radii[SkRRect::kLowerRight_Corner].set(radius_->Get().z_, radius_->Get().z_); in MakeRRect() 57 radii[SkRRect::kLowerLeft_Corner].set(radius_->Get().w_, radius_->Get().w_); in MakeRRect()
|
/foundation/multimedia/camera_framework/services/camera_service/include/ |
H A D | hcamera_device_manager.h | 20 #include <set>
108 sptr<HCameraDevice> device, uint32_t accessTokenId, int32_t cost, const std::set<std::string> &conflicting)
in HCameraDeviceHolder() 157 inline std::set<std::string> GetConflicting() const { return conflicting_; }
in GetConflicting() 168 std::set<std::string> conflicting_;
|
/foundation/communication/netmanager_base/test/netconnmanager/unittest/net_conn_service_regional_test/ |
H A D | net_conn_service_regional_test.cpp | 82 std::set<std::string> permissions; in HWTEST_F() 89 std::set<std::string> permissions; in HWTEST_F() 96 std::set<std::string> permissions; in HWTEST_F() 103 std::set<std::string> permissions; in HWTEST_F()
|
/foundation/communication/netmanager_base/services/netconnmanager/include/stub/ |
H A D | net_conn_service_stub.h | 36 using NetConnServiceFuncPer = std::pair<NetConnServiceFunc, std::set<std::string>>; 46 bool CheckPermission(const std::set<std::string> &permissions); 47 bool CheckPermissionWithCache(const std::set<std::string> &permissions); 48 int32_t OnRequestCheck(uint32_t code, const std::set<std::string> &permissions);
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/include/ |
H A D | query_expression.h | 20 #include <set> 140 const std::set<Key> &GetKeys() const; 141 void InKeys(const std::set<Key> &keys); 176 std::set<Key> keys_;
|
/foundation/distributedhardware/distributed_input/services/sink/sinkmanager/include/ |
H A D | distributed_input_sink_manager.h | 20 #include <set> 181 std::set<sptr<IGetSinkScreenInfosCallback>> getSinkScreenInfosCallbacks_; 190 std::set<std::string> sharingDhIds_; 191 std::map<int32_t, std::set<std::string>> sharingDhIdsMap_;
|
/foundation/communication/dsoftbus/adapter/common/include/ |
H A D | softbus_adapter_socket.h | 150 void SoftBusSocketFdZero(SoftBusFdSet *set); 151 void SoftBusSocketFdSet(int32_t socketFd, SoftBusFdSet *set); 152 void SoftBusSocketFdClr(int32_t socketFd, SoftBusFdSet *set); 153 int32_t SoftBusSocketFdIsset(int32_t socketFd, SoftBusFdSet *set);
|
/third_party/gn/src/gn/ |
H A D | scope.h | 10 #include <set> 74 // When set, all existing avlues in the destination scope will be 78 // where a variable with the same name is already set. The exception is 89 // When set, values copied to the destination scope will be marked as used 95 // When set, those variables are not merged. 96 std::set<std::string> excluded_values; 138 // Returns true if the scope has any values set. This does not check other 139 // things that may be set like templates or defaults. 148 // counts_as_used should be set if the variable is being read in a way that 151 // found_in_scope is set t [all...] |
/third_party/googletest/googlemock/scripts/generator/cpp/ |
H A D | gmock_class.py | 38 _dummy = set 42 set = sets.Set variable 45 # How many spaces to indent. Can set me with the INDENT environment variable. 146 processed_class_names = set() 228 desired_class_names = set(argv[2:])
|
/third_party/icu/icu4c/source/common/ |
H A D | ubidi_props.cpp | 47 /* set of property starts for UnicodeSet ------------------------------------ */ 55 sa->add(sa->set, start); in _enumPropertyStartsRange() 78 sa->addRange(sa->set, c, c+1); in ubidi_addPropertyStarts() 90 sa->add(sa->set, start); in ubidi_addPropertyStarts() 97 sa->add(sa->set, limit); in ubidi_addPropertyStarts()
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/normalizer/ |
H A D | TestCanonicalIterator.java | 146 SortedSet set = new TreeSet(); in TestBasic() 151 set.clear(); in TestBasic() 159 set.add(result); // sort them in TestBasic() 163 expectEqual(i + ": ", testArray[i][0], collectionToString(set), testArray[i][1]); in TestBasic() 193 // set up for readable display in getReadable()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/ |
H A D | TestCanonicalIterator.java | 143 SortedSet set = new TreeSet(); in TestBasic() 148 set.clear(); in TestBasic() 156 set.add(result); // sort them in TestBasic() 160 expectEqual(i + ": ", testArray[i][0], collectionToString(set), testArray[i][1]); in TestBasic() 190 // set up for readable display in getReadable()
|
/third_party/node/lib/internal/fs/ |
H A D | recursive_watch.js | 56 files.set(f, file); 161 this.#files.set(f, file); 190 this.#files.set(file, currentStats); 221 this.#files.set(filename, file);
|
/third_party/node/test/parallel/ |
H A D | test-tls-onread-static-buffer.js | 61 newIncoming.set(incoming); 62 newIncoming.set(buf.slice(0, nread), incoming.length); 127 newIncoming.set(incoming); 128 newIncoming.set(buf.slice(0, nread), incoming.length);
|
/third_party/node/deps/icu-small/source/common/ |
H A D | ubidi_props.cpp | 47 /* set of property starts for UnicodeSet ------------------------------------ */ 55 sa->add(sa->set, start); in _enumPropertyStartsRange() 78 sa->addRange(sa->set, c, c+1); in ubidi_addPropertyStarts() 90 sa->add(sa->set, start); in ubidi_addPropertyStarts() 97 sa->add(sa->set, limit); in ubidi_addPropertyStarts()
|
/third_party/mesa3d/src/intel/vulkan/ |
H A D | anv_nir_compute_push_layout.c | 132 .set = ANV_DESCRIPTOR_SET_PUSH_CONSTANTS, in anv_nir_compute_push_layout() 235 .set = binding->set, in anv_nir_compute_push_layout() 243 if (binding->set < MAX_SETS && robust_buffer_access) { in anv_nir_compute_push_layout()
|