| /src/external/gpl3/gcc/dist/libobjc/ |
| objc-foreach.c | 42 objc_enumerationMutation (id collection) 45 (*__objc_enumeration_mutation_handler) (collection); 50 _objc_abort ("Collection %p mutated during fast enumeration", collection);
|
| /src/external/gpl3/gcc.old/dist/libobjc/ |
| objc-foreach.c | 42 objc_enumerationMutation (id collection) 45 (*__objc_enumeration_mutation_handler) (collection); 50 _objc_abort ("Collection %p mutated during fast enumeration", collection);
|
| /src/external/bsd/atf/dist/atf-c++/ |
| utils.hpp | 53 template< typename Collection > 55 grep_collection(const std::string& regexp, const Collection& collection) 57 for (typename Collection::const_iterator iter = collection.begin(); 58 iter != collection.end(); ++iter) {
|
| macros.hpp | 121 #define ATF_REQUIRE_IN(element, collection) \ 122 ATF_REQUIRE((collection).find(element) != (collection).end()) 124 #define ATF_REQUIRE_NOT_IN(element, collection) \ 125 ATF_REQUIRE((collection).find(element) == (collection).end())
|
| macros_test.cpp | 138 std::set< std::string > collection; local 139 collection.insert("foo"); 140 collection.insert("bar"); 141 collection.insert("baz"); 144 ATF_REQUIRE_IN(element, collection); 172 std::set< std::string > collection; local 173 collection.insert("foo"); 174 collection.insert("bar"); 175 collection.insert("baz"); 178 ATF_REQUIRE_NOT_IN(element, collection); [all...] |
| /src/external/mpl/dhcp/dist/tests/ |
| t_api_dhcp.c | 34 check_collection(struct packet *p, struct lease *l, struct collection *c) {
|
| /src/external/gpl3/binutils/dist/include/ |
| libfcollector.h | 30 ! Routine to suspend data collection during an experiment. 34 ! Routine to resume data collection during an experiment. 38 ! Routine to stop all data collection and close the experiment.
|
| /src/external/gpl3/binutils.old/dist/include/ |
| libfcollector.h | 30 ! Routine to suspend data collection during an experiment. 34 ! Routine to resume data collection during an experiment. 38 ! Routine to stop all data collection and close the experiment.
|
| /src/external/gpl3/gcc/dist/include/ |
| libfcollector.h | 30 ! Routine to suspend data collection during an experiment. 34 ! Routine to resume data collection during an experiment. 38 ! Routine to stop all data collection and close the experiment.
|
| /src/external/gpl3/gdb/dist/include/ |
| libfcollector.h | 30 ! Routine to suspend data collection during an experiment. 34 ! Routine to resume data collection during an experiment. 38 ! Routine to stop all data collection and close the experiment.
|
| /src/external/gpl3/gdb.old/dist/include/ |
| libfcollector.h | 30 ! Routine to suspend data collection during an experiment. 34 ! Routine to resume data collection during an experiment. 38 ! Routine to stop all data collection and close the experiment.
|
| /src/external/mpl/dhcp/dist/server/ |
| class.c | 48 log_fatal ("Can't allocate check of default collection"); 51 /* check-collection "default" */ 67 int check_collection (packet, lease, collection) 70 struct collection *collection; 79 for (class = collection -> classes; class; class = class -> nic) { 216 struct collection *lp; 240 struct collection *lp;
|
| /src/lib/libusbhid/ |
| usbhid.h | 72 int collection; member in struct:hid_item
|
| parse.c | 60 * The start of collection item has no report ID set, so save 297 case 10: /* Collection */ 299 c->collection = dval; 318 case 12: /* End collection */
|
| /src/external/ibm-public/postfix/dist/src/global/ |
| dict_mongodb.c | 120 char *collection; /* Collection name */ member in struct:__anon23073 166 dict_mongodb->collection = cfg_get_str(p, "collection", NULL, 1, 0); 384 dict_mongodb->collection); 386 msg_warn("%s:%s: failed to get collection [%s] from [%s]", 388 dict_mongodb->collection, dict_mongodb->dbname); 482 myfree(dict_mongodb->collection);
|
| /src/sys/dev/hid/ |
| hid.c | 255 case 10: /* Collection */ 257 c->collection = uval; 266 case 12: /* End collection */ 490 * It is used to discover if the given 'id' is part of 'usage' collection 522 (hi.collection == HCOLL_APPLICATION || 523 hi.collection == HCOLL_PHYSICAL || 524 hi.collection == HCOLL_LOGICAL))
|
| /src/crypto/external/apache2/openssl/dist/util/perl/OpenSSL/Config/ |
| Query.pm | 93 LIST is expected to be the collection of names of end products, such as 138 LIST is expected to be the collection of names of configuration data, such
|
| /src/crypto/external/bsd/openssl/dist/util/perl/OpenSSL/Config/ |
| Query.pm | 93 LIST is expected to be the collection of names of end products, such as 138 LIST is expected to be the collection of names of configuration data, such
|
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| ExprEngineObjC.cpp | 94 // (2) note whether the collection has any more elements (or in other words, 112 const Stmt *collection = S->getCollection(); local 114 SVal collectionV = state->getSVal(collection, Pred->getLocationContext());
|
| /src/external/mpl/dhcp/dist/dhcpctl/ |
| cltest.c | 71 int check_collection (struct packet *p, struct lease *l, struct collection *c)
|
| cltest2.c | 304 int check_collection (struct packet *p, struct lease *l, struct collection *c)
|
| /src/external/bsd/zstd/dist/contrib/largeNbDicts/ |
| largeNbDicts.c | 212 static void freeSliceCollection(slice_collection_t collection) 214 free(collection.slicePtrs); 215 free(collection.capacities); 219 * downsizes sizes of slices within collection, according to `newSizes`. 220 * every `newSizes` entry must be <= than its corresponding collection size */ 221 void shrinkSizes(slice_collection_t collection, 222 const size_t* newSizes) /* presumed same size as collection */ 224 size_t const nbSlices = collection.nbSlices; 226 assert(newSizes[blockNb] <= collection.capacities[blockNb]); 227 collection.capacities[blockNb] = newSizes[blockNb] [all...] |
| /src/external/mpl/dhcp/dist/includes/ |
| tree.h | 217 struct collection *check;
|
| /src/external/apache2/llvm/dist/clang/lib/Sema/ |
| SemaStmt.cpp | 2023 if (const Stmt *Collection = S->getCollection()) 2024 Visit(Collection); 2151 /// In an Objective C collection iteration statement: 2169 Sema::CheckObjCForCollectionOperand(SourceLocation forLoc, Expr *collection) { 2170 if (!collection) 2173 ExprResult result = CorrectDelayedTyposInExpr(collection); 2176 collection = result.get(); 2179 if (collection->isTypeDependent()) return collection; 2182 result = DefaultFunctionArrayLvalueConversion(collection); [all...] |
| /src/external/bsd/unbound/dist/contrib/ |
| unbound.spec | 114 - Using parts from ports collection entry by Jaap Akkerhuis.
|