OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:tiling
(Results
1 - 25
of
70
) sorted by null
1
2
3
/external/chromium/chrome/browser/
ntp_background_util.cc
18
gfx::Canvas* canvas, SkBitmap* ntp_background, int
tiling
, int alignment,
36
if (
tiling
!= ThemeService::REPEAT &&
37
tiling
!= ThemeService::REPEAT_X) {
43
if (
tiling
!= ThemeService::REPEAT &&
44
tiling
!= ThemeService::REPEAT_Y) {
67
int
tiling
= ThemeService::NO_REPEAT;
local
69
&
tiling
);
76
canvas, ntp_background,
tiling
, alignment, area, tab_contents_height);
/frameworks/base/graphics/java/android/graphics/
BitmapShader.java
21
* mirrored by setting the
tiling
mode.
35
* @param tileX The
tiling
mode for x to draw the bitmap in.
36
* @param tileY The
tiling
mode for y to draw the bitmap in.
LinearGradient.java
29
@param tile The Shader
tiling
mode
51
@param tile The Shader
tiling
mode
RadialGradient.java
29
@param tile The Shader
tiling
mode
53
@param tile The Shader
tiling
mode
/external/chromium/chrome/browser/themes/
theme_service.h
55
// Strings used in
tiling
properties.
134
// Background
tiling
choices.
140
}
Tiling
;
197
// Convert a
tiling
value into a string like "no-repeat". Public
198
// so that it can be used to generate CSS values. Takes a
Tiling
.
199
static std::string TilingToString(int
tiling
);
201
// Parse
tiling
values from something like "no-repeat" into a
Tiling
value.
202
static int StringToTiling(const std::string&
tiling
);
theme_service.cc
32
// Strings used in background
tiling
repetition properties.
406
std::string ThemeService::TilingToString(int
tiling
) {
408
if (
tiling
== ThemeService::REPEAT_X)
410
if (
tiling
== ThemeService::REPEAT_Y)
412
if (
tiling
== ThemeService::REPEAT)
418
int ThemeService::StringToTiling(const std::string&
tiling
) {
419
const char* component =
tiling
.c_str();
/external/webkit/Source/WebCore/css/
CSSBorderImageValue.h
53
// Values for how to handle the scaling/stretching/
tiling
of the image slices.
/external/skia/legacy/include/effects/
SkGradientShader.h
38
@param mode The
tiling
mode
60
@param mode The
tiling
mode
85
@param mode The
tiling
mode
/external/skia/include/effects/
SkGradientShader.h
38
@param mode The
tiling
mode
60
@param mode The
tiling
mode
85
@param mode The
tiling
mode
/external/webkit/Source/WebCore/platform/graphics/gpu/
Texture.cpp
92
TilingData
tiling
(maxTextureSize, width, height, true);
93
int numTiles =
tiling
.numTiles();
107
IntRect tileBoundsWithBorder =
tiling
.tileBoundsWithBorder(i);
/external/webkit/Source/WebCore/platform/graphics/
GeneratedImage.cpp
53
// Allow the generator to provide visually-equivalent
tiling
parameters for better performance.
/hardware/qcom/display/libtilerenderer/
tilerenderer.cpp
73
//clear off all errors before
tiling
, if any
/external/webkit/Source/WebCore/platform/graphics/chromium/
ContentLayerChromium.cpp
44
// Maximum size the width or height of this layer can be before enabling
tiling
47
// When
tiling
is enabled, use tiles of this dimension squared.
/external/skia/bench/
TileBench.cpp
30
// filtering and the different
tiling
modes
/external/skia/include/core/
SkShader.h
29
* once (e.g. bitmap
tiling
or gradient) and then change its transparency
336
* @param tmx The
tiling
mode to use when sampling the bitmap in the x-direction.
337
* @param tmy The
tiling
mode to use when sampling the bitmap in the y-direction.
/external/skia/legacy/include/core/
SkShader.h
275
@param tmx The
tiling
mode to use when sampling the bitmap in the x-direction.
276
@param tmy The
tiling
mode to use when sampling the bitmap in the y-direction.
/external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_toolbar_view_unittest.mm
169
// Return the correct
tiling
/alignment information.
/external/skia/include/gpu/
GrTextureAccess.h
20
* filtering and
tiling
to perform a cache lookup. If it wasn't for this latter usage this would
/external/webkit/Source/WebCore/platform/graphics/cairo/
ContextShadowCairo.cpp
159
This function uses
tiling
to improve the performance of the shadow
218
// Size of the
tiling
side.
/external/webkit/Source/WebCore/platform/graphics/cg/
ImageCG.cpp
308
// Leopard has an optimized call for the
tiling
of image patterns, but we can only use it if the image has been decoded enough that
310
// overall image buffer needs to tile with "gaps", we can't use the optimized
tiling
call in that case.
/external/chromium/chrome/browser/resources/ntp4/
most_visited_page.js
11
* Creates a new Most Visited object for
tiling
.
tile_page.js
66
* additional
tiling
values that are calculated from TilePage constants.
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
LinearGradient_Delegate.java
103
* @param tile The Shader
tiling
mode
RadialGradient_Delegate.java
99
* @param tile The Shader
tiling
mode
/external/webkit/Source/WebKit/qt/tests/qgraphicswebview/
tst_qgraphicswebview.cpp
165
// intermediate cache (
tiling
for example).
181
// 1. Reference without
tiling
.
186
// 2. With
tiling
.
Completed in 1185 milliseconds
1
2
3