OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ninepatch
(Results
1 - 19
of
19
) sorted by null
/prebuilts/misc/common/ninepatch/
Android.mk
6
ninepatch
-prebuilt$(COMMON_JAVA_PACKAGE_SUFFIX)
ninepatch-prebuilt.jar
/sdk/ninepatch/
Android.mk
21
LOCAL_MODULE :=
ninepatch
/frameworks/base/tools/layoutlib/bridge/
Android.mk
30
ninepatch
-prebuilt
/sdk/ninepatch/tests/
Android.mk
23
LOCAL_MODULE :=
ninepatch
-tests
27
# bundle
ninepatch
inside the test jar for continuous tests
28
LOCAL_STATIC_JAVA_LIBRARIES :=
ninepatch
/sdk/ninepatch/tests/src/com/android/ninepatch/
NinePatchTest.java
17
package com.android.
ninepatch
;
25
private
NinePatch
mPatch;
31
mPatch =
NinePatch
.load(stream, true /* is9Patch*/, false /* convert */);
/sdk/build/
product_sdk.mk
53
ninepatch
-tests \
tools.atree
190
framework/
ninepatch
-tests.jar tests/libtests/
ninepatch
-tests.jar
/external/webkit/Source/WebKit/android/
RenderSkinNinePatch.cpp
41
bool RenderSkinNinePatch::decodeAsset(AssetManager* am, const char* filename,
NinePatch
*
ninepatch
) {
69
if (!decoder->decode(&stream, &
ninepatch
->m_bitmap, prefConfig, mode, true)) {
80
void** data = &
ninepatch
->m_serializedPatchData;
87
const
NinePatch
& patch) {
90
// if the
NinePatch
is bigger than the destination on a given axis the default
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
BitmapFactory_Delegate.java
21
import com.android.
ninepatch
.NinePatchChunk;
64
final boolean isNinePatch = np != null &&
NinePatch
.isNinePatchChunk(np);
111
com.android.
ninepatch
.
NinePatch
ninePatch
= com.android.
ninepatch
.
NinePatch
.load(
115
bm = Bitmap_Delegate.createBitmap(
ninePatch
.getImage(), true /*isMutable*/,
117
NinePatchChunk chunk =
ninePatch
.getChunk();
NinePatch_Delegate.java
23
import com.android.
ninepatch
.NinePatchChunk;
40
* Delegate implementing the native methods of android.graphics.
NinePatch
42
* Through the layoutlib_create tool, the original native methods of
NinePatch
have been replaced
55
* for {@link
NinePatch
} and {@link NinePatchDrawable} only reference to the byte[] data, and
/sdk/ninepatch/src/com/android/ninepatch/
GraphicsUtilities.java
17
package com.android.
ninepatch
;
NinePatch.java
17
package com.android.
ninepatch
;
31
* This is a full representation of a
NinePatch
with both a {@link BufferedImage} and a
39
public class
NinePatch
{
62
* @return a {@link
NinePatch
} or <code>null</code>.
65
public static
NinePatch
load(URL fileUrl, boolean convert) throws IOException {
89
* @return a {@link
NinePatch
} or <code>null</code>.
92
public static
NinePatch
load(InputStream stream, boolean is9Patch, boolean convert)
115
* @return a {@link
NinePatch
} or <code>null</code>.
118
public static
NinePatch
load(BufferedImage image, boolean is9Patch, boolean convert) {
129
return new
NinePatch
(image)
[
all
...]
NinePatchChunk.java
17
package com.android.
ninepatch
;
33
* Since android.graphics.drawable.NinePatchDrawable and android.graphics.
NinePatch
both deal with
/frameworks/base/core/jni/android/graphics/
GraphicsJNI.h
56
bool isMutable, jbyteArray
ninepatch
, jintArray layoutbounds,
60
jbyteArray
ninepatch
, int density = -1);
Graphics.cpp
348
bool isMutable, jbyteArray
ninepatch
, jintArray layoutbounds,
355
buffer, isMutable,
ninepatch
, layoutbounds, density);
361
jbyteArray
ninepatch
, int density)
363
return createBitmap(env, bitmap, NULL, isMutable,
ninepatch
, NULL, density);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
ResourceHelper.java
26
import com.android.
ninepatch
.
NinePatch
;
27
import com.android.
ninepatch
.NinePatchChunk;
182
if (lowerCaseValue.endsWith(
NinePatch
.EXTENSION_9PATCH)) {
273
NinePatch
ninePatch
=
NinePatch
.load(inputStream, true /*is9Patch*/,
275
if (
ninePatch
!= null) {
277
chunk =
ninePatch
.getChunk();
284
bitmap = Bitmap_Delegate.createBitmap(
ninePatch
.getImage()
[
all
...]
/frameworks/base/tools/layoutlib/bridge/src/android/content/res/
BridgeResources.java
28
import com.android.
ninepatch
.
NinePatch
;
618
if (path.toLowerCase().endsWith(
NinePatch
.EXTENSION_9PATCH)) {
650
if (path.toLowerCase().endsWith(
NinePatch
.EXTENSION_9PATCH)) {
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
Bridge.java
33
import com.android.
ninepatch
.NinePatchChunk;
604
* @param
ninePatch
the 9 patch object
607
public static void setCached9Patch(String value, NinePatchChunk
ninePatch
, Object projectKey) {
616
map.put(value, new SoftReference<NinePatchChunk>(
ninePatch
));
618
sFramework9PatchCache.put(value, new SoftReference<NinePatchChunk>(
ninePatch
));
Completed in 967 milliseconds