Searched defs:target (Results 51 - 75 of 2412) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/extensions/
H A Dwebstore_installer_unittest.cc20 // Returns true if |target| is found in |source|.
21 bool Contains(const std::string& source, const std::string& target) { argument
22 return source.find(target) != std::string::npos;
/external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
H A Dbookmark_tree_browser_cell.h13 // browser view. This cell customization adds target and action support
26 @property(nonatomic, assign) id target; variable
/external/chromium_org/content/child/
H A Dtouch_fling_gesture_curve_unittest.cc50 MockGestureCurveTarget target; local
57 EXPECT_TRUE(curve->apply(0, &target));
58 EXPECT_TRUE(curve->apply(0.25, &target));
59 EXPECT_NEAR(target.current_velocity().width, 1878, 1);
60 EXPECT_EQ(target.current_velocity().height, 0);
61 EXPECT_TRUE(curve->apply(0.45f, &target)); // Use non-uniform tick spacing.
62 EXPECT_TRUE(curve->apply(1, &target));
63 EXPECT_FALSE(curve->apply(1.5, &target));
64 EXPECT_NEAR(target.cumulative_delta().width, 1193, 1);
65 EXPECT_EQ(target
[all...]
/external/chromium_org/content/common/
H A Dset_process_title.cc54 base::FilePath target; local
56 if (base::ReadSymbolicLink(self_exe, &target)) {
58 title = target.value();
60 // symlink target. Remove it, since this is not really part of our name.
/external/chromium_org/content/test/
H A Dweb_gesture_curve_mock.cc21 blink::WebGestureCurveTarget* target) {
29 target->scrollBy(increment, velocity);
20 apply(double time, blink::WebGestureCurveTarget* target) argument
/external/chromium_org/courgette/
H A Dsimple_delta.cc30 SinkStream* target) {
31 return BSDiffStatusToStatus(ApplyBinaryPatch(old, delta, target));
34 Status GenerateSimpleDelta(SourceStream* old, SourceStream* target, argument
37 << " " << target->Remaining();
38 return BSDiffStatusToStatus(CreateBinaryPatch(old, target, delta));
29 ApplySimpleDelta(SourceStream* old, SourceStream* delta, SinkStream* target) argument
/external/chromium_org/gpu/command_buffer/client/
H A Dgles2_cmd_helper.h28 void CreateAndConsumeTextureCHROMIUMImmediate(GLenum target, argument
37 c->Init(target, client_id, _mailbox);
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DWindowEventContext.h47 EventTarget* target() const;
60 inline EventTarget* WindowEventContext::target() const function in class:blink::WindowEventContext
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGLengthListTearOff.h44 static PassRefPtr<SVGLengthListTearOff> create(PassRefPtr<SVGLengthList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) argument
46 return adoptRef(new SVGLengthListTearOff(target, contextElement, propertyIsAnimVal, attributeName));
50 SVGLengthListTearOff(PassRefPtr<SVGLengthList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) argument
51 : SVGListPropertyTearOffHelper<SVGLengthListTearOff, SVGLengthList>(target, contextElement, propertyIsAnimVal, attributeName)
H A DSVGNumberListTearOff.h44 static PassRefPtr<SVGNumberListTearOff> create(PassRefPtr<SVGNumberList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) argument
46 return adoptRef(new SVGNumberListTearOff(target, contextElement, propertyIsAnimVal, attributeName));
50 SVGNumberListTearOff(PassRefPtr<SVGNumberList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) argument
51 : SVGListPropertyTearOffHelper<SVGNumberListTearOff, SVGNumberList>(target, contextElement, propertyIsAnimVal, attributeName) { }
H A DSVGNumberTearOff.cpp40 SVGNumberTearOff::SVGNumberTearOff(PassRefPtr<SVGNumber> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName) argument
41 : SVGPropertyTearOff<SVGNumber>(target, contextElement, propertyIsAnimVal, attributeName)
52 target()->setValue(f);
H A DSVGNumberTearOff.h43 static PassRefPtr<SVGNumberTearOff> create(PassRefPtr<SVGNumber> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) argument
45 return adoptRef(new SVGNumberTearOff(target, contextElement, propertyIsAnimVal, attributeName));
49 float value() { return target()->value(); }
H A DSVGPointListTearOff.h44 static PassRefPtr<SVGPointListTearOff> create(PassRefPtr<SVGPointList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) argument
46 return adoptRef(new SVGPointListTearOff(target, contextElement, propertyIsAnimVal, attributeName));
50 SVGPointListTearOff(PassRefPtr<SVGPointList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) argument
51 : SVGListPropertyTearOffHelper<SVGPointListTearOff, SVGPointList>(target, contextElement, propertyIsAnimVal, attributeName) { }
H A DSVGPointTearOff.h45 static PassRefPtr<SVGPointTearOff> create(PassRefPtr<SVGPoint> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) argument
47 return adoptRef(new SVGPointTearOff(target, contextElement, propertyIsAnimVal, attributeName));
52 float x() { return target()->x(); }
53 float y() { return target()->y(); }
H A DSVGTransformListTearOff.h45 static PassRefPtr<SVGTransformListTearOff> create(PassRefPtr<SVGTransformList> target, SVGElement* contextElement, PropertyIsAnimValType propertyIsAnimVal, const QualifiedName& attributeName = QualifiedName::null()) argument
47 return adoptRef(new SVGTransformListTearOff(target, contextElement, propertyIsAnimVal, attributeName));
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_init.h44 LLVMTargetDataRef target; member in struct:gallivm_state
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dtexobj.h50 _mesa_new_texture_object( struct gl_context *ctx, GLuint name, GLenum target );
54 GLuint name, GLenum target );
82 * Return number of faces for a texture target. This will be 6 for
86 _mesa_num_tex_faces(GLenum target) argument
88 return target == GL_TEXTURE_CUBE_MAP ? 6 : 1;
151 _mesa_BindTexture( GLenum target, GLuint texture );
/external/chromium_org/third_party/sfntly/cpp/src/test/
H A Dverify_loca.cc56 bool VerifyLOCA(Table* original, Table* target) { argument
58 EXPECT_TRUE(VerifyLOCA(target));
H A Dverify_name.cc62 bool VerifyNAME(Table* original, Table* target) { argument
64 EXPECT_TRUE(VerifyNAME(target));
/external/chromium_org/third_party/skia/src/gpu/
H A DGrTBSearch.h14 int GrTBSearch(const ELEM array[], int count, KEY target) { argument
25 if (LT(array[index], target)) {
33 if (EQ(array[high], target)) {
38 if (LT(array[high], target)) {
H A DGrTest.cpp14 void GrTestTarget::init(GrContext* ctx, GrDrawTarget* target) { argument
18 fDrawTarget.reset(SkRef(target));
20 SkNEW_IN_TLAZY(&fASR, GrDrawTarget::AutoStateRestore, (target, GrDrawTarget::kReset_ASRInit));
21 SkNEW_IN_TLAZY(&fACR, GrDrawTarget::AutoClipRestore, (target));
22 SkNEW_IN_TLAZY(&fAGP, GrDrawTarget::AutoGeometryPush, (target));
H A DGrTest.h24 GrDrawTarget* target() { return fDrawTarget.get(); } function in class:GrTestTarget
/external/chromium_org/tools/gn/
H A Dconfig_values_extractors.cc29 const Target* target,
33 RecursiveTargetConfigToStream(target, getter,
28 RecursiveTargetConfigStringsToStream( const Target* target, const std::vector<std::string>& (ConfigValues::* getter)() const, const EscapeOptions& escape_options, std::ostream& out) argument
H A Dcopy_target_generator.cc13 CopyTargetGenerator::CopyTargetGenerator(Target* target, argument
17 : TargetGenerator(target, scope, function_call, err) {
H A Dgroup_target_generator.cc10 Target* target,
14 : TargetGenerator(target, scope, function_call, err) {
22 // Groups only have the default types filled in by the target generator
9 GroupTargetGenerator( Target* target, Scope* scope, const FunctionCallNode* function_call, Err* err) argument

Completed in 664 milliseconds

1234567891011>>