Searched defs:short (Results 1 - 25 of 25) sorted by relevance

/external/v8/test/mjsunit/
H A Dstring-replace.js39 var short = "xaxbxcx"; variable
41 replaceTest("axbxcx", short, "x", "");
42 replaceTest("axbxcx", short, /x/, "");
43 replaceTest("abc", short, /x/g, "");
45 replaceTest("xaxxcx", short, "b", "");
46 replaceTest("xaxxcx", short, /b/, "");
47 replaceTest("xaxxcx", short, /b/g, "");
50 replaceTest("[]axbxcx", short, "x", "[]");
51 replaceTest("[]axbxcx", short, /x/, "[]");
52 replaceTest("[]a[]b[]c[]", short, /
[all...]
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-2185-2.js32 function short() { function
48 short();
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DRenderSVGResourceMarker.h57 virtual bool applyResource(RenderObject*, RenderStyle*, GraphicsContext*&, unsigned short) { return false; } argument
H A DRenderSVGResource.h63 virtual bool applyResource(RenderObject*, RenderStyle*, GraphicsContext*&, unsigned short resourceMode) = 0;
64 virtual void postApplyResource(RenderObject*, GraphicsContext*&, unsigned short, const Path*, const RenderSVGShape*) { } argument
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPaint.cpp66 void SVGPaint::setPaint(unsigned short, const String&, const String&, const String&, ExceptionState& es) argument
H A DSVGZoomAndPan.cpp76 NO_RETURN_DUE_TO_ASSERT void SVGZoomAndPan::setZoomAndPan(unsigned short) argument
H A DSVGColor.cpp73 void SVGColor::setColor(unsigned short, const String&, const String&, ExceptionState& es) argument
H A DSVGViewSpec.cpp106 void SVGViewSpec::setZoomAndPan(unsigned short, ExceptionState& es) argument
/external/clang/test/CXX/stmt.stmt/stmt.select/stmt.switch/
H A Dp2-0x.cpp6 constexpr operator short() const { return n; }
14 constexpr short s = Alt();
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/opentype/
H A DOpenTypeTypes.h34 operator short() const { return (v & 0x00ff) << 8 | v >> 8; }
35 BigEndianShort(short u) : v((u & 0x00ff) << 8 | u >> 8) { }
36 unsigned short v;
40 operator unsigned short() const { return (v & 0x00ff) << 8 | v >> 8; }
41 BigEndianUShort(unsigned short u) : v((u & 0x00ff) << 8 | u >> 8) { }
42 unsigned short v;
H A DOpenTypeUtilities.cpp35 operator unsigned short() const { return (v & 0x00ff) << 8 | v >> 8; }
36 BigEndianUShort(unsigned short u) : v((u & 0x00ff) << 8 | u >> 8) { }
37 unsigned short v;
57 unsigned short fsType;
58 unsigned short magicNumber;
63 unsigned short padding1;
173 void EOTHeader::appendBigEndianString(const BigEndianUShort* string, unsigned short length)
176 m_buffer.resize(oldSize + length + 2 * sizeof(unsigned short));
188 unsigned short padding = 0;
220 unsigned short familyNameLengt
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Dstring-replace.js39 var short = "xaxbxcx"; variable
41 replaceTest("axbxcx", short, "x", "");
42 replaceTest("axbxcx", short, /x/, "");
43 replaceTest("abc", short, /x/g, "");
45 replaceTest("xaxxcx", short, "b", "");
46 replaceTest("xaxxcx", short, /b/, "");
47 replaceTest("xaxxcx", short, /b/g, "");
50 replaceTest("[]axbxcx", short, "x", "[]");
51 replaceTest("[]axbxcx", short, /x/, "[]");
52 replaceTest("[]a[]b[]c[]", short, /
[all...]
/external/harfbuzz_ng/src/
H A Dgen-indic-table.py82 short = [{ variable
97 for v,s in short[i].items ():
108 if v in short[i]:
109 s = short[i][v]
113 raise Exception ("Duplicate short value alias", v, s)
115 short[i][v] = s
139 sys.stdout.write ("%9s" % ("_(%s,%s)," % (short[0][d[0]], short[1][d[1]])))
191 print " if (unlikely (u == 0x%04X)) return _(%s,%s);" % (u, short[0][d[0]], short[
[all...]
/external/bison/data/
H A Dyacc.c393 [#ifdef short
394 # undef short macro
408 typedef short int yytype_int8;
414 typedef unsigned short int yytype_uint16;
420 typedef short int yytype_int16;
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSPrimitiveValue.cpp180 unsigned short CSSPrimitiveValue::primitiveType() const
507 template<> short CSSPrimitiveValue::computeLength(const RenderStyle* style, const RenderStyle* rootStyle, float multiplier, bool computingFontSize)
509 return roundForImpreciseConversion<short>(computeLengthDouble(style, rootStyle, multiplier, computingFontSize));
512 template<> unsigned short CSSPrimitiveValue::computeLength(const RenderStyle* style, const RenderStyle* rootStyle, float multiplier, bool computingFontSize)
514 return roundForImpreciseConversion<unsigned short>(computeLengthDouble(style, rootStyle, multiplier, computingFontSize));
595 void CSSPrimitiveValue::setFloatValue(unsigned short, double, ExceptionState& es) argument
603 double CSSPrimitiveValue::conversionToCanonicalUnitsScaleFactor(unsigned short unitType)
655 double CSSPrimitiveValue::getDoubleValue(unsigned short unitType, ExceptionState& es) const
667 double CSSPrimitiveValue::getDoubleValue(unsigned short unitType) const
755 void CSSPrimitiveValue::setStringValue(unsigned short, cons argument
[all...]
H A DCSSPrimitiveValueMappings.h54 template<> inline CSSPrimitiveValue::CSSPrimitiveValue(short i)
61 template<> inline CSSPrimitiveValue::operator short() const
64 return clampTo<short>(m_value.num);
70 template<> inline CSSPrimitiveValue::CSSPrimitiveValue(unsigned short i)
77 template<> inline CSSPrimitiveValue::operator unsigned short() const
80 return clampTo<unsigned short>(m_value.num);
/external/clang/test/Preprocessor/
H A Dcxx_oper_keyword_ms_compat.cpp68 #define short macro
153 short
/external/chromium_org/third_party/angle_dx11/src/compiler/preprocessor/
H A DExpressionParser.cpp202 #ifdef short
203 # undef short macro
218 typedef short int yytype_int8;
224 typedef unsigned short int yytype_uint16;
230 typedef short int yytype_int16;
/external/elfutils/src/
H A Dldscript.c261 #ifdef short
262 # undef short macro
277 typedef short int yytype_int8;
283 typedef unsigned short int yytype_uint16;
289 typedef short int yytype_int16;
1722 /* This is a short cut for "ID { *(ID) }". */
/external/bison/src/
H A Dparse-gram.c394 #ifdef short
395 # undef short macro
410 typedef short int yytype_int8;
416 typedef unsigned short int yytype_uint16;
422 typedef short int yytype_int16;
/external/chromium_org/third_party/angle_dx11/src/compiler/
H A Dglslang_tab.cpp344 #ifdef short
345 # undef short macro
360 typedef short int yytype_int8;
366 typedef unsigned short int yytype_uint16;
372 typedef short int yytype_int16;
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
H A Dglcpp-parse.c355 #ifdef short
356 # undef short macro
371 typedef short int yytype_int8;
377 typedef unsigned short int yytype_uint16;
383 typedef short int yytype_int16;
H A Dglsl_parser.cc622 #ifdef short
623 # undef short macro
638 typedef short int yytype_int8;
644 typedef unsigned short int yytype_uint16;
650 typedef short int yytype_int16;
/external/elfutils/libcpu/
H A Di386_parse.c364 #ifdef short
365 # undef short macro
380 typedef short int yytype_int8;
386 typedef unsigned short int yytype_uint16;
392 typedef short int yytype_int16;
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/program/
H A Dprogram_parse.tab.c509 #ifdef short
510 # undef short macro
525 typedef short int yytype_int8;
531 typedef unsigned short int yytype_uint16;
537 typedef short int yytype_int16;

Completed in 860 milliseconds