Home
last modified time | relevance | path

Searched refs:target (Results 426 - 450 of 4063) sorted by relevance

1...<<11121314151617181920>>...163

/third_party/skia/third_party/externals/angle2/src/libGLESv2/
H A Dentry_points_gles_3_0_autogen.h18 ANGLE_EXPORT void GL_APIENTRY GL_BeginQuery(GLenum target, GLuint id);
20 ANGLE_EXPORT void GL_APIENTRY GL_BindBufferBase(GLenum target, GLuint index, GLuint buffer);
22 GL_BindBufferRange(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size);
24 ANGLE_EXPORT void GL_APIENTRY GL_BindTransformFeedback(GLenum target, GLuint id);
48 ANGLE_EXPORT void GL_APIENTRY GL_CompressedTexImage3D(GLenum target,
57 ANGLE_EXPORT void GL_APIENTRY GL_CompressedTexSubImage3D(GLenum target,
73 ANGLE_EXPORT void GL_APIENTRY GL_CopyTexSubImage3D(GLenum target,
103 ANGLE_EXPORT void GL_APIENTRY GL_EndQuery(GLenum target);
106 ANGLE_EXPORT void GL_APIENTRY GL_FlushMappedBufferRange(GLenum target,
109 ANGLE_EXPORT void GL_APIENTRY GL_FramebufferTextureLayer(GLenum target,
[all...]
/third_party/spirv-tools/source/val/
H A Dvalidate_annotation.cpp100 const Instruction* target) { in ValidateDecorationTarget()
101 auto fail = [&_, dec, inst, target](uint32_t vuid) -> DiagnosticStream { in ValidateDecorationTarget()
105 << " decoration on target <id> " << _.getIdName(target->id()) << " "); in ValidateDecorationTarget()
110 if (!spvOpcodeIsScalarSpecConstant(target->opcode())) { in ValidateDecorationTarget()
119 if (target->opcode() != spv::Op::OpTypeStruct) { in ValidateDecorationTarget()
124 if (target->opcode() != spv::Op::OpTypeArray && in ValidateDecorationTarget()
125 target->opcode() != spv::Op::OpTypeRuntimeArray && in ValidateDecorationTarget()
126 target->opcode() != spv::Op::OpTypePointer) { in ValidateDecorationTarget()
131 if (target in ValidateDecorationTarget()
98 ValidateDecorationTarget(ValidationState_t& _, spv::Decoration dec, const Instruction* inst, const Instruction* target) ValidateDecorationTarget() argument
255 const auto target = _.FindDef(target_id); ValidateDecorate() local
371 auto target = _.FindDef(target_id); ValidateGroupDecorate() local
[all...]
/third_party/ltp/tools/sparse/sparse-src/
H A Dtarget-ppc.c2 #include "target.h"
7 static void predefine_ppc(const struct target *self) in predefine_ppc()
34 static void init_ppc32(const struct target *self) in init_ppc32()
42 static void predefine_ppc32(const struct target *self) in predefine_ppc32()
47 const struct target target_ppc32 = {
63 static void predefine_ppc64(const struct target *self) in predefine_ppc64()
73 const struct target target_ppc64 = {
H A Dunssa.c7 * 2) Replace all the phi-nodes by copies of the temporaries to the phi-node target.
25 * target pseudos.
39 pseudo_t target = phi->target; in simplify_phi_node() local
54 // -> replace the target pseudo by the tmp in simplify_phi_node()
55 FOR_EACH_PTR(target->users, pu) { in simplify_phi_node()
69 tmp->type = phi->target->type; in replace_phi_node()
70 tmp->ident = phi->target->ident; in replace_phi_node()
87 def->target = tmp; in replace_phi_node()
99 insn->target in replace_phi_node()
[all...]
/third_party/musl/libc-test/src/functionalext/supplement/string/
H A Dwmemchr.c23 * @tc.desc : Find the first occurrence of a wide character in the target array
29 wchar_t target = L'C'; in wmemchr_0100() local
31 wchar_t *result = wmemchr(str, target, sz); in wmemchr_0100()
33 t_error("%s not found target ch\n", __func__); in wmemchr_0100()
45 wchar_t target = L'H'; in wmemchr_0200() local
47 wchar_t *result = wmemchr(str, target, sz); in wmemchr_0200()
49 t_error("%s found target ch\n", __func__); in wmemchr_0200()
61 wchar_t target = L'C'; in wmemchr_0300() local
63 wchar_t *result = wmemchr(str, target, sz); in wmemchr_0300()
65 t_error("%s found target c in wmemchr_0300()
[all...]
/third_party/vixl/benchmarks/aarch64/
H A Dbench-branch-masm.cc56 Label target; in main() local
57 masm.B(&target); in main()
58 masm.B(eq, &target); in main()
59 masm.Cbz(x2, &target); in main()
60 masm.Tbz(x3, 2, &target); in main()
61 masm.Bind(&target); in main()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/egl/android/
H A DDisplayAndroid.cpp30 EGLenum target, in validateImageClientBuffer()
34 switch (target) in validateImageClientBuffer()
40 return DisplayEGL::validateImageClientBuffer(context, target, clientBuffer, attribs); in validateImageClientBuffer()
46 EGLenum target, in createExternalImageSibling()
50 switch (target) in createExternalImageSibling()
56 return DisplayEGL::createExternalImageSibling(context, target, buffer, attribs); in createExternalImageSibling()
29 validateImageClientBuffer(const gl::Context *context, EGLenum target, EGLClientBuffer clientBuffer, const egl::AttributeMap &attribs) const validateImageClientBuffer() argument
44 createExternalImageSibling( const gl::Context *context, EGLenum target, EGLClientBuffer buffer, const egl::AttributeMap &attribs) createExternalImageSibling() argument
/third_party/mesa3d/src/gallium/drivers/virgl/
H A Dvirgl_resource.c70 vs->base.is_format_supported(&vs->base, res->b.format, res->b.target, in virgl_can_readback_from_rendertarget()
88 (res->b.target != PIPE_BUFFER); in virgl_can_use_staging()
191 if (res->b.target == PIPE_BUFFER && in virgl_resource_transfer_prepare()
322 if (pres->target == PIPE_TEXTURE_CUBE || in virgl_transfer_map_size()
323 pres->target == PIPE_TEXTURE_CUBE_ARRAY || in virgl_transfer_map_size()
324 pres->target == PIPE_TEXTURE_3D || in virgl_transfer_map_size()
325 pres->target == PIPE_TEXTURE_2D_ARRAY) { in virgl_transfer_map_size()
327 } else if (pres->target == PIPE_TEXTURE_1D_ARRAY) { in virgl_transfer_map_size()
369 align_offset = vres->b.target == PIPE_BUFFER ? in virgl_staging_map()
414 assert(vtransfer->base.resource->target ! in virgl_staging_read_map()
[all...]
/third_party/gn/src/gn/
H A Dtarget_generator.cc36 TargetGenerator::TargetGenerator(Target* target, in TargetGenerator() argument
40 : target_(target), in TargetGenerator()
48 // All target types use these. in Run()
86 "Otherwise I'm not sure what to call this target."); in GenerateTarget()
90 // The location of the target is the directory name with no slash at the end. in GenerateTarget()
97 g_scheduler->Log("Defining target", label.GetUserVisibleName(true)); in GenerateTarget()
99 std::unique_ptr<Target> target = std::make_unique<Target>( in GenerateTarget() local
101 target->set_defined_from(function_call); in GenerateTarget()
105 BundleDataTargetGenerator generator(target.get(), scope, function_call, in GenerateTarget()
109 CreateBundleTargetGenerator generator(target in GenerateTarget()
[all...]
H A Dninja_outputs_writer_unittest.cc27 // Collects Ninja outputs for each target. Used by multiple background threads.
34 void BackgroundDoWrite(TargetWriteInfo* write_info, const Target* target) { in BackgroundDoWrite() argument
36 std::string rule = NinjaTargetWriter::RunAndWriteFile(target, nullptr, in BackgroundDoWrite()
42 write_info->ninja_outputs_map.emplace(target, in BackgroundDoWrite()
49 const Target* target = item->AsTarget(); in ItemResolvedAndGeneratedCallback() local
50 if (target) { in ItemResolvedAndGeneratedCallback()
52 [write_info, target]() { BackgroundDoWrite(write_info, target); }); in ItemResolvedAndGeneratedCallback()
H A Dqt_creator_writer.cc75 void QtCreatorWriter::CollectDeps(const Target* target) { in CollectDeps() argument
76 for (const auto& dep : target->GetDeps(Target::DEPS_ALL)) { in CollectDeps()
94 for (const Target* target : all_targets) { in DiscoverTargets()
95 if (target->label().name() == root_target_name_) { in DiscoverTargets()
96 root_target = target; in DiscoverTargets()
223 void QtCreatorWriter::HandleTarget(const Target* target) { in HandleTarget() argument
226 SourceFile build_file = builder_.loader()->BuildFileForLabel(target->label()); in HandleTarget()
228 AddToSources(target->settings()->import_manager().GetImportedFiles()); in HandleTarget()
230 AddToSources(target->sources()); in HandleTarget()
231 AddToSources(target in HandleTarget()
[all...]
/third_party/icu/icu4c/source/common/
H A Ducnv.cpp851 t=pArgs->target; in _fromUnicodeWithCallback()
946 int32_t length=(int32_t)(pArgs->target-t); in _fromUnicodeWithCallback()
994 t=pArgs->target; in _fromUnicodeWithCallback()
1125 char **target, const char *targetLimit, in ucnv_outputOverflowFromUnicode()
1132 t=*target; in ucnv_outputOverflowFromUnicode()
1152 *target=t; in ucnv_outputOverflowFromUnicode()
1160 /* copy the overflow contents to the target */ in ucnv_outputOverflowFromUnicode()
1167 /* the overflow buffer is completely copied to the target */ in ucnv_outputOverflowFromUnicode()
1169 *target=t; in ucnv_outputOverflowFromUnicode()
1178 char **target, cons in ucnv_fromUnicode()
1124 ucnv_outputOverflowFromUnicode(UConverter *cnv, char **target, const char *targetLimit, int32_t **pOffsets, UErrorCode *err) ucnv_outputOverflowFromUnicode() argument
1177 ucnv_fromUnicode(UConverter *cnv, char **target, const char *targetLimit, const UChar **source, const UChar *sourceLimit, int32_t *offsets, UBool flush, UErrorCode *err) ucnv_fromUnicode() argument
1570 ucnv_outputOverflowToUnicode(UConverter *cnv, UChar **target, const UChar *targetLimit, int32_t **pOffsets, UErrorCode *err) ucnv_outputOverflowToUnicode() argument
1623 ucnv_toUnicode(UConverter *cnv, UChar **target, const UChar *targetLimit, const char **source, const char *sourceLimit, int32_t *offsets, UBool flush, UErrorCode *err) ucnv_toUnicode() argument
2045 ucnv_convertEx(UConverter *targetCnv, UConverter *sourceCnv, char **target, const char *targetLimit, const char **source, const char *sourceLimit, UChar *pivotStart, UChar **pivotSource, UChar **pivotTarget, const UChar *pivotLimit, UBool reset, UBool flush, UErrorCode *pErrorCode) ucnv_convertEx() argument
2404 ucnv_internalConvert(UConverter *outConverter, UConverter *inConverter, char *target, int32_t targetCapacity, const char *source, int32_t sourceLength, UErrorCode *pErrorCode) ucnv_internalConvert() argument
2477 ucnv_convert(const char *toConverterName, const char *fromConverterName, char *target, int32_t targetCapacity, const char *source, int32_t sourceLength, UErrorCode *pErrorCode) ucnv_convert() argument
2526 ucnv_convertAlgorithmic(UBool convertToAlgorithmic, UConverterType algorithmicType, UConverter *cnv, char *target, int32_t targetCapacity, const char *source, int32_t sourceLength, UErrorCode *pErrorCode) ucnv_convertAlgorithmic() argument
2583 ucnv_toAlgorithmic(UConverterType algorithmicType, UConverter *cnv, char *target, int32_t targetCapacity, const char *source, int32_t sourceLength, UErrorCode *pErrorCode) ucnv_toAlgorithmic() argument
2595 ucnv_fromAlgorithmic(UConverter *cnv, UConverterType algorithmicType, char *target, int32_t targetCapacity, const char *source, int32_t sourceLength, UErrorCode *pErrorCode) ucnv_fromAlgorithmic() argument
[all...]
/third_party/node/deps/icu-small/source/common/
H A Ducnv.cpp851 t=pArgs->target; in _fromUnicodeWithCallback()
946 int32_t length=(int32_t)(pArgs->target-t); in _fromUnicodeWithCallback()
994 t=pArgs->target; in _fromUnicodeWithCallback()
1125 char **target, const char *targetLimit, in ucnv_outputOverflowFromUnicode()
1132 t=*target; in ucnv_outputOverflowFromUnicode()
1152 *target=t; in ucnv_outputOverflowFromUnicode()
1160 /* copy the overflow contents to the target */ in ucnv_outputOverflowFromUnicode()
1167 /* the overflow buffer is completely copied to the target */ in ucnv_outputOverflowFromUnicode()
1169 *target=t; in ucnv_outputOverflowFromUnicode()
1178 char **target, cons in ucnv_fromUnicode()
1124 ucnv_outputOverflowFromUnicode(UConverter *cnv, char **target, const char *targetLimit, int32_t **pOffsets, UErrorCode *err) ucnv_outputOverflowFromUnicode() argument
1177 ucnv_fromUnicode(UConverter *cnv, char **target, const char *targetLimit, const char16_t **source, const char16_t *sourceLimit, int32_t *offsets, UBool flush, UErrorCode *err) ucnv_fromUnicode() argument
1570 ucnv_outputOverflowToUnicode(UConverter *cnv, char16_t **target, const char16_t *targetLimit, int32_t **pOffsets, UErrorCode *err) ucnv_outputOverflowToUnicode() argument
1623 ucnv_toUnicode(UConverter *cnv, char16_t **target, const char16_t *targetLimit, const char **source, const char *sourceLimit, int32_t *offsets, UBool flush, UErrorCode *err) ucnv_toUnicode() argument
2045 ucnv_convertEx(UConverter *targetCnv, UConverter *sourceCnv, char **target, const char *targetLimit, const char **source, const char *sourceLimit, char16_t *pivotStart, char16_t **pivotSource, char16_t **pivotTarget, const char16_t *pivotLimit, UBool reset, UBool flush, UErrorCode *pErrorCode) ucnv_convertEx() argument
2404 ucnv_internalConvert(UConverter *outConverter, UConverter *inConverter, char *target, int32_t targetCapacity, const char *source, int32_t sourceLength, UErrorCode *pErrorCode) ucnv_internalConvert() argument
2477 ucnv_convert(const char *toConverterName, const char *fromConverterName, char *target, int32_t targetCapacity, const char *source, int32_t sourceLength, UErrorCode *pErrorCode) ucnv_convert() argument
2526 ucnv_convertAlgorithmic(UBool convertToAlgorithmic, UConverterType algorithmicType, UConverter *cnv, char *target, int32_t targetCapacity, const char *source, int32_t sourceLength, UErrorCode *pErrorCode) ucnv_convertAlgorithmic() argument
2583 ucnv_toAlgorithmic(UConverterType algorithmicType, UConverter *cnv, char *target, int32_t targetCapacity, const char *source, int32_t sourceLength, UErrorCode *pErrorCode) ucnv_toAlgorithmic() argument
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A Ducnv.cpp844 t=pArgs->target; in _fromUnicodeWithCallback()
939 int32_t length=(int32_t)(pArgs->target-t); in _fromUnicodeWithCallback()
987 t=pArgs->target; in _fromUnicodeWithCallback()
1118 char **target, const char *targetLimit, in ucnv_outputOverflowFromUnicode()
1125 t=*target; in ucnv_outputOverflowFromUnicode()
1145 *target=t; in ucnv_outputOverflowFromUnicode()
1153 /* copy the overflow contents to the target */ in ucnv_outputOverflowFromUnicode()
1160 /* the overflow buffer is completely copied to the target */ in ucnv_outputOverflowFromUnicode()
1162 *target=t; in ucnv_outputOverflowFromUnicode()
1171 char **target, cons in ucnv_fromUnicode()
1117 ucnv_outputOverflowFromUnicode(UConverter *cnv, char **target, const char *targetLimit, int32_t **pOffsets, UErrorCode *err) ucnv_outputOverflowFromUnicode() argument
1170 ucnv_fromUnicode(UConverter *cnv, char **target, const char *targetLimit, const UChar **source, const UChar *sourceLimit, int32_t *offsets, UBool flush, UErrorCode *err) ucnv_fromUnicode() argument
1563 ucnv_outputOverflowToUnicode(UConverter *cnv, UChar **target, const UChar *targetLimit, int32_t **pOffsets, UErrorCode *err) ucnv_outputOverflowToUnicode() argument
1616 ucnv_toUnicode(UConverter *cnv, UChar **target, const UChar *targetLimit, const char **source, const char *sourceLimit, int32_t *offsets, UBool flush, UErrorCode *err) ucnv_toUnicode() argument
2038 ucnv_convertEx(UConverter *targetCnv, UConverter *sourceCnv, char **target, const char *targetLimit, const char **source, const char *sourceLimit, UChar *pivotStart, UChar **pivotSource, UChar **pivotTarget, const UChar *pivotLimit, UBool reset, UBool flush, UErrorCode *pErrorCode) ucnv_convertEx() argument
2397 ucnv_internalConvert(UConverter *outConverter, UConverter *inConverter, char *target, int32_t targetCapacity, const char *source, int32_t sourceLength, UErrorCode *pErrorCode) ucnv_internalConvert() argument
2470 ucnv_convert(const char *toConverterName, const char *fromConverterName, char *target, int32_t targetCapacity, const char *source, int32_t sourceLength, UErrorCode *pErrorCode) ucnv_convert() argument
2519 ucnv_convertAlgorithmic(UBool convertToAlgorithmic, UConverterType algorithmicType, UConverter *cnv, char *target, int32_t targetCapacity, const char *source, int32_t sourceLength, UErrorCode *pErrorCode) ucnv_convertAlgorithmic() argument
2576 ucnv_toAlgorithmic(UConverterType algorithmicType, UConverter *cnv, char *target, int32_t targetCapacity, const char *source, int32_t sourceLength, UErrorCode *pErrorCode) ucnv_toAlgorithmic() argument
2588 ucnv_fromAlgorithmic(UConverter *cnv, UConverterType algorithmicType, char *target, int32_t targetCapacity, const char *source, int32_t sourceLength, UErrorCode *pErrorCode) ucnv_fromAlgorithmic() argument
[all...]
/third_party/skia/include/gpu/gl/
H A DGrGLFunctions.h23 using GrGLBeginQueryFn = GrGLvoid GR_GL_FUNCTION_TYPE(GrGLenum target, GrGLuint id);
25 using GrGLBindBufferFn = GrGLvoid GR_GL_FUNCTION_TYPE(GrGLenum target, GrGLuint buffer);
26 using GrGLBindFramebufferFn = GrGLvoid GR_GL_FUNCTION_TYPE(GrGLenum target, GrGLuint framebuffer);
27 using GrGLBindRenderbufferFn = GrGLvoid GR_GL_FUNCTION_TYPE(GrGLenum target, GrGLuint renderbuffer);
28 using GrGLBindTextureFn = GrGLvoid GR_GL_FUNCTION_TYPE(GrGLenum target, GrGLuint texture);
38 using GrGLBufferDataFn = GrGLvoid GR_GL_FUNCTION_TYPE(GrGLenum target, GrGLsizeiptr size, const GrGLvoid* data, GrGLenum usage);
39 using GrGLBufferSubDataFn = GrGLvoid GR_GL_FUNCTION_TYPE(GrGLenum target, GrGLintptr offset, GrGLsizeiptr size, const GrGLvoid* data);
40 using GrGLCheckFramebufferStatusFn = GrGLenum GR_GL_FUNCTION_TYPE(GrGLenum target);
48 using GrGLCompressedTexImage2DFn = GrGLvoid GR_GL_FUNCTION_TYPE(GrGLenum target, GrGLint level, GrGLenum internalformat, GrGLsizei width, GrGLsizei height, GrGLint border, GrGLsizei imageSize, const GrGLvoid* data);
49 using GrGLCompressedTexSubImage2DFn = GrGLvoid GR_GL_FUNCTION_TYPE(GrGLenum target, GrGLin
[all...]
/third_party/vk-gl-cts/external/vulkan-docs/src/config/
H A DmakeSubmit.py33 # Make a single submission target. Several are needed per document.
39 # target - default 'html'
40 def makeTarget(outDir, extensions, submitFileName, title, target):
49 target)
57 def makeSubmit(outDir, submitName, required, extradepend, apideps, target='html'):
93 target=target)
99 target=target)
/third_party/typescript/tests/baselines/reference/
H A DdecoratorMetadata.js32 var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
33 var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
34 if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
35 else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
36 return c > 3 && r && Object.defineProperty(target, key, r), r;
H A DdecoratorMetadataWithTypeOnlyImport2.js33 var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
34 var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
35 if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
36 else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
37 return c > 3 && r && Object.defineProperty(target, key, r), r;
/third_party/icu/icu4c/source/i18n/
H A Dtridpars.cpp59 target = t; in Specs()
542 * @return an array of 4 strings: source, target, variant, and
545 * isSourcePresent will be non-NULL. The target may be empty if the
550 UnicodeString& target, in IDtoSTV()
554 target.truncate(0); in IDtoSTV()
566 id.extractBetween(0, var, target); in IDtoSTV()
574 id.extractBetween(++sep, var, target); in IDtoSTV()
583 id.extractBetween(sep, id.length(), target); in IDtoSTV()
592 * Given source, target, and variant strings, concatenate them into a
597 const UnicodeString& target, in STVtoID()
548 IDtoSTV(const UnicodeString& id, UnicodeString& source, UnicodeString& target, UnicodeString& variant, UBool& isSourcePresent) IDtoSTV() argument
596 STVtoID(const UnicodeString& source, const UnicodeString& target, const UnicodeString& variant, UnicodeString& id) STVtoID() argument
646 registerSpecialInverse(const UnicodeString& target, const UnicodeString& inverseTarget, UBool bidirectional, UErrorCode &status) registerSpecialInverse() argument
706 UnicodeString target; parseFilterID() local
[all...]
/third_party/node/deps/icu-small/source/i18n/
H A Dtridpars.cpp59 target = t; in Specs()
542 * @return an array of 4 strings: source, target, variant, and
545 * isSourcePresent will be non-nullptr. The target may be empty if the
550 UnicodeString& target, in IDtoSTV()
554 target.truncate(0); in IDtoSTV()
566 id.extractBetween(0, var, target); in IDtoSTV()
574 id.extractBetween(++sep, var, target); in IDtoSTV()
583 id.extractBetween(sep, id.length(), target); in IDtoSTV()
592 * Given source, target, and variant strings, concatenate them into a
597 const UnicodeString& target, in STVtoID()
548 IDtoSTV(const UnicodeString& id, UnicodeString& source, UnicodeString& target, UnicodeString& variant, UBool& isSourcePresent) IDtoSTV() argument
596 STVtoID(const UnicodeString& source, const UnicodeString& target, const UnicodeString& variant, UnicodeString& id) STVtoID() argument
646 registerSpecialInverse(const UnicodeString& target, const UnicodeString& inverseTarget, UBool bidirectional, UErrorCode &status) registerSpecialInverse() argument
706 UnicodeString target; parseFilterID() local
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/
H A Dtridpars.cpp59 target = t; in Specs()
545 * @return an array of 4 strings: source, target, variant, and
548 * isSourcePresent will be non-NULL. The target may be empty if the
553 UnicodeString& target, in IDtoSTV()
557 target.truncate(0); in IDtoSTV()
569 id.extractBetween(0, var, target); in IDtoSTV()
577 id.extractBetween(++sep, var, target); in IDtoSTV()
586 id.extractBetween(sep, id.length(), target); in IDtoSTV()
595 * Given source, target, and variant strings, concatenate them into a
600 const UnicodeString& target, in STVtoID()
551 IDtoSTV(const UnicodeString& id, UnicodeString& source, UnicodeString& target, UnicodeString& variant, UBool& isSourcePresent) IDtoSTV() argument
599 STVtoID(const UnicodeString& source, const UnicodeString& target, const UnicodeString& variant, UnicodeString& id) STVtoID() argument
649 registerSpecialInverse(const UnicodeString& target, const UnicodeString& inverseTarget, UBool bidirectional, UErrorCode &status) registerSpecialInverse() argument
709 UnicodeString target; parseFilterID() local
[all...]
/third_party/ninja/src/
H A Dclean.cc150 void Cleaner::DoCleanTarget(Node* target) { in DoCleanTarget() argument
151 if (Edge* e = target->in_edge()) { in DoCleanTarget()
154 Remove(target->path()); in DoCleanTarget()
167 // mark this target to be cleaned already in DoCleanTarget()
168 cleaned_.insert(target); in DoCleanTarget()
171 int Cleaner::CleanTarget(Node* target) { in CleanTarget() argument
172 assert(target); in CleanTarget()
177 DoCleanTarget(target); in CleanTarget()
182 int Cleaner::CleanTarget(const char* target) { in CleanTarget() argument
183 assert(target); in CleanTarget()
209 Node* target = state_->LookupNode(target_name); CleanTargets() local
[all...]
/third_party/node/deps/npm/node_modules/graceful-fs/
H A Dpolyfills.js251 return function (target, mode, cb) {
252 return orig.call(fs, target, mode, function (er) {
261 return function (target, mode) {
263 return orig.call(fs, target, mode)
273 return function (target, uid, gid, cb) {
274 return orig.call(fs, target, uid, gid, function (er) {
283 return function (target, uid, gid) {
285 return orig.call(fs, target, uid, gid)
296 return function (target, options, cb) {
308 return options ? orig.call(fs, target, option
[all...]
/third_party/node/deps/v8/src/codegen/ia32/
H A Dassembler-ia32-inl.h95 void RelocInfo::set_target_object(Heap* heap, HeapObject target, in set_target_object() argument
100 WriteUnalignedValue(pc_, target.ptr()); in set_target_object()
106 WriteBarrierForCode(host(), this, target); in set_target_object() local
116 Address target, ICacheFlushMode icache_flush_mode) { in set_target_external_reference()
118 WriteUnalignedValue(pc_, target); in set_target_external_reference()
139 void RelocInfo::set_target_runtime_entry(Address target, in set_target_runtime_entry() argument
143 if (target_address() != target) { in set_target_runtime_entry()
144 set_target_address(target, write_barrier_mode, icache_flush_mode); in set_target_runtime_entry()
235 Address target, in set_target_address_at()
237 WriteUnalignedValue(pc, target in set_target_address_at()
115 set_target_external_reference( Address target, ICacheFlushMode icache_flush_mode) set_target_external_reference() argument
234 set_target_address_at(Address pc, Address constant_pool, Address target, ICacheFlushMode icache_flush_mode) set_target_address_at() argument
243 deserialization_set_special_target_at( Address instruction_payload, Code code, Address target) deserialization_set_special_target_at() argument
280 deserialization_set_target_internal_reference_at( Address pc, Address target, RelocInfo::Mode mode) deserialization_set_target_internal_reference_at() argument
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A DvalidationES.h42 bool ValidTexture3DTarget(const Context *context, TextureType target);
43 bool ValidTextureExternalTarget(const Context *context, TextureType target);
44 bool ValidTextureExternalTarget(const Context *context, TextureTarget target);
45 bool ValidTexture2DDestinationTarget(const Context *context, TextureTarget target);
46 bool ValidTexture3DDestinationTarget(const Context *context, TextureTarget target);
48 bool ValidFramebufferTarget(const Context *context, GLenum target);
52 TextureType target,
125 GLenum target,
129 GLenum target,
133 GLenum target,
[all...]

Completed in 17 milliseconds

1...<<11121314151617181920>>...163