/hardware/ti/omap3/libstagefrighthw/ |
TIOMXPlugin.cpp | 69 OMX_COMPONENTTYPE **component) { 75 reinterpret_cast<OMX_HANDLETYPE *>(component), 81 OMX_COMPONENTTYPE *component) { 86 return (*mFreeHandle)(reinterpret_cast<OMX_HANDLETYPE *>(component));
|
/frameworks/base/awt/java/awt/color/ |
ICC_ColorSpace.java | 62 * CIEXYZ encoding, each component (X, Y, and Z) is encoded as a 353 * Gets the minimum normalized color component value for the specified 354 * component. 356 * @param component 357 * the component to determine the minimum value. 358 * @return the minimum normalized value of the component. 361 public float getMinValue(int component) { 362 if ((component < 0) || (component > this.getNumComponents() - 1)) { 363 // awt.169=Component index out of rang [all...] |
/external/emma/core/java12/com/vladium/jcd/lib/ |
Types.java | 515 Class component; local 519 component = arrayOf (typedescriptor.substring (1)); 522 component = Class.forName (vmNameToJavaName (typedescriptor.substring (1, typedescriptor.length() - 1))); 525 component = primitive (first); 528 Object array = Array.newInstance (component, 0); 573 String component; local 577 component = arrayOf (typedescriptor.substring (1)); 580 component = vmNameToJavaName (typedescriptor.substring (1, typedescriptor.length() - 1)); 582 component = primitive (first); 584 String array = component + " []" [all...] |
/packages/apps/Camera/src/com/android/camera/ui/ |
IndicatorBar.java | 99 GLView component = getComponent(i); local 100 component.measure( 102 width = Math.max(width, component.getMeasuredWidth()); 103 height += component.getMeasuredHeight(); 186 GLView component = getComponent(i); local 187 if (y <= component.mBounds.bottom) { 188 setSelectedItem(component, i - 1);
|
/external/webkit/WebCore/platform/posix/ |
FileSystemPOSIX.cpp | 116 String pathByAppendingComponent(const String& path, const String& component) 119 return path + component; 121 return path + "/" + component;
|
/system/core/libpixelflinger/codeflinger/ |
GGLAssembler.h | 253 explicit component_t(const pixel_t& rhs, int component) { 255 rhs.format.c[component].l, 256 rhs.format.c[component].h, 356 const pixel_t& texel, int component); 360 const pixel_t& texel, int component); 364 const pixel_t& texel, int component, int tmu); 368 const pixel_t& texel, int component); 373 void extract(integer_t& d, const pixel_t& s, int component); 374 void extract(component_t& d, const pixel_t& s, int component); 379 void downshift(pixel_t& d, int component, component_t s, const reg_t& dither) [all...] |
blending.cpp | 33 int component, 36 if (mInfo[component].fog) { 48 immed12_pre(GGL_OFFSETOF(state.fog.color[component]))); 66 int component, 69 if (!mInfo[component].blend) 72 int fs = component==GGLFormat::ALPHA ? mBlendSrcA : mBlendSrc; 73 int fd = component==GGLFormat::ALPHA ? mBlendDstA : mBlendDst; 74 if (fs==GGL_SRC_ALPHA_SATURATE && component==GGLFormat::ALPHA) 79 // that component (eg: GL_ZERO:GL_*), so the register has not been 119 // see if we need to extract 'component' from the destination (fb [all...] |
load_store.cpp | 116 AND(AL, 0, d.reg, s, imm(mask)); // component = packed & mask; 118 BIC(AL, 0, d.reg, s, imm(~mask)); // component = packed & mask; 128 MOV(AL, 0, d.reg, reg_imm(s, LSR, l)); // component = packed >> l; 139 void GGLAssembler::extract(integer_t& d, const pixel_t& s, int component) 142 s.format.c[component].h, 143 s.format.c[component].l, 147 void GGLAssembler::extract(component_t& d, const pixel_t& s, int component) 151 s.format.c[component].h, 152 s.format.c[component].l, 226 pixel_t& d, int component, component_t s, const reg_t& dither [all...] |
GGLAssembler.cpp | 217 // (or no alpha component in the texture). 454 int component, 458 comment(comments[component]); 462 const int dst_component_size = pixel.component_size(component); 466 parts, component, scratches, regs); 468 if (mInfo[component].inDest) { 471 build_blending( temp, mDstPixel, component, scratches ); 473 // downshift component and rebuild pixel... 474 downshift(pixel, component, temp, parts.dither); 482 int component, [all...] |
texturing.cpp | 57 // 0x1: color component 78 // this component exists in the destination and is not replaced 180 int component, 185 if (!mInfo[component].iterated) 190 extract(fragment, parts.iterated, component); 201 CONTEXT_LOAD(fragment.reg, generated_vars.argb[component].c); 202 CONTEXT_LOAD(dx, generated_vars.argb[component].dx); 204 CONTEXT_STORE(dx, generated_vars.argb[component].c); 206 CONTEXT_LOAD(fragment.reg, generated_vars.argb[component].c); 212 fragment.reg = parts.argb[component].reg [all...] |
/external/webkit/WebCore/platform/image-decoders/bmp/ |
BMPImageReader.h | 221 // Returns the value of the desired component (0, 1, 2, 3 == R, G, B, A) 223 inline unsigned getComponent(uint32_t pixel, int component) const 225 return ((pixel & m_bitMasks[component]) >> 226 m_bitShiftsRight[component]) << m_bitShiftsLeft[component]; 248 // Like setI(), but with the individual component values specified.
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/laf/ |
UnifiedContentBorder.java | 27 public void paintBorder(Component c, Graphics g, int x, int y, int width, int height) { 36 public Insets getBorderInsets(Component component) {
|
/sdk/draw9patch/src/com/android/draw9patch/ui/ |
ImageTransferHandler.java | 37 public boolean importData(JComponent component, Transferable transferable) { 78 public boolean canImport(JComponent component, DataFlavor[] dataFlavors) {
|
/external/webkit/WebCore/platform/wince/ |
FileSystemWince.cpp | 110 String pathByAppendingComponent(const String& path, const String& component) 112 if (component.isEmpty()) 120 && component[0] != L'\\' && component[0] != L'/') 123 buffer.append(component.characters(), component.length());
|
/dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/ |
GeneralName.java | 135 * contain exactly 4 byte component. For IP v6, as specified in 136 * RFC 1883, the address must contain exactly 16 byte component. 139 * component is doubled (to 8 and 32 bytes respectively). 227 * contain exactly 4 byte component. For IP v6, as specified in 228 * RFC 1883, the address must contain exactly 16 byte component. 231 * component is doubled (to 8 and 32 bytes respectively). 284 * contain exactly 4 byte component. For IP v6, as specified in 285 * RFC 1883, the address must contain exactly 16 byte component. 288 * component is doubled (to 8 and 32 bytes respectively). 700 // number of address component to be rea 701 int component = 0; local [all...] |
/external/opencore/codecs_v2/video/avc_h264/dec/src/ |
pred_intra.cpp | 29 int component, SubBlock_indx, temp; local 60 for (component = 0; component < 4; component++) 62 block_x = ((component & 1) << 1); 63 block_y = ((component >> 1) << 1); 109 if (component&1) 1492 int component, j; local 1628 int component, j; local 1661 int component, j; local 1688 int component, j; local [all...] |
/frameworks/base/media/libstagefright/codecs/avc/dec/src/ |
pred_intra.cpp | 28 int component, SubBlock_indx, temp; local 59 for (component = 0; component < 4; component++) 61 block_x = ((component & 1) << 1); 62 block_y = ((component >> 1) << 1); 108 if (component&1) 1491 int component, j; local 1627 int component, j; local 1660 int component, j; local 1687 int component, j; local [all...] |
/external/proguard/src/proguard/gui/ |
ClassSpecificationsPanel.java | 170 * given key, to the given component. 172 private static JComponent tip(JComponent component, String messageKey) 174 component.setToolTipText(msg(messageKey)); 176 return component; 200 public Component getListCellRendererComponent(JList list,
|
MemberSpecificationsPanel.java | 221 public Component getListCellRendererComponent(JList list, 268 * given key, to the given component. 270 private static JComponent tip(JComponent component, String messageKey) 272 component.setToolTipText(msg(messageKey)); 274 return component;
|
/external/webkit/WebCore/platform/qt/ |
FileSystemQt.cpp | 82 String pathByAppendingComponent(const String& path, const String& component) 84 return QDir::toNativeSeparators(QDir(path).filePath(component));
|
/external/webkit/WebCore/platform/graphics/skia/ |
SkiaUtils.cpp | 124 static U8CPU InvScaleByte(U8CPU component, uint32_t scale) 126 SkASSERT(component == (uint8_t)component); 127 return (component * scale + 0x8000) >> 16;
|
/frameworks/base/core/java/android/app/ |
SuggestionsAdapter.java | 604 // First check the component that the suggestion is originally from 607 ComponentName component = ComponentName.unflattenFromString(c); local 608 if (component != null) { 609 Drawable drawable = getActivityIconWithCache(component); 614 Log.w(LOG_TAG, "Bad component name: " + c); 618 // Then check the component that gave us the suggestion 632 * @param component Name of an activity. 636 private Drawable getActivityIconWithCache(ComponentName component) { 638 String componentIconKey = component.flattenToShortString(); 645 Drawable drawable = getActivityIcon(component); [all...] |
/external/webkit/WebCore/dom/ |
StyledElement.cpp | 370 int component = 0; local 373 while (component < 3) { 377 colors[component] <<= 4; 379 colors[component] += toASCIIHexValue(color[pos]); 386 colors[component] <<= 4; 387 component++;
|
/development/host/windows/usb/legacy/driver/ |
makefile | 24 file to this component. This file merely indirects to the real make file
|
/external/webkit/WebCore/platform/wx/ |
FileSystemWx.cpp | 90 String pathByAppendingComponent(const String& path, const String& component) 92 return wxFileName(path, component).GetFullPath();
|