Home
last modified time | relevance | path

Searched refs:types (Results 1276 - 1300 of 5315) sorted by relevance

1...<<51525354555657585960>>...213

/third_party/selinux/libselinux/utils/
H A Dcompute_member.c2 #include <sys/types.h>
H A Dvalidatetrans.c2 #include <sys/types.h>
/third_party/rust/crates/rustix/src/io/
H A Ddup.rs8 pub use backend::io::types::DupFlags;
/third_party/rust/crates/rustix/src/process/
H A Drlimit.rs5 pub use backend::process::types::Resource;
/third_party/libphonenumber/cpp/test/phonenumbers/
H A Dphonenumberutil_test.cc210 std::set<PhoneNumberUtil::PhoneNumberType> types; in TEST_F() local
211 phone_util_.GetSupportedTypesForRegion(RegionCode::BR(), &types); in TEST_F() local
212 EXPECT_NE(types.find(PhoneNumberUtil::FIXED_LINE), types.end()); in TEST_F()
214 EXPECT_NE(types.find(PhoneNumberUtil::MOBILE), types.end()); in TEST_F()
216 EXPECT_EQ(types.find(PhoneNumberUtil::UNKNOWN), types.end()); in TEST_F()
218 types.clear(); in TEST_F()
222 phone_util_.GetSupportedTypesForRegion(RegionCode::US(), &types); in TEST_F() local
227 phone_util_.GetSupportedTypesForRegion(RegionCode::ZZ(), &types); TEST_F() local
233 std::set<PhoneNumberUtil::PhoneNumberType> types; TEST_F() local
[all...]
/third_party/lzma/CPP/7zip/UI/Common/
H A DUpdate.cpp193 const CObjectVector<COpenType> &types, const UString &arcPath) in InitFormatIndex()
195 if (types.Size() > 1) in InitFormatIndex()
198 if (types.Size() != 0) in InitFormatIndex()
200 MethodMode.Type = types[0]; in InitFormatIndex()
1101 const CObjectVector<COpenType> &types, in UpdateArchive()
1113 if (types.Size() > 1) in UpdateArchive()
1175 if (!options.InitFormatIndex(codecs, types, cmdArcPath2) || in UpdateArchive()
1254 op.types = &types2; in UpdateArchive()
192 InitFormatIndex(const CCodecs *codecs, const CObjectVector<COpenType> &types, const UString &arcPath) InitFormatIndex() argument
1099 UpdateArchive( CCodecs *codecs, const CObjectVector<COpenType> &types, const UString &cmdArcPath2, NWildcard::CCensor &censor, CUpdateOptions &options, CUpdateErrorInfo &errorInfo, IOpenCallbackUI *openCallback, IUpdateCallbackUI2 *callback, bool needSetPath) UpdateArchive() argument
/third_party/jerryscript/jerry-core/ecma/base/
H A Decma-gc.c189 uint8_t property = property_pair_p->header.types[index]; in ecma_gc_mark_properties()
764 if (prop_iter_p->types[0] == ECMA_PROPERTY_TYPE_HASHMAP) in ecma_gc_mark()
949 if (prop_iter_p->types[0] == ECMA_PROPERTY_TYPE_HASHMAP) in ecma_gc_free_properties()
963 JERRY_ASSERT (prop_iter_p->types[0] != ECMA_PROPERTY_TYPE_DELETED in ecma_gc_free_properties()
964 || prop_iter_p->types[1] != ECMA_PROPERTY_TYPE_DELETED); in ecma_gc_free_properties()
970 ecma_property_t *property_p = (ecma_property_t *) (prop_iter_p->types + i); in ecma_gc_free_properties()
1002 if (prop_iter_p->types[i] != ECMA_PROPERTY_TYPE_DELETED) in ecma_gc_free_properties()
1588 if (prop_iter_p->types[0] == ECMA_PROPERTY_TYPE_HASHMAP) in ecma_free_unused_memory()
/third_party/python/Lib/test/test_importlib/
H A Dtest_abc.py7 import types namespace
222 mod = types.ModuleType('blah')
486 module = types.ModuleType(name)
507 module = types.ModuleType('blah')
555 module = types.ModuleType('blah')
660 module = types.ModuleType('blah')
690 module = types.ModuleType('blah')
795 module = types.ModuleType(self.name)
/third_party/python/Lib/test/
H A Dtest_exception_group.py3 import types namespace
19 self.assertIsInstance(ExceptionGroup[E], types.GenericAlias)
20 self.assertIsInstance(BaseExceptionGroup[E], types.GenericAlias)
553 def split_exception_group(self, eg, types):
557 match, rest = eg.split(types)
558 sg = eg.subgroup(types)
563 self.assertIsInstance(e, types)
568 self.assertIsInstance(e, types)
/foundation/ability/idl_tool/idl_tool_2/codegen/HDI/c/
H A Dhdi_c_code_emitter.cpp23 const AST::TypeStringMap &types = ast_->GetTypes(); in GetStdlibInclusions() local
24 for (const auto &pair : types) { in GetStdlibInclusions()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text/
H A Dtext_model.h41 std::string types; member
62 jsonValue->Put("types", types.c_str()); in ToString()
/foundation/communication/ipc/ipc/native/c/ipc/src/linux/include/
H A Dsys_binder.h20 #include <sys/types.h>
22 #include <linux/types.h>
/foundation/graphic/graphic_2d/rosen/modules/composer/hdi_backend/test/fuzztest/hdidevice_fuzzer/
H A Dhdidevice_fuzzer.cpp167 std::vector<int32_t> types; in DoSomethingInterestingWithMyAPI() local
168 device->GetScreenCompChange(screenId, layersId, types); in DoSomethingInterestingWithMyAPI()
/third_party/f2fs-tools/tools/
H A Dfibmap.c25 #include <sys/types.h>
38 #include <linux/types.h>
/third_party/PyYAML/tests/lib/
H A Dtest_appliance.py2 import sys, os, os.path, types, traceback, pprint namespace
15 if isinstance(value, types.FunctionType) and hasattr(value, 'unittest'):
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/
H A DRbPath.java206 private boolean typeSuffixIsAnyOf(String... types) { in typeSuffixIsAnyOf() argument
208 for (String type : types) { in typeSuffixIsAnyOf()
H A DIcuConverterConfig.java78 * Sets the output types which will be converted. This is optional and defaults to {@link
81 public Builder setOutputTypes(Iterable<OutputType> types) { in setOutputTypes() argument
82 this.outputTypes = ImmutableSet.copyOf(types); in setOutputTypes()
/third_party/ltp/testcases/kernel/device-drivers/include/
H A DincludeTest.c29 #include <linux/types.h>
38 #include <asm/types.h>
/third_party/node/test/common/
H A Dheap.js58 function readHeapInfo(raw, fields, types, strings) {
65 let type = types[j];
/third_party/ntfs-3g/include/fuse-lite/
H A Dfuse_kernel.h39 #include <sys/types.h>
44 #include <asm/types.h>
/third_party/libinput/include/linux/linux/
H A Dinput.h15 #include <sys/types.h>
16 #include <linux/types.h>
269 * MT_TOOL types
460 * Force feedback effect types
476 * Force feedback periodic effect types
/third_party/libevdev/include/linux/linux/
H A Dinput.h15 #include <sys/types.h>
16 #include <linux/types.h>
278 * MT_TOOL types
469 * Force feedback effect types
485 * Force feedback periodic effect types
/third_party/ltp/testcases/kernel/syscalls/fanotify/
H A Dfanotify22.c24 #include <sys/types.h>
31 #include <sys/types.h>
/third_party/ltp/testcases/open_posix_testsuite/stress/threads/pthread_mutex_init/
H A Ds-c.c93 static int types[] = { PTHREAD_MUTEX_NORMAL, variable
154 types[i - 1]))) { in main()
/third_party/node/deps/openssl/openssl/apps/include/
H A Dopt.h12 #include <sys/types.h>
14 #include <openssl/types.h>

Completed in 21 milliseconds

1...<<51525354555657585960>>...213