/third_party/skia/third_party/externals/spirv-tools/test/tools/opt/ |
H A D | oconfig.py | 15 import placeholder namespace 40 shader = placeholder.FileSPIRVShader(empty_main_assembly(), '.spvasm') 41 config = placeholder.ConfigFlagsFile('', '.cfg') 42 spirv_args = [shader, '-o', placeholder.TempFileName('output.spv'), config] 52 shader = placeholder.FileSPIRVShader(empty_main_assembly(), '.spvasm') 53 config = placeholder.ConfigFlagsFile(""" 58 spirv_args = [shader, '-o', placeholder.TempFileName('output.spv'), config] 67 shader = placeholder.FileSPIRVShader(empty_main_assembly(), '.spvasm') 68 config = placeholder.ConfigFlagsFile(""" 73 spirv_args = [shader, '-o', placeholder [all...] |
H A D | flags.py | 15 import placeholder namespace 40 shader = placeholder.FileSPIRVShader(empty_main_assembly(), '.spvasm') 41 output = placeholder.TempFileName('output.spv') 128 shader = placeholder.FileSPIRVShader(empty_main_assembly(), '.spvasm') 129 output = placeholder.TempFileName('output.spv') 186 shader = placeholder.FileSPIRVShader(empty_main_assembly(), '.spvasm') 187 output = placeholder.TempFileName('output.spv') 233 shader = placeholder.FileSPIRVShader(empty_main_assembly(), '.spvasm') 234 output = placeholder.TempFileName('output.spv') 274 shader = placeholder [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/tools/opt/ |
H A D | oconfig.py | 15 import placeholder namespace 40 shader = placeholder.FileSPIRVShader(empty_main_assembly(), '.spvasm') 41 config = placeholder.ConfigFlagsFile('', '.cfg') 42 spirv_args = [shader, '-o', placeholder.TempFileName('output.spv'), config] 52 shader = placeholder.FileSPIRVShader(empty_main_assembly(), '.spvasm') 53 config = placeholder.ConfigFlagsFile(""" 58 spirv_args = [shader, '-o', placeholder.TempFileName('output.spv'), config] 67 shader = placeholder.FileSPIRVShader(empty_main_assembly(), '.spvasm') 68 config = placeholder.ConfigFlagsFile(""" 73 spirv_args = [shader, '-o', placeholder [all...] |
H A D | flags.py | 15 import placeholder namespace 40 shader = placeholder.FileSPIRVShader(empty_main_assembly(), '.spvasm') 41 output = placeholder.TempFileName('output.spv') 128 shader = placeholder.FileSPIRVShader(empty_main_assembly(), '.spvasm') 129 output = placeholder.TempFileName('output.spv') 186 shader = placeholder.FileSPIRVShader(empty_main_assembly(), '.spvasm') 187 output = placeholder.TempFileName('output.spv') 233 shader = placeholder.FileSPIRVShader(empty_main_assembly(), '.spvasm') 234 output = placeholder.TempFileName('output.spv') 274 shader = placeholder [all...] |
/third_party/spirv-tools/test/tools/opt/ |
H A D | oconfig.py | 15 import placeholder namespace 40 shader = placeholder.FileSPIRVShader(empty_main_assembly(), '.spvasm') 41 config = placeholder.ConfigFlagsFile('', '.cfg') 42 spirv_args = [shader, '-o', placeholder.TempFileName('output.spv'), config] 52 shader = placeholder.FileSPIRVShader(empty_main_assembly(), '.spvasm') 53 config = placeholder.ConfigFlagsFile(""" 58 spirv_args = [shader, '-o', placeholder.TempFileName('output.spv'), config] 67 shader = placeholder.FileSPIRVShader(empty_main_assembly(), '.spvasm') 68 config = placeholder.ConfigFlagsFile(""" 73 spirv_args = [shader, '-o', placeholder [all...] |
H A D | flags.py | 15 import placeholder namespace 40 shader = placeholder.FileSPIRVShader(empty_main_assembly(), '.spvasm') 41 output = placeholder.TempFileName('output.spv') 128 shader = placeholder.FileSPIRVShader(empty_main_assembly(), '.spvasm') 129 output = placeholder.TempFileName('output.spv') 186 shader = placeholder.FileSPIRVShader(empty_main_assembly(), '.spvasm') 187 output = placeholder.TempFileName('output.spv') 233 shader = placeholder.FileSPIRVShader(empty_main_assembly(), '.spvasm') 234 output = placeholder.TempFileName('output.spv') 274 shader = placeholder [all...] |
/third_party/python/Lib/ |
H A D | textwrap.py | 62 placeholder (default: ' [...]') 125 placeholder=' [...]'): 137 self.placeholder = placeholder 259 if len(indent) + len(self.placeholder.lstrip()) > self.width: 260 raise ValueError("placeholder too large for max width") 323 cur_len + len(self.placeholder) <= width): 324 cur_line.append(self.placeholder) 332 if (len(prev_line) + len(self.placeholder) <= 334 lines[-1] = prev_line + self.placeholder [all...] |
/third_party/skia/modules/skparagraph/src/ |
H A D | OneLineShaper.cpp | 569 for (auto& placeholder : fParagraph->fPlaceholders) { 571 if (placeholder.fTextBefore.width() > 0) { 575 auto start = std::max(bidiRegion.start, placeholder.fTextBefore.start); 576 auto end = std::min(bidiRegion.end, placeholder.fTextBefore.end); 597 } else /*if (end == placeholder.fTextBefore.end)*/ { 603 if (placeholder.fRange.width() == 0) { 607 // Get the placeholder font 609 placeholder.fTextStyle.getFontFamilies(), 610 placeholder.fTextStyle.getFontStyle(), 611 placeholder [all...] |
/third_party/python/Lib/test/ |
H A D | test_textwrap.py | 508 # strip spaces before placeholder 515 # placeholder at the start of line 534 placeholder='...') 539 placeholder='...') 540 # long placeholder and indentation 543 max_lines=1, placeholder=' [truncated]...') 546 max_lines=2, placeholder=' [truncated]...') 553 placeholder=' [truncated]...') 559 placeholder=' [truncated]...') 560 self.check_wrap(self.text, 80, [self.text], placeholder [all...] |
/third_party/skia/src/sksl/lex/ |
H A D | RegexNode.cpp | 58 std::vector<int> placeholder; in createStates() local 59 int id = nfa->addState(NFAState(placeholder)); in createStates() 73 std::vector<int> placeholder; in createStates() local 74 int id = nfa->addState(NFAState(placeholder)); in createStates()
|
/third_party/skia/docs/examples/ |
H A D | Picture_uniqueID.cpp | 11 sk_sp<SkPicture> placeholder = SkPicture::MakePlaceholder({0, 0, 0, 0}); in REG_FIDDLE() local 12 SkDebugf("placeholder id = %d\n", placeholder->uniqueID()); in REG_FIDDLE()
|
H A D | Picture_MakePlaceholder.cpp | 22 sk_sp<SkPicture> placeholder = SkPicture::MakePlaceholder({10, 40, 80, 110}); in REG_FIDDLE() local 23 pictureCanvas->drawPicture(placeholder); in REG_FIDDLE()
|
/third_party/node/deps/npm/node_modules/ip-address/node_modules/sprintf-js/src/ |
H A D | sprintf.js | 17 placeholder: /^\x25(?:([1-9]\d*)\$|\(([^)]+)\))?(\+)?(0|'[^$])?(-)?(\d+)?(?:\.(\d+))?([b-gijostTuvxX])/, 157 else if ((match = re.placeholder.exec(_fmt)) !== null) { 189 placeholder: match[0], 202 throw new SyntaxError('[sprintf] unexpected placeholder')
|
/third_party/mesa3d/src/intel/compiler/ |
H A D | brw_nir_lower_storage_image.c | 385 nir_ssa_def *placeholder = nir_ssa_undef(b, 4, 32); in lower_image_load_instr() local 386 nir_ssa_def_rewrite_uses(&intrin->dest.ssa, placeholder); in lower_image_load_instr() 398 nir_ssa_def_rewrite_uses(placeholder, color); in lower_image_load_instr() 399 nir_instr_remove(placeholder->parent_instr); in lower_image_load_instr() 613 nir_ssa_def *placeholder = nir_ssa_undef(b, 4, 32); in lower_image_atomic_instr() local 614 nir_ssa_def_rewrite_uses(&intrin->dest.ssa, placeholder); in lower_image_atomic_instr() 630 nir_ssa_def_rewrite_uses(placeholder, result); in lower_image_atomic_instr()
|
/third_party/mesa3d/src/amd/registers/ |
H A D | regdb.py | 766 def placeholder(s): function 767 placeholder = "JSON-{key}-NOSJ".format(key=len(replacements)) 769 return placeholder 774 placeholder(entry) 780 placeholder(field) 785 regmap['map'] = placeholder(regmap['map']) 787 regmap['chips'] = placeholder(regmap['chips'])
|
/third_party/vixl/src/ |
H A D | code-buffer-vixl.h | 188 bool placeholder; in EnsureSpaceFor() local 189 EnsureSpaceFor(amount, &placeholder); in EnsureSpaceFor()
|
/third_party/node/deps/npm/node_modules/ip-address/node_modules/sprintf-js/dist/ |
H A D | sprintf.min.js | 2 !function(){"use strict";var g={not_string:/[^s]/,not_bool:/[^t]/,not_type:/[^T]/,not_primitive:/[^v]/,number:/[diefg]/,numeric_arg:/[bcdiefguxX]/,json:/[j]/,not_json:/[^j]/,text:/^[^\x25]+/,modulo:/^\x25{2}/,placeholder:/^\x25(?:([1-9]\d*)\$|\(([^)]+)\))?(\+)?(0|'[^$])?(-)?(\d+)?(?:\.(\d+))?([b-gijostTuvxX])/,key:/^([a-z_][a-z_\d]*)/i,key_access:/^\.([a-z_][a-z_\d]*)/i,index_access:/^\[(\d+)\]/,sign:/^[+-]/};function y(e){return function(e,t){var r,n,i,s,a,o,p,c,l,u=1,f=e.length,d="";for(n=0;n<f;n++)if("string"==typeof e[n])d+=e[n];else if("object"==typeof e[n]){if((s=e[n]).keys)for(r=t[u],i=0;i<s.keys.length;i++){if(null==r)throw new Error(y('[sprintf] Cannot access property "%s" of undefined value "%s"',s.keys[i],s.keys[i-1]));r=r[s.keys[i]]}else r=s.param_no?t[s.param_no]:t[u++];if(g.not_type.test(s.type)&&g.not_primitive.test(s.type)&&r instanceof Function&&(r=r()),g.numeric_arg.test(s.type)&&"number"!=typeof r&&isNaN(r))throw new TypeError(y("[sprintf] expecting number but found %T",r));switch(g.number.test(s.type)&&(c=0<=r),s.type){case"b":r=parseInt(r,10).toString(2);break;case"c":r=String.fromCharCode(parseInt(r,10));break;case"d":case"i":r=parseInt(r,10);break;case"j":r=JSON.stringify(r,null,s.width?parseInt(s.width):0);break;case"e":r=s.precision?parseFloat(r).toExponential(s.precision):parseFloat(r).toExponential();break;case"f":r=s.precision?parseFloat(r).toFixed(s.precision):parseFloat(r);break;case"g":r=s.precision?String(Number(r.toPrecision(s.precision))):parseFloat(r);break;case"o":r=(parseInt(r,10)>>>0).toString(8);break;case"s":r=String(r),r=s.precision?r.substring(0,s.precision):r;break;case"t":r=String(!!r),r=s.precision?r.substring(0,s.precision):r;break;case"T":r=Object.prototype.toString.call(r).slice(8,-1).toLowerCase(),r=s.precision?r.substring(0,s.precision):r;break;case"u":r=parseInt(r,10)>>>0;break;case"v":r=r.valueOf(),r=s.precision?r.substring(0,s.precision):r;break;case"x":r=(parseInt(r,10)>>>0).toString(16);break;case"X":r=(parseInt(r,10)>>>0).toString(16).toUpperCase()}g.json.test(s.type)?d+=r:(!g.number.test(s.type)||c&&!s.sign?l="":(l=c?"+":"-",r=r.toString().replace(g.sign,"")),o=s.pad_char?"0"===s.pad_char?"0":s.pad_char.charAt(1):" ",p=s.width-(l+r).length,a=s.width&&0<p?o.repeat(p):"",d+=s.align?l+r+a:"0"===o?l+a+r:a+l+r)}return d}(function(e){if(p[e])return p[e];var t,r=e,n=[],i=0;for(;r;){if(null!==(t=g.text.exec(r)))n.push(t[0]);else if(null!==(t=g.modulo.exec(r)))n.push("%");else{if(null===(t=g.placeholder.exec(r)))throw new SyntaxError("[sprintf] unexpected placeholder");if(t[2]){i|=1;var s=[],a=t[2],o=[];if(null===(o=g.key.exec(a)))throw new SyntaxError("[sprintf] failed to parse named argument key");for(s.push(o[1]);""!==(a=a.substring(o[0].length));)if(null!==(o=g.key_access.exec(a)))s.push(o[1]);else{if(null===(o=g.index_access.exec(a)))throw new SyntaxError("[sprintf] failed to parse named argument key");s.push(o[1])}t[2]=s}else i|=2;if(3===i)throw new Error("[sprintf] mixing positional and named placeholders is not (yet) supported");n.push({placeholder:t[0],param_no:t[1],keys:t[2],sign:t[3],pad_char:t[4],align:t[5],width:t[6],precision:t[7],type:t[8]})}r=r.substring(t[0].length)}return p[e]=n}(e),arguments)}function e(e,t){return y.apply(null,[e].concat(t||[]))}var p=Object.create(null);"undefined"!=typeof exports&&(exports.sprintf=y,exports.vsprintf=e),"undefined"!=typeof window&&(window.sprintf=y,window.vsprintf=e,"function"==typeof define&&define.amd&&define(function(){return{sprintf:y,vsprintf:e}}))}();
|
/third_party/rust/crates/clap/src/builder/ |
H A D | arg.rs | 4165 styled.placeholder("[="); 4171 styled.placeholder(" ["); 4173 styled.placeholder(" "); 4179 styled.placeholder(arg_val); 4181 styled.placeholder("..."); 4184 styled.placeholder("]");
|
/third_party/node/deps/v8/src/builtins/ |
H A D | setup-builtins-internal.cc | 70 // The contents of placeholder don't matter, as long as they don't create in BuildPlaceholder() 203 // Fill the builtins list with placeholders. References to these placeholder in PopulateWithPlaceholders() 210 Handle<Code> placeholder = BuildPlaceholder(isolate, builtin); in PopulateWithPlaceholders() local 211 AddBuiltin(builtins, builtin, *placeholder); in PopulateWithPlaceholders()
|
/third_party/typescript/tests/baselines/reference/ |
H A D | jsxComplexSignatureHasApplicabilityError.js | 252 placeholder: ReactSelectProps<TValue>['placeholder']; 442 * placeholder displayed when there are no matching search results or a falsy value to hide it 528 * field placeholder, displayed when there's no value 531 placeholder?: string | JSX.Element;
|
/third_party/skia/src/utils/ |
H A D | SkJSON.cpp | 522 // Restore the previous scope index from saved placeholder value, in popScopeAsVec() 524 auto& placeholder = fValueStack[scope_start - 1]; in popScopeAsVec() local 525 fScopeIndex = *static_cast<RawValue<intptr_t>&>(placeholder); in popScopeAsVec() 526 placeholder = VectorT(begin, count, fAlloc); in popScopeAsVec()
|
/third_party/skia/experimental/sktext/include/ |
H A D | Types.h | 205 Placeholder placeholder; member
|
/third_party/skia/third_party/externals/spirv-tools/test/tools/ |
H A D | spirv_test_framework.py | 32 placeholders. After placeholder expansion, if the expected_* variable is 56 from placeholder import PlaceHolder
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/tools/ |
H A D | spirv_test_framework.py | 32 placeholders. After placeholder expansion, if the expected_* variable is 56 from placeholder import PlaceHolder
|
/third_party/spirv-tools/test/tools/ |
H A D | spirv_test_framework.py | 32 placeholders. After placeholder expansion, if the expected_* variable is 56 from placeholder import PlaceHolder
|