Searched refs:SIMPLE (Results 1 - 20 of 20) sorted by relevance

/external/chromium_org/ppapi/shared_impl/
H A Dppb_image_data_shared.h34 SIMPLE enumerator in enum:ppapi::PPB_ImageData_Shared::ImageDataType
/external/chromium_org/v8/src/compiler/
H A Djs-operator.h68 #define SIMPLE(name, properties, inputs, outputs) \ macro
73 SIMPLE(name, Operator::kNoProperties, inputs, outputs)
82 #define PURE_BINOP(name) SIMPLE(name, Operator::kPure, 2, 1)
112 const Operator* Create() { SIMPLE(JSCreate, Operator::kEliminatable, 0, 1); }
162 const Operator* TypeOf() { SIMPLE(JSTypeOf, Operator::kPure, 1, 1); }
190 #undef SIMPLE macro
/external/chromium_org/ppapi/proxy/
H A Dppb_image_data_proxy.cc438 : ImageData(resource, PPB_ImageData_Shared::SIMPLE, desc),
499 case PPB_ImageData_Shared::SIMPLE: {
571 case PPB_ImageData_Shared::SIMPLE: {
658 PPB_ImageData_Shared::SIMPLE,
H A Dresource_creation_proxy.cc283 PPB_ImageData_Shared::SIMPLE;
297 PPB_ImageData_Shared::SIMPLE,
/external/valgrind/main/memcheck/tests/
H A Derr_disable1.stderr.exp2 --------- SIMPLE TEST ---------
/external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/goog/i18n/
H A Dmessageformat.js129 SIMPLE: 3,
247 case goog.i18n.MessageFormat.BlockType_.SIMPLE:
554 return goog.i18n.MessageFormat.BlockType_.SIMPLE;
591 case goog.i18n.MessageFormat.BlockType_.SIMPLE:
592 block.type = goog.i18n.MessageFormat.BlockType_.SIMPLE;
/external/chromium_org/components/pdf/renderer/
H A Dpepper_pdf_host.cc249 ppapi::PPB_ImageData_Shared::SIMPLE,
/external/chromium_org/content/renderer/pepper/
H A Dpepper_video_source_host.cc173 ppapi::PPB_ImageData_Shared::SIMPLE, member in class:content::ppapi::PPB_ImageData_Shared
H A Dppb_image_data_impl.cc50 case PPB_ImageData_Shared::SIMPLE:
H A Dresource_creation_impl.cc141 ppapi::PPB_ImageData_Shared::SIMPLE,
/external/chromium_org/third_party/icu/source/i18n/
H A Dtransreg.h44 * Construct a simple alias (type == SIMPLE)
115 enum { SIMPLE, COMPOUND, RULES } type; enumerator in enum:TransliteratorAlias::__anon12106
H A Dtransreg.cpp70 type(TransliteratorAlias::SIMPLE) {
108 case SIMPLE:
/external/icu/icu4c/source/i18n/
H A Dtransreg.h44 * Construct a simple alias (type == SIMPLE)
115 enum { SIMPLE, COMPOUND, RULES } type; enumerator in enum:TransliteratorAlias::__anon21916
H A Dtransreg.cpp70 type(TransliteratorAlias::SIMPLE) {
108 case SIMPLE:
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/ppc/
H A Dloopfilter_filters_altivec.asm1062 ;# -=-=-=-=-=-=-=-=-=-=-=-=-=-= SIMPLE LOOP FILTER =-=-=-=-=-=-=-=-=-=-=-=-=-=-
/external/libvpx/libvpx/vp8/common/ppc/
H A Dloopfilter_filters_altivec.asm1062 ;# -=-=-=-=-=-=-=-=-=-=-=-=-=-= SIMPLE LOOP FILTER =-=-=-=-=-=-=-=-=-=-=-=-=-=-
/external/chromium_org/chrome/third_party/chromevox/
H A DchromeVoxChromeOptionsScript.js661 if("zh_TW"==goog.LOCALE||"zh-TW"==goog.LOCALE)goog.i18n.pluralRules.select=goog.i18n.pluralRules.defaultSelect_;"zu"==goog.LOCALE&&(goog.i18n.pluralRules.select=goog.i18n.pluralRules.hiSelect_);goog.i18n.MessageFormat=function(a){this.literals_=[];this.parsedPattern_=[];this.numberFormatter_=new goog.i18n.NumberFormat(goog.i18n.NumberFormat.Format.DECIMAL);this.parsePattern_(a)};goog.i18n.MessageFormat.LITERAL_PLACEHOLDER_="\ufddf_";goog.i18n.MessageFormat.Element_={STRING:0,BLOCK:1};goog.i18n.MessageFormat.BlockType_={PLURAL:0,ORDINAL:1,SELECT:2,SIMPLE:3,STRING:4,UNKNOWN:5};goog.i18n.MessageFormat.OTHER_="other";goog.i18n.MessageFormat.REGEX_LITERAL_=/'([{}#].*?)'/g;
663 goog.i18n.MessageFormat.prototype.formatBlock_=function(a,b,c,d){for(var e=0;e<a.length;e++)switch(a[e].type){case goog.i18n.MessageFormat.BlockType_.STRING:d.push(a[e].value);break;case goog.i18n.MessageFormat.BlockType_.SIMPLE:var f=a[e].value;this.formatSimplePlaceholder_(f,b,d);break;case goog.i18n.MessageFormat.BlockType_.SELECT:f=a[e].value;this.formatSelectBlock_(f,b,c,d);break;case goog.i18n.MessageFormat.BlockType_.PLURAL:f=a[e].value;this.formatPluralOrdinalBlock_(f,b,goog.i18n.pluralRules.select,
671 goog.i18n.MessageFormat.prototype.parseBlockType_=function(a){return goog.i18n.MessageFormat.PLURAL_BLOCK_RE_.test(a)?goog.i18n.MessageFormat.BlockType_.PLURAL:goog.i18n.MessageFormat.ORDINAL_BLOCK_RE_.test(a)?goog.i18n.MessageFormat.BlockType_.ORDINAL:goog.i18n.MessageFormat.SELECT_BLOCK_RE_.test(a)?goog.i18n.MessageFormat.BlockType_.SELECT:/^\s*\w+\s*/.test(a)?goog.i18n.MessageFormat.BlockType_.SIMPLE:goog.i18n.MessageFormat.BlockType_.UNKNOWN};
673 case goog.i18n.MessageFormat.BlockType_.PLURAL:d.type=goog.i18n.MessageFormat.BlockType_.PLURAL;d.value=this.parsePluralBlock_(a[c].value);break;case goog.i18n.MessageFormat.BlockType_.ORDINAL:d.type=goog.i18n.MessageFormat.BlockType_.ORDINAL;d.value=this.parseOrdinalBlock_(a[c].value);break;case goog.i18n.MessageFormat.BlockType_.SIMPLE:d.type=goog.i18n.MessageFormat.BlockType_.SIMPLE;d.value=a[c].value;break;default:goog.asserts.fail("Unknown block type for pattern: "+a[c].value)}}else goog.asserts.fail("Unknown part of the pattern.");
H A DchromeVoxChromeBackgroundScript.js600 if("zh_TW"==goog.LOCALE||"zh-TW"==goog.LOCALE)goog.i18n.pluralRules.select=goog.i18n.pluralRules.defaultSelect_;"zu"==goog.LOCALE&&(goog.i18n.pluralRules.select=goog.i18n.pluralRules.hiSelect_);goog.i18n.MessageFormat=function(a){this.literals_=[];this.parsedPattern_=[];this.numberFormatter_=new goog.i18n.NumberFormat(goog.i18n.NumberFormat.Format.DECIMAL);this.parsePattern_(a)};goog.i18n.MessageFormat.LITERAL_PLACEHOLDER_="\ufddf_";goog.i18n.MessageFormat.Element_={STRING:0,BLOCK:1};goog.i18n.MessageFormat.BlockType_={PLURAL:0,ORDINAL:1,SELECT:2,SIMPLE:3,STRING:4,UNKNOWN:5};goog.i18n.MessageFormat.OTHER_="other";goog.i18n.MessageFormat.REGEX_LITERAL_=/'([{}#].*?)'/g;
602 goog.i18n.MessageFormat.prototype.formatBlock_=function(a,b,c,d){for(var e=0;e<a.length;e++)switch(a[e].type){case goog.i18n.MessageFormat.BlockType_.STRING:d.push(a[e].value);break;case goog.i18n.MessageFormat.BlockType_.SIMPLE:var f=a[e].value;this.formatSimplePlaceholder_(f,b,d);break;case goog.i18n.MessageFormat.BlockType_.SELECT:f=a[e].value;this.formatSelectBlock_(f,b,c,d);break;case goog.i18n.MessageFormat.BlockType_.PLURAL:f=a[e].value;this.formatPluralOrdinalBlock_(f,b,goog.i18n.pluralRules.select,
610 goog.i18n.MessageFormat.prototype.parseBlockType_=function(a){return goog.i18n.MessageFormat.PLURAL_BLOCK_RE_.test(a)?goog.i18n.MessageFormat.BlockType_.PLURAL:goog.i18n.MessageFormat.ORDINAL_BLOCK_RE_.test(a)?goog.i18n.MessageFormat.BlockType_.ORDINAL:goog.i18n.MessageFormat.SELECT_BLOCK_RE_.test(a)?goog.i18n.MessageFormat.BlockType_.SELECT:/^\s*\w+\s*/.test(a)?goog.i18n.MessageFormat.BlockType_.SIMPLE:goog.i18n.MessageFormat.BlockType_.UNKNOWN};
612 case goog.i18n.MessageFormat.BlockType_.PLURAL:d.type=goog.i18n.MessageFormat.BlockType_.PLURAL;d.value=this.parsePluralBlock_(a[c].value);break;case goog.i18n.MessageFormat.BlockType_.ORDINAL:d.type=goog.i18n.MessageFormat.BlockType_.ORDINAL;d.value=this.parseOrdinalBlock_(a[c].value);break;case goog.i18n.MessageFormat.BlockType_.SIMPLE:d.type=goog.i18n.MessageFormat.BlockType_.SIMPLE;d.value=a[c].value;break;default:goog.asserts.fail("Unknown block type for pattern: "+a[c].value)}}else goog.asserts.fail("Unknown part of the pattern.");
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 964 milliseconds