Searched defs:target (Results 151 - 175 of 2412) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLBuffer.cpp65 void WebGLBuffer::setTarget(GLenum target) argument
67 // In WebGL, a buffer is bound to one target in its lifetime
70 if (target == GL_ARRAY_BUFFER || target == GL_ELEMENT_ARRAY_BUFFER)
71 m_target = target;
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGAltGlyphElement.cpp73 AtomicString target; local
74 Element* element = targetElementFromIRIString(getAttribute(XLinkNames::hrefAttr), treeScope(), &target);
79 glyphNames.append(target);
H A DSVGMatrixTearOff.h54 static PassRefPtr<SVGMatrixTearOff> create(SVGTransformTearOff* target) argument
56 return adoptRef(new SVGMatrixTearOff(target));
H A DSVGPointTearOff.cpp41 SVGPointTearOff::SVGPointTearOff(PassRefPtr<SVGPoint> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName) argument
42 : SVGPropertyTearOff<SVGPoint>(target, contextElement, propertyIsAnimVal, attributeName)
53 target()->setX(f);
64 target()->setY(f);
70 FloatPoint point = target()->matrixTransform(matrix->value());
H A DSVGPreserveAspectRatioTearOff.cpp51 target()->setAlign(static_cast<SVGPreserveAspectRatio::SVGPreserveAspectRatioType>(align));
65 target()->setMeetOrSlice(static_cast<SVGPreserveAspectRatio::SVGMeetOrSliceType>(meetOrSlice));
68 SVGPreserveAspectRatioTearOff::SVGPreserveAspectRatioTearOff(PassRefPtr<SVGPreserveAspectRatio> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName) argument
69 : SVGPropertyTearOff<SVGPreserveAspectRatio>(target, contextElement, propertyIsAnimVal, attributeName)
H A DSVGRectTearOff.cpp40 SVGRectTearOff::SVGRectTearOff(PassRefPtr<SVGRect> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName) argument
41 : SVGPropertyTearOff<SVGRect>(target, contextElement, propertyIsAnimVal, attributeName)
52 target()->setX(f);
63 target()->setY(f);
74 target()->setWidth(f);
85 target()->setHeight(f);
H A DSVGRectTearOff.h43 static PassRefPtr<SVGRectTearOff> create(PassRefPtr<SVGRect> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) argument
45 return adoptRef(new SVGRectTearOff(target, contextElement, propertyIsAnimVal, attributeName));
52 float x() { return target()->x(); }
53 float y() { return target()->y(); }
54 float width() { return target()->width(); }
55 float height() { return target()->height(); }
H A DSVGTransformListTearOff.cpp40 SVGTransformListTearOff::SVGTransformListTearOff(PassRefPtr<SVGTransformList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) argument
41 : SVGListPropertyTearOffHelper<SVGTransformListTearOff, SVGTransformList>(target, contextElement, propertyIsAnimVal, attributeName)
61 return createItemTearOff(target()->consolidate());
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebActiveGestureAnimation.cpp34 PassOwnPtr<WebActiveGestureAnimation> WebActiveGestureAnimation::createAtAnimationStart(PassOwnPtr<WebGestureCurve> curve, WebGestureCurveTarget* target) argument
36 return adoptPtr(new WebActiveGestureAnimation(curve, target, 0, true));
39 PassOwnPtr<WebActiveGestureAnimation> WebActiveGestureAnimation::createWithTimeOffset(PassOwnPtr<WebGestureCurve> curve, WebGestureCurveTarget* target, double startTime) argument
41 return adoptPtr(new WebActiveGestureAnimation(curve, target, startTime, false));
48 WebActiveGestureAnimation::WebActiveGestureAnimation(PassOwnPtr<WebGestureCurve> curve, WebGestureCurveTarget* target, double startTime, bool waitingForFirstTick) argument
52 , m_target(target)
/external/chromium_org/third_party/WebKit/Source/web/
H A DRemoteFrameClient.cpp60 SecurityOrigin* target, MessageEvent* event, LocalFrame* sourceFrame) const
63 m_webFrame->client()->postMessageEvent(WebLocalFrameImpl::fromFrame(sourceFrame), m_webFrame, WebSecurityOrigin(target), WebDOMMessageEvent(event));
59 willCheckAndDispatchMessageEvent( SecurityOrigin* target, MessageEvent* event, LocalFrame* sourceFrame) const argument
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DImageIndex.cpp35 ImageIndex ImageIndex::MakeCube(GLenum target, GLint mipIndex) argument
37 ASSERT(gl::IsCubemapTextureTarget(target));
38 return ImageIndex(target, mipIndex, TextureCubeMap::targetToLayerIndex(target));
/external/chromium_org/third_party/icu/source/i18n/
H A Dtridpars.h31 * A basic ID, which contains source, target, and variant, but no
56 * 'source' and 'target' will always be non-null. The 'variant'
69 UnicodeString target; // not null member in class:TransliteratorIDParser::Specs
221 * @param target the given target.
226 * @return an array of 4 strings: source, target, variant, and
229 * isSourcePresent will be non-null. The target may be empty if the
234 UnicodeString& target,
239 * Given source, target, and variant strings, concatenate them into a
244 const UnicodeString& target,
[all...]
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dccolltst.c86 void reportCResult( const UChar source[], const UChar target[], argument
101 log_err("Compare(%s , %s) returned: %s expected: %s\n", aescstrdup(source,-1), aescstrdup(target,-1),
107 log_err("incCompare(%s , %s) returned: %s expected: %s\n", aescstrdup(source,-1), aescstrdup(target,-1),
113 log_err("KeyCompare(%s , %s) returned: %s expected: %s\n", aescstrdup(source,-1), aescstrdup(target,-1),
119 log_err("difference between sortkey and compare result for (%s , %s) Keys: %s compare %s\n", aescstrdup(source,-1), aescstrdup(target,-1),
H A Deurocreg.c143 char target[20]; local
150 target,
151 sizeof(target),
163 target,
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Duser_priv_test.cc35 void CheckUserPrivateData(void *user_priv, int *target) { argument
37 EXPECT_EQ(reinterpret_cast<void *>(target), user_priv) <<
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
H A Dsi_state_streamout.c234 struct pipe_stream_output_target *target)
237 struct si_so_target *t = (struct r600_so_target*)target;
233 si_so_target_destroy(struct pipe_context *ctx, struct pipe_stream_output_target *target) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_state_so.c46 t->target.context = pipe;
47 t->target.reference.count = 1;
48 pipe_resource_reference(&t->target.buffer, buffer);
49 t->target.buffer_offset = buffer_offset;
50 t->target.buffer_size = buffer_size;
51 return &t->target;
56 struct pipe_stream_output_target *target)
58 pipe_resource_reference(&target->buffer, NULL);
59 FREE(target);
55 softpipe_so_target_destroy(struct pipe_context *pipe, struct pipe_stream_output_target *target) argument
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
H A Dformat.cpp150 pipe_texture_target target = translate_target(type); local
160 dev->pipe, f.second, target, 1, bindings);
/external/chromium_org/third_party/mesa/src/src/glx/
H A Dcompsize.c141 GLenum format, GLenum type, GLenum target)
146 switch (target) {
140 __glImageSize(GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, GLenum target) argument
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dcolortab.h39 _mesa_ColorTable( GLenum target, GLenum internalformat,
44 _mesa_ColorSubTable( GLenum target, GLsizei start,
54 _mesa_ColorTable( GLenum target, GLenum internalformat, argument
62 _mesa_ColorSubTable( GLenum target, GLsizei start, argument
H A Dteximage.h44 _mesa_is_cube_face(GLenum target) argument
46 return (target >= GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB &&
47 target <= GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB);
67 _mesa_is_proxy_texture(GLenum target);
70 _mesa_get_proxy_target(GLenum target);
92 GLenum target, GLint level,
108 GLenum target);
111 _mesa_get_current_tex_object(struct gl_context *ctx, GLenum target);
117 GLenum target, GLint level);
122 GLenum target, GLin
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Darbprogparse.c67 _mesa_parse_arb_fragment_program(struct gl_context* ctx, GLenum target, argument
75 ASSERT(target == GL_FRAGMENT_PROGRAM_ARB);
81 if (!_mesa_parse_arb_program(ctx, target, (const GLubyte*) str, len,
163 _mesa_parse_arb_vertex_program(struct gl_context *ctx, GLenum target, argument
170 ASSERT(target == GL_VERTEX_PROGRAM_ARB);
176 if (!_mesa_parse_arb_program(ctx, target, (const GLubyte*) str, len,
/external/chromium_org/third_party/sfntly/cpp/src/test/
H A Dtest_utils.cc42 char* target = new char[ucnv_getMaxCharSize(encoder) * 2]; local
50 target_end = target;
51 ucnv_fromUnicode(encoder, &target_end, target + 4,
58 delete[] target;
62 for (int32_t position = 0; position < target_end - target; ++position) {
64 enc_char |= (target[position] & 0xff);
67 delete[] target;
H A Dverify_glyf.cc53 bool VerifyGLYF(Table* original, Table* target) { argument
55 EXPECT_TRUE(VerifyGLYF(target));
H A Dverify_hhea.cc57 bool VerifyHHEA(Table* original, Table* target) { argument
59 EXPECT_TRUE(VerifyHHEA(target));

Completed in 2404 milliseconds

1234567891011>>