Home
last modified time | relevance | path

Searched refs:name (Results 8001 - 8025 of 25367) sorted by relevance

1...<<321322323324325326327328329330>>...1015

/third_party/typescript/tests/baselines/reference/
H A DcheckJsxChildrenProperty9.js6 let k2 = <div> <h2> Hello </h2> {(user: any) => <h2>{user.name}</h2>}</div>;
15 var k2 = <div> <h2> Hello </h2> {function (user) { return <h2>{user.name}</h2>; }}</div>;
H A DmemberVariableDeclarations1.js5 public name: string;
13 public name: string;
H A DparserArgumentList1.js3 node.className = node.className.replace(_classNameRegexp(className), function (everything, leftDelimiter, name, rightDelimiter) {
13 node.className = node.className.replace(_classNameRegexp(className), function (everything, leftDelimiter, name, rightDelimiter) {
H A DprivateNameMethod.js6 constructor(name: string) {
24 constructor(name) {
H A DinferObjectTypeFromStringLiteralToKeyof.js2 declare function inference1<T>(name: keyof T): T;
3 declare function inference2<T>(target: T, name: keyof T): T;
/third_party/vixl/test/
H A Dtest-aborts.cc12 // * Neither the name of ARM Limited nor the names of its contributors may be
40 #define TEST(name, code, expected_prefix) \
41 TEST_(ABORTS_##name) { \
/third_party/protobuf/php/src/Google/Protobuf/Internal/
H A DEnumBuilderContext.php17 // * Neither the name of Google Inc. nor the names of its
52 public function value($name, $number)
54 $value = new EnumValueDescriptor($name, $number);
/third_party/python/Lib/lib2to3/
H A Dpygram.py28 for name, symbol in grammar.symbol2number.items():
29 setattr(self, name, symbol)
/third_party/python/Lib/test/test_importlib/
H A Dthreaded_import_hangers.py30 for name, func, args in [
43 errors.append("%s appeared to hang" % name)
/third_party/skia/experimental/tskit/bindings/
H A Dcore.cpp19 void setName(std::string name) { in setName() argument
20 fName = name; in setName()
47 * Returns a Something with the provided name. in EMSCRIPTEN_BINDINGS()
48 * @param name in EMSCRIPTEN_BINDINGS()
50 TS_EXPORT("new(name: string): Something") in EMSCRIPTEN_BINDINGS()
53 * Returns the associated name. in EMSCRIPTEN_BINDINGS()
57 TS_PRIVATE_EXPORT("setName(name: string): void") in EMSCRIPTEN_BINDINGS()
/third_party/skia/modules/canvaskit/
H A Dgm.js37 WasmGMTests.LoadResource = function(name, buffer) {
40 WasmGMTests._LoadResource(name, bytePtr, buffer.byteLength);
/third_party/rust/crates/syn/tests/
H A Dtest_should_parse.rs2 ($name:ident, { $($in:tt)* }) => {
4 fn $name() {
/third_party/rust/crates/unicode-ident/diagram/src/
H A Dmain.rs13 for (name, f) in diagrams { in main()
22 if let Err(err) = imgbuf.save(name) { in main()
/third_party/rust/crates/nix/src/
H A Denv.rs17 /// Clear the environment of all name-value pairs.
52 for (name, _) in env::vars_os() { in clearenv()
53 env::remove_var(name); in clearenv()
/third_party/vk-gl-cts/scripts/egl/
H A Denums.py43 if enum.name in TYPED_VALUES:
53 return "#define %s\t%s" % (enum.name, enumValue(enum, "eglw::"))
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/
H A DvktPipelineMultisampleBaseResolve.hpp41 const std::string& name, in MSCaseBaseResolve()
43 : MultisampleCaseBase(testCtx, name, imageMSParams) in MSCaseBaseResolve()
40 MSCaseBaseResolve(tcu::TestContext& testCtx, const std::string& name, const ImageMSParams& imageMSParams) MSCaseBaseResolve() argument
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/eap_server/
H A Deap_methods.h17 EapType method, const char *name);
20 EapType eap_server_get_type(const char *name, int *vendor);
/third_party/vk-gl-cts/framework/platform/android/
H A DtcuAndroidAssets.hpp42 Resource* getResource (const char* name) const;
51 AssetResource (AAssetManager* assetMgr, const char* name);
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/eap_server/
H A Deap_methods.h18 const char *name);
21 enum eap_type eap_server_get_type(const char *name, int *vendor);
/third_party/backends/backend/
H A Dhp4200.c2277 find_device (SANE_String_Const name) in find_device() argument
2286 if (strcmp (dev->dev.name, name) == 0) in find_device()
2295 add_device (SANE_String_Const name, HP4200_Device ** argpd) in add_device() argument
2302 DBG (DBG_proc, "%s(%s)\n", me, name); in add_device()
2305 if ((pd = find_device (name))) in add_device()
2314 if ((status = sanei_usb_open (name, &fd)) != SANE_STATUS_GOOD) in add_device()
2316 DBG (DBG_error, "%s: open(%s) failed: %s\n", me, name, in add_device()
2332 pd->dev.name = strdup (name); in add_device()
2356 attach(SANE_String_Const name) attach() argument
2624 sane_open(SANE_String_Const name, SANE_Handle * h) sane_open() argument
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/gles31/
H A Des31cLayoutBindingTests.cpp225 const char* name = (*it).c_str(); in getUniformLocations() local
226 glw::GLint location = m_gl.getUniformLocation(getProgram(), name); in getUniformLocations()
230 locations[name] = location; in getUniformLocations()
437 LayoutBindingBaseCase(Context& context, const char* name, const char* description, StageType stage,
470 char const* name; member
853 virtual String buildBlockName(const String& /*name*/) in buildBlockName()
858 virtual String buildBlock(const String& /*name*/, const String& /*type*/ = String("float")) in buildBlock()
1078 LayoutBindingBaseCase::LayoutBindingBaseCase(Context& context, const char* name, const char* description, in LayoutBindingBaseCase() argument
1081 : TestCase(context, name, description) in LayoutBindingBaseCase()
1127 log << tcu::TestLog::Section((*it).name, (*i in iterate()
2024 SamplerLayoutBindingCase(Context& context, const char* name, const char* description, StageType stage, LayoutBindingParameters& samplerType, glu::GLSLVersion glslVersion) SamplerLayoutBindingCase() argument
2178 ImageLayoutBindingCase(Context& context, const char* name, const char* description, StageType stage, LayoutBindingParameters& samplerType, glu::GLSLVersion glslVersion) ImageLayoutBindingCase() argument
2922 AtomicCounterLayoutBindingCase(Context& context, const char* name, const char* description, StageType stage, LayoutBindingParameters& samplerType, glu::GLSLVersion glslVersion) AtomicCounterLayoutBindingCase() argument
3008 buildBlockName(const String& name) buildBlockName() argument
3015 buildBlock(const String& name, const String& type) buildBlock() argument
3020 s << type << " " << name << "_a; "; buildBlock() local
3021 s << type << " " << name << "_b; "; buildBlock() local
3108 UniformBlocksLayoutBindingCase(Context& context, const char* name, const char* description, StageType stage, LayoutBindingParameters& samplerType, glu::GLSLVersion glslVersion) UniformBlocksLayoutBindingCase() argument
3217 buildBlockName(const String& name) buildBlockName() argument
3223 buildBlock(const String& name, const String& type) buildBlock() argument
3227 s << type << " " << name << "_a[2];\\n"; buildBlock() local
3327 ShaderStorageBufferLayoutBindingCase(Context& context, const char* name, const char* description, StageType stage, LayoutBindingParameters& samplerType, glu::GLSLVersion glslVersion) ShaderStorageBufferLayoutBindingCase() argument
[all...]
/third_party/ntfs-3g/src/
H A Dlowntfs-3g.c158 #define GHOSTLTH 40 /* max length of a ghost file name - see ghostformat */
375 static u64 ntfs_fuse_inode_lookup(fuse_ino_t parent, const char *name) in ntfs_fuse_inode_lookup() argument
385 inum = ntfs_inode_lookup_by_mbsname(dir_ni, name); in ntfs_fuse_inode_lookup()
1028 const char *name) in ntfs_fuse_lookup()
1036 if (strlen(name) < 256) { in ntfs_fuse_lookup()
1052 name); in ntfs_fuse_lookup()
1230 const ntfschar *name, const int name_len, const int name_type, in ntfs_fuse_filler()
1244 if ((filenamelen = ntfs_ucstombs(name, name_len, &filename, 0)) < 0) { in ntfs_fuse_filler()
1320 * Effectively the maximum length of a file name is MAXNAMELEN - in ntfs_fuse_filler()
2339 static int ntfs_fuse_create(fuse_req_t req, fuse_ino_t parent, const char *name, in ntfs_fuse_create() argument
1027 ntfs_fuse_lookup(fuse_req_t req, fuse_ino_t parent, const char *name) ntfs_fuse_lookup() argument
1229 ntfs_fuse_filler(ntfs_fuse_fill_context_t *fill_ctx, const ntfschar *name, const int name_len, const int name_type, const s64 pos __attribute__((unused)), const MFT_REF mref, const unsigned dt_type __attribute__((unused))) ntfs_fuse_filler() argument
2539 ntfs_fuse_create_file(fuse_req_t req, fuse_ino_t parent, const char *name, mode_t mode, struct fuse_file_info *fi) ntfs_fuse_create_file() argument
2554 ntfs_fuse_mknod(fuse_req_t req, fuse_ino_t parent, const char *name, mode_t mode, dev_t rdev) ntfs_fuse_mknod() argument
2568 ntfs_fuse_symlink(fuse_req_t req, const char *target, fuse_ino_t parent, const char *name) ntfs_fuse_symlink() argument
2687 ntfs_fuse_rm(fuse_req_t req, fuse_ino_t parent, const char *name, enum RM_TYPES rm_type __attribute__((unused))) ntfs_fuse_rm() argument
2883 ntfs_fuse_unlink(fuse_req_t req, fuse_ino_t parent, const char *name) ntfs_fuse_unlink() argument
2895 ntfs_fuse_safe_rename(fuse_req_t req, fuse_ino_t ino, fuse_ino_t parent, const char *name, fuse_ino_t xino, fuse_ino_t newparent, const char *newname, const char *tmp) ntfs_fuse_safe_rename() argument
2947 ntfs_fuse_rename_existing_dest(fuse_req_t req, fuse_ino_t ino, fuse_ino_t parent, const char *name, fuse_ino_t xino, fuse_ino_t newparent, const char *newname) ntfs_fuse_rename_existing_dest() argument
3008 ntfs_fuse_rename(fuse_req_t req, fuse_ino_t parent, const char *name, fuse_ino_t newparent, const char *newname) ntfs_fuse_rename() argument
3153 ntfs_fuse_mkdir(fuse_req_t req, fuse_ino_t parent, const char *name, mode_t mode) ntfs_fuse_mkdir() argument
3167 ntfs_fuse_rmdir(fuse_req_t req, fuse_ino_t parent, const char *name) ntfs_fuse_rmdir() argument
3390 xattr_namespace(const char *name) xattr_namespace() argument
3421 fix_xattr_prefix(const char *name, int namespace, ntfschar **lename) fix_xattr_prefix() argument
3530 ntfs_fuse_getxattr(fuse_req_t req, fuse_ino_t ino, const char *name, size_t size, uint32_t position) global() argument
3709 ntfs_fuse_setxattr(fuse_req_t req, fuse_ino_t ino, const char *name, const char *value, size_t size, int flags, uint32_t position) global() argument
3971 ntfs_fuse_removexattr(fuse_req_t req, fuse_ino_t ino, const char *name) global() argument
[all...]
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_data_storage_test/
H A Dbms_bundle_data_storage_database_test.cpp55 const std::string NAME = "name";
183 "name":"",
261 "name":"MainAbility",
388 "name":"com.example.myapplication",
508 "name":"",
559 "name":"com.example.myapplication",
588 "name":"entry-default"
597 "name":"1.0.0"
606 "name":"MainAbility",
702 "name"
[all...]
/third_party/vk-gl-cts/modules/gles2/functional/
H A Des2fClippingTests.cpp452 RenderTestCase (Context& context, const char* name, const char* description);
460 RenderTestCase::RenderTestCase (Context& context, const char* name, const char* description) in RenderTestCase() argument
461 : TestCase (context, name, description) in RenderTestCase()
483 PointCase (Context& context, const char* name, const char* description, const tcu::Vec4* pointsBegin, const tcu::Vec4* pointsEnd, float pointSize, const rr::WindowRectangle& viewport);
494 PointCase::PointCase (Context& context, const char* name, const char* description, const tcu::Vec4* pointsBegin, const tcu::Vec4* pointsEnd, float pointSize, const rr::WindowRectangle& viewport) in PointCase() argument
495 : RenderTestCase(context, name, description) in PointCase()
605 LineRenderTestCase (Context& context, const char* name, const char* description, const ColoredLineData* linesBegin, const ColoredLineData* linesEnd, float lineWidth, const rr::WindowRectangle& viewport);
606 LineRenderTestCase (Context& context, const char* name, const char* description, const ColorlessLineData* linesBegin, const ColorlessLineData* linesEnd, float lineWidth, const rr::WindowRectangle& viewport);
622 LineRenderTestCase::LineRenderTestCase (Context& context, const char* name, const char* description, const ColoredLineData* linesBegin, const ColoredLineData* linesEnd, float lineWidth, const rr::WindowRectangle& viewport) in LineRenderTestCase() argument
623 : RenderTestCase (context, name, descriptio in LineRenderTestCase()
630 LineRenderTestCase(Context& context, const char* name, const char* description, const ColorlessLineData* linesBegin, const ColorlessLineData* linesEnd, float lineWidth, const rr::WindowRectangle& viewport) LineRenderTestCase() argument
738 LineCase(Context& context, const char* name, const char* description, const LineRenderTestCase::ColorlessLineData* linesBegin, const LineRenderTestCase::ColorlessLineData* linesEnd, float lineWidth, const rr::WindowRectangle& viewport, int searchKernelSize) LineCase() argument
786 ColoredLineCase(Context& context, const char* name, const char* description, const LineRenderTestCase::ColoredLineData* linesBegin, const LineRenderTestCase::ColoredLineData* linesEnd, float lineWidth, const rr::WindowRectangle& viewport) ColoredLineCase() argument
860 TriangleCaseBase(Context& context, const char* name, const char* description, const TriangleData* polysBegin, const TriangleData* polysEnd, const rr::WindowRectangle& viewport) TriangleCaseBase() argument
942 TriangleCase(Context& context, const char* name, const char* description, const TriangleData* polysBegin, const TriangleData* polysEnd, const rr::WindowRectangle& viewport) TriangleCase() argument
982 TriangleAttributeCase(Context& context, const char* name, const char* description, const TriangleData* polysBegin, const TriangleData* polysEnd, const rr::WindowRectangle& viewport) TriangleAttributeCase() argument
1036 FillTest(Context& context, const char* name, const char* description, const rr::WindowRectangle& viewport) FillTest() argument
1130 TriangleFillTest(Context& context, const char* name, const char* description, const rr::WindowRectangle& viewport) TriangleFillTest() argument
1184 QuadFillTest(Context& context, const char* name, const char* description, const rr::WindowRectangle& viewport, const tcu::Vec3& d1, const tcu::Vec3& d2, const tcu::Vec3& center_) QuadFillTest() argument
1220 TriangleFanFillTest(Context& context, const char* name, const char* description, const rr::WindowRectangle& viewport) TriangleFanFillTest() argument
1948 const std::string name = std::string("clip") + init() local
1998 const std::string name = std::string("clip") + init() local
2039 const std::string name = std::string("clip") + init() local
[all...]
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fClippingTests.cpp455 RenderTestCase (Context& context, const char* name, const char* description);
463 RenderTestCase::RenderTestCase (Context& context, const char* name, const char* description) in RenderTestCase() argument
464 : TestCase (context, name, description) in RenderTestCase()
486 PointCase (Context& context, const char* name, const char* description, const tcu::Vec4* pointsBegin, const tcu::Vec4* pointsEnd, float pointSize, const rr::WindowRectangle& viewport);
497 PointCase::PointCase (Context& context, const char* name, const char* description, const tcu::Vec4* pointsBegin, const tcu::Vec4* pointsEnd, float pointSize, const rr::WindowRectangle& viewport) in PointCase() argument
498 : RenderTestCase(context, name, description) in PointCase()
608 LineRenderTestCase (Context& context, const char* name, const char* description, const ColoredLineData* linesBegin, const ColoredLineData* linesEnd, float lineWidth, const rr::WindowRectangle& viewport);
609 LineRenderTestCase (Context& context, const char* name, const char* description, const ColorlessLineData* linesBegin, const ColorlessLineData* linesEnd, float lineWidth, const rr::WindowRectangle& viewport);
625 LineRenderTestCase::LineRenderTestCase (Context& context, const char* name, const char* description, const ColoredLineData* linesBegin, const ColoredLineData* linesEnd, float lineWidth, const rr::WindowRectangle& viewport) in LineRenderTestCase() argument
626 : RenderTestCase (context, name, descriptio in LineRenderTestCase()
633 LineRenderTestCase(Context& context, const char* name, const char* description, const ColorlessLineData* linesBegin, const ColorlessLineData* linesEnd, float lineWidth, const rr::WindowRectangle& viewport) LineRenderTestCase() argument
741 LineCase(Context& context, const char* name, const char* description, const LineRenderTestCase::ColorlessLineData* linesBegin, const LineRenderTestCase::ColorlessLineData* linesEnd, float lineWidth, const rr::WindowRectangle& viewport, int searchKernelSize) LineCase() argument
789 ColoredLineCase(Context& context, const char* name, const char* description, const LineRenderTestCase::ColoredLineData* linesBegin, const LineRenderTestCase::ColoredLineData* linesEnd, float lineWidth, const rr::WindowRectangle& viewport) ColoredLineCase() argument
864 TriangleCaseBase(Context& context, const char* name, const char* description, const TriangleData* polysBegin, const TriangleData* polysEnd, const rr::WindowRectangle& viewport) TriangleCaseBase() argument
946 TriangleCase(Context& context, const char* name, const char* description, const TriangleData* polysBegin, const TriangleData* polysEnd, const rr::WindowRectangle& viewport) TriangleCase() argument
986 TriangleAttributeCase(Context& context, const char* name, const char* description, const TriangleData* polysBegin, const TriangleData* polysEnd, const rr::WindowRectangle& viewport) TriangleAttributeCase() argument
1040 FillTest(Context& context, const char* name, const char* description, const rr::WindowRectangle& viewport) FillTest() argument
1134 TriangleFillTest(Context& context, const char* name, const char* description, const rr::WindowRectangle& viewport) TriangleFillTest() argument
1188 QuadFillTest(Context& context, const char* name, const char* description, const rr::WindowRectangle& viewport, const tcu::Vec3& d1, const tcu::Vec3& d2, const tcu::Vec3& center_) QuadFillTest() argument
1224 TriangleFanFillTest(Context& context, const char* name, const char* description, const rr::WindowRectangle& viewport) TriangleFanFillTest() argument
1951 const std::string name = std::string("clip") + init() local
2001 const std::string name = std::string("clip") + init() local
2042 const std::string name = std::string("clip") + init() local
[all...]

Completed in 34 milliseconds

1...<<321322323324325326327328329330>>...1015