HomeSort by relevance Sort by last modified time
    Searched refs:Length (Results 1 - 25 of 362) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebCore/platform/
LengthSize.h 24 #include "Length.h"
34 LengthSize(Length width, Length height)
45 void setWidth(Length width) { m_width = width; }
46 Length width() const { return m_width; }
48 void setHeight(Length height) { m_height = height; }
49 Length height() const { return m_height; }
52 Length m_width;
53 Length m_height;
LengthBox.h 24 #include "Length.h"
42 : m_left(Length(v, Fixed))
43 , m_right(Length(v, Fixed))
44 , m_top(Length(v, Fixed))
45 , m_bottom(Length(v, Fixed))
50 : m_left(Length(l, Fixed))
51 , m_right(Length(r, Fixed))
52 , m_top(Length(t, Fixed))
53 , m_bottom(Length(b, Fixed))
57 Length left() const { return m_left;
    [all...]
PopupMenuStyle.h 31 #include "Length.h"
38 PopupMenuStyle(const Color& foreground, const Color& background, const Font& font, bool visible, Length textIndent, TextDirection textDirection)
52 Length textIndent() const { return m_textIndent; }
60 Length m_textIndent;
Length.cpp 26 #include "Length.h"
37 static Length parseLength(const UChar* data, unsigned length)
39 if (length == 0)
40 return Length(1, Relative);
43 while (i < length && isSpaceOrNewline(data[i]))
45 if (i < length && (data[i] == '+' || data[i] == '-'))
47 while (i < length && isASCIIDigit(data[i]))
50 while (i < length && (isASCIIDigit(data[i]) || data[i] == '.'))
55 while (i < length && isSpaceOrNewline(data[i])
88 unsigned length = string.length(); local
    [all...]
Length.h 37 struct Length : FastAllocBase {
38 Length()
43 Length(LengthType t)
48 Length(int v, LengthType t, bool q = false)
54 Length(double v, LengthType t, bool q = false)
60 bool operator==(const Length& o) const { return m_value == o.m_value; }
61 bool operator!=(const Length& o) const { return m_value != o.m_value; }
165 Length blend(const Length& from, double progress) const
167 // Blend two lengths to produce a new length that is in between them. Used for animation
    [all...]
  /external/webkit/WebCore/rendering/style/
StyleBoxData.h 28 #include "Length.h"
45 Length width;
46 Length height;
48 Length min_width;
49 Length max_width;
51 Length min_height;
52 Length max_height;
54 Length vertical_align;
StyleTransformData.h 28 #include "Length.h"
47 Length m_x;
48 Length m_y;
StyleReflection.h 29 #include "Length.h"
49 Length offset() const { return m_offset; }
53 void setOffset(const Length& l) { m_offset = l; }
64 Length m_offset;
StyleInheritedData.h 30 #include "Length.h"
52 Length indent;
55 Length line_height;
RenderStyle.h 50 #include "Length.h"
361 Length left() const { return surround->offset.left(); }
362 Length right() const { return surround->offset.right(); }
363 Length top() const { return surround->offset.top(); }
364 Length bottom() const { return surround->offset.bottom(); }
374 Length width() const { return box->width; }
375 Length height() const { return box->height; }
376 Length minWidth() const { return box->min_width; }
377 Length maxWidth() const { return box->max_width; }
378 Length minHeight() const { return box->min_height;
    [all...]
  /external/webkit/WebCore/platform/graphics/transforms/
TranslateTransformOperation.cpp 33 return TranslateTransformOperation::create(Length(m_x.type()).blend(m_x, progress),
34 Length(m_y.type()).blend(m_y, progress),
35 Length(m_z.type()).blend(m_z, progress), m_type);
38 Length fromX = fromOp ? fromOp->m_x : Length(m_x.type());
39 Length fromY = fromOp ? fromOp->m_y : Length(m_y.type());
40 Length fromZ = fromOp ? fromOp->m_z : Length(m_z.type());
TranslateTransformOperation.h 28 #include "Length.h"
35 static PassRefPtr<TranslateTransformOperation> create(const Length& tx, const Length& ty, OperationType type)
37 return adoptRef(new TranslateTransformOperation(tx, ty, Length(0, Fixed), type));
40 static PassRefPtr<TranslateTransformOperation> create(const Length& tx, const Length& ty, const Length& tz, OperationType type)
71 TranslateTransformOperation(const Length& tx, const Length& ty, const Length& tz, OperationType type
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/pform/common/inc/
osUtil.h 52 ULONG UtilInfoCodeQueryInformation( PTIWLN_ADAPTER_T pAdapter,PUCHAR pData,PULONG Length);
53 ULONG UtilInfoCodeSetInformation( PTIWLN_ADAPTER_T pAdapter,PUCHAR pData,ULONG Length);
55 ULONG UtilGetSwVersion(PTIWLN_ADAPTER_T pAdapter, PUCHAR pData, PULONG Length);
57 ULONG UtilSetBSSID(PTIWLN_ADAPTER_T pAdapter, PUCHAR pData, ULONG Length);
58 ULONG UtilGetBSSID(PTIWLN_ADAPTER_T pAdapter, PUCHAR pData, PULONG Length);
60 ULONG UtilSetSSID(PTIWLN_ADAPTER_T pAdapter, PUCHAR pData, ULONG Length);
61 ULONG UtilGetSSID(PTIWLN_ADAPTER_T pAdapter, PUCHAR pData, PULONG Length);
63 ULONG UtilNetworkTypesSupported(PTIWLN_ADAPTER_T pAdapter, PUCHAR pData, PULONG Length);
65 ULONG UtilNetworkTypeInUseSet(PTIWLN_ADAPTER_T pAdapter, PUCHAR pData, ULONG Length);
66 ULONG UtilNetworkTypeInUseGet(PTIWLN_ADAPTER_T pAdapter, PUCHAR pData, PULONG Length);
    [all...]
  /system/wlan/ti/sta_dk_4_0_4_32/pform/common/src/
osUtil.c 56 ULONG Length
104 ULONG Length
111 if (Length > sizeof(Param.content))
113 PRINTF(DBG_NDIS_OIDS_VERY_LOUD, (" UtilSetParam: Buffer for parameter 0x%X is bigger(%d) then Param size(%d)\n", ParamType, (int)Length, sizeof(Param.content)));
118 Param.paramLength = Length;
119 NdisMoveMemory(&Param.content, pData, Length);
139 ULONG Length
146 Param.paramLength = Length;
160 if (Length > sizeof(Param.content))
166 NdisMoveMemory(pData, &Param.content, Length);
    [all...]
  /external/webkit/WebCore/rendering/
FixedTableLayout.h 24 #include "Length.h"
42 Vector<Length> m_width;
  /hardware/ti/wlan/wl1271/TWD/FW_Transfer/
fwDebug.c 161 * \param Length - Length in byte to write
168 * Write buffer to HW must receive length in byte max size 256 bytes
175 TI_UINT32 Length,
186 /* check if length is large than default threshold */
187 if (Length > DMA_SIZE_BUF)
189 TRACE1(pFwDebug->hOs, REPORT_SEVERITY_ERROR, "fwDbg_WriteAddr : Buffer Length too large -- %d",Length);
196 os_memoryCopy(pFwDebug->hOs,pFwDebug->pDMABuf,Buffer,Length);
200 BUILD_TTxnStruct(pTxn, Address, pFwDebug->pDMABuf, Length,(TTxnDoneCb)fwDbg_WriteAddrCb, pFwDebug
    [all...]
  /system/wlan/ti/wilink_6_1/TWD/FW_Transfer/
fwDebug.c 151 * \param Length - Length in byte to write
158 * Write buffer to HW must receive length in byte max size 256 bytes
165 TI_UINT32 Length,
176 /* check if length is large than default threshold */
177 if (Length > DMA_SIZE_BUF)
179 TRACE1(pFwDebug->hOs, REPORT_SEVERITY_ERROR, "fwDbg_WriteAddr : Buffer Length too large -- %d",Length);
186 os_memoryCopy(pFwDebug->hOs,pFwDebug->pDMABuf,Buffer,Length);
190 BUILD_TTxnStruct(pTxn, Address, pFwDebug->pDMABuf, Length,(TTxnDoneCb)fwDbg_WriteAddrCb, pFwDebug
    [all...]
  /external/chromium/base/
scoped_bstr_win_unittest.cc 18 EXPECT_TRUE(b.Length() == 0);
34 EXPECT_TRUE(b1.Length() == test1_len);
39 EXPECT_TRUE(b2.Length() == test1_len);
40 EXPECT_TRUE(b1.Length() == 0);
53 EXPECT_TRUE(b2.Length() == 100 / sizeof(kTestString1[0]));
56 EXPECT_TRUE(b2.Length() == 100 / sizeof(kTestString1[0]));
58 EXPECT_TRUE(lstrlen(b2) == b2.Length());
61 EXPECT_TRUE(b1.Length() == test2_len);
63 EXPECT_TRUE(b1.Length() == test2_len - 1);
  /external/webkit/WebCore/bindings/v8/custom/
V8IndexedDatabaseRequestCustom.cpp 44 if (args.Length() < 2)
49 if (args.Length() > 2)
V8DatabaseCustom.cpp 49 if (args.Length() < 2)
62 if (args.Length() > 2) {
70 if (args.Length() > 3) {
78 if (args.Length() > 4) {
92 if (!args.Length())
107 if (args.Length() > 1) {
115 if (args.Length() > 2) {
  /external/webkit/WebCore/html/
HTMLFrameSetElement.h 68 const Length* rowLengths() const { return m_rows; }
69 const Length* colLengths() const { return m_cols; }
91 Length* m_rows;
92 Length* m_cols;
  /hardware/ti/wlan/wl1271/TWD/FW_Transfer/Export_Inc/
fwDebug_api.h 61 TI_UINT32 length; member in struct:__anon10266
96 TI_UINT32 Length,
103 TI_UINT32 Length,
110 TI_UINT32 Length);
114 TI_UINT32 Length);
  /system/wlan/ti/wilink_6_1/TWD/FW_Transfer/Export_Inc/
fwDebug_api.h 61 TI_UINT32 length; member in struct:__anon16987
96 TI_UINT32 Length,
103 TI_UINT32 Length,
110 TI_UINT32 Length);
114 TI_UINT32 Length);
  /hardware/ti/wlan/wl1271/platforms/os/linux/src/
osRgstry_parser.c 74 if( DestinationString->MaximumLength < SourceString->Length )
77 DestinationString->Length = SourceString->Length;
78 os_memoryCopy( NULL, DestinationString->Buffer, SourceString->Buffer, SourceString->Length );
168 pNdisParm->ParameterData.StringData.Length = remark - buf + 1;
171 pNdisParm->ParameterData.StringData.Length = s - buf;
175 if( !pNdisParm->ParameterData.StringData.Length > NDIS_MAX_STRING_LEN )
180 memcpy(pNdisParm->ParameterData.StringData.Buffer, buf, pNdisParm->ParameterData.StringData.Length);
181 print_info("NdisReadConfiguration(): %s = (%d)'%s'\n", name, pNdisParm->ParameterData.StringData.Length, pNdisParm->ParameterData.StringData.Buffer);
  /system/wlan/ti/sta_dk_4_0_4_32/pform/linux/src/
osRgstry_parser.c 70 if( DestinationString->MaximumLength < SourceString->Length )
73 DestinationString->Length = SourceString->Length;
74 os_memoryCopy( NULL, DestinationString->Buffer, SourceString->Buffer, SourceString->Length );
164 pNdisParm->ParameterData.StringData.Length = remark - buf + 1;
167 pNdisParm->ParameterData.StringData.Length = s - buf;
171 if( !pNdisParm->ParameterData.StringData.Length > NDIS_MAX_STRING_LEN )
176 memcpy(pNdisParm->ParameterData.StringData.Buffer, buf, pNdisParm->ParameterData.StringData.Length);
177 print_info("NdisReadConfiguration(): %s = (%d)'%s'\n", name, pNdisParm->ParameterData.StringData.Length, pNdisParm->ParameterData.StringData.Buffer);

Completed in 355 milliseconds

1 2 3 4 5 6 7 8 91011>>