/hardware/google/gfxstream/codegen/generic-apigen/ |
D | Parser_unittest.cpp | 34 std::string text = "When parsing '"; in TEST() local 35 text += kData[n].input; in TEST() 36 text += "'"; in TEST() 39 EXPECT_STREQ(kData[n].expected, result.c_str()) << text; in TEST() 65 std::string text = "When parsing '"; in TEST() local 66 text += kData[n].input; in TEST() 67 text += "'"; in TEST() 72 &error)) << text; in TEST() 74 EXPECT_STREQ(kData[n].expectedType, vartype.c_str()) << text; in TEST() 76 EXPECT_STREQ(kData[n].expectedError, error.c_str()) << text; in TEST() [all …]
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/xml/ |
D | registry.rnc | 17 element comment { text } ? | 43 attribute name { text } , 44 attribute protect { text } , 59 attribute name { text } , 60 attribute author { text } , 61 attribute contact { text } 69 element comment { text } 106 # comment - descriptive text with no semantic meaning 141 # <comment> - containing arbitrary text (unused) 144 # syntax where it may contain arbitrarily interleaved text, <type>, and [all …]
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/config/chunkindex/ |
D | generate-index.rb | 20 text = line.gsub(/<\/?[^>]*>/, "") 37 if text =~ /Appendix.*Extensions/ then 41 if extappendix and text =~ /^VK_.*/ then 42 curext = text 44 text = "#{curext.strip} - #{text}" 47 curdata = { :id => File.basename(file) + "#" + id, :title => text, :body => "" } 49 curdata[:body] += " " + text
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/config/ |
D | mathtest.adoc | 43 s = {1 \over 2} + { \left( x_p - x_f \right) \over \text{size} } 48 t = {1 \over 2} + { \left( y_p - y_f \right) \over \text{size} } 129 s = {1 \over 2} + { \left( x_p - x_f \right) \over \text{size} } 133 t = {1 \over 2} + { \left( y_p - y_f \right) \over \text{size} } 239 N & = 9 & \text{number of mantissa bits per component} \\ 240 B & = 15 & \text{exponent bias} \\ 241 E_{max} & = 31 & \text{maximum possible biased exponent value} \\ 254 & \text{for}\ max_{clamped} > 2^{-(B+1)} \\ 256 & \text{for}\ max_{clamped} \leq 2^{-(B+1)} 280 exp' & \text{for}\ 0 \leq max_{shared} < 2^N \\ [all …]
|
D | khronos.css | 18 /** 1. Set default font family to sans-serif. 2. Prevent iOS text size adjust after orientation cha… 19 html { font-family: sans-serif; /* 1 */ -ms-text-size-adjust: 100%; /* 2 */ -webkit-text-size-adjus… 56 /** Improve readability of pre-formatted text in all browsers. */ 96 … Address inconsistent `text-transform` inheritance for `button` and `select`. All other form contr… 97 button, select { text-transform: none; } 150 .text-left { text-align: left !important; } 152 .text-right { text-align: right !important; } 154 .text-center { text-align: center !important; } 156 .text-justify { text-align: justify !important; } 182 a { color: #0068b0; text-decoration: none; line-height: inherit; } [all …]
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/katex/contrib/ |
D | auto-render.mjs | 4 const findEndOfMath = function findEndOfMath(delimiter, text, startIndex) { argument 11 while (index < text.length) { 12 const character = text[index]; 14 if (braceLevel <= 0 && text.slice(index, index + delimLength) === delimiter) { 34 if (startData[i].type === "text") { 35 const text = startData[i].data; 39 nextIndex = text.indexOf(leftDelim); 44 type: "text", 45 data: text.slice(0, currIndex) 52 nextIndex = text.indexOf(leftDelim, currIndex); [all …]
|
D | auto-render.js | 116 var findEndOfMath = function findEndOfMath(delimiter, text, startIndex) { 123 while (index < text.length) { 124 var character = text[index]; 126 if (braceLevel <= 0 && text.slice(index, index + delimLength) === delimiter) { 147 var text = startData[i].data; 151 nextIndex = text.indexOf(leftDelim); 157 data: text.slice(0, currIndex) 164 nextIndex = text.indexOf(leftDelim, currIndex); 172 data: text.slice(currIndex, nextIndex) 176 nextIndex = findEndOfMath(rightDelim, text, currIndex + leftDelim.length); [all …]
|
D | render-a11y-string.js | 326 var text = tree.text; 331 buildString(text, "bin", a11yStrings); 337 buildString(text, "close", a11yStrings); 344 buildString(tree.text, "inner", a11yStrings); 350 buildString(text, "open", a11yStrings); 356 buildString(text, "punct", a11yStrings); 362 buildString(text, "rel", a11yStrings); 463 buildString(tree.text, "normal", a11yStrings); 484 buildString(tree.text, atomType, a11yStrings); 632 buildString(tree.text, atomType, a11yStrings); [all …]
|
D | render-a11y-string.mjs | 160 } // If the text to add is a number and there is already a string 214 const text = tree.text; constant 219 buildString(text, "bin", a11yStrings); 225 buildString(text, "close", a11yStrings); 232 buildString(tree.text, "inner", a11yStrings); 238 buildString(text, "open", a11yStrings); 244 buildString(text, "punct", a11yStrings); 250 buildString(text, "rel", a11yStrings); 351 buildString(tree.text, "normal", a11yStrings); 372 buildString(tree.text, atomType, a11yStrings); [all …]
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/ |
D | schema_generator.py | 163 def appendSection(self, section, text): argument 164 self.sections[section].append(text) 184 … body += " \"" + elem.text + "\": {\"$ref\": \"#/definitions/uint64_t" + "\"}," 192 storeType = elem.text 195 if elem.text == "VkBool32": 196 …body += " \"" + elem.text + "\": {\"oneOf\": [{\"$ref\": \"#/definitions/" + storeType + "\"},{… 197 elif elem.text == "VkFlags": 198 …body += " \"" + elem.text + "\": {\"oneOf\": [{\"$ref\": \"#/definitions/" + storeType + "\"},{… 200 … body += " \"" + elem.text + "\": {\"$ref\": \"#/definitions/" + storeType + "\"}," 212 text = noneStr(elem.text) [all …]
|
D | generator.py | 1092 prefix = noneStr(param.text) 1095 text = noneStr(elem.text) 1098 …uld_insert_may_alias_macro and self.genOpts.conventions.is_voidpointer_alias(elem.tag, text, tail): 1102 … self.logMsg('diag', 'Aligning parameter', elem.text, 'to column', self.genOpts.alignFuncParam) 1116 paramdecl += prefix.replace('const ', '') + text + ' const' + tail 1118 paramdecl += prefix + text + tail 1143 paramdecl = ' ' + noneStr(param.text) 1145 text = noneStr(elem.text) 1148 …uld_insert_may_alias_macro and self.genOpts.conventions.is_voidpointer_alias(elem.tag, text, tail): 1154 self.logMsg('diag', 'Identifying length of', elem.text, 'as', newLen) [all …]
|
D | json_c_generator.py | 255 def appendSection(self, section, text, extension): argument 258 self.sections[section].append(text) 363 … body += self.genBitmaskCode("const ", " * obj,", elem.text, typeElem.get('requires')) 366 …= self.genBasetypeCode("const ", " * obj,", typeElem.find('name').text, typeElem.find('type').text) 371 body += self.genHandleCode("const ", " * obj,", elem.text) 522 if elem.text.find('PFN_') != -1: 523 return " /** Note: Ignoring function pointer (%s). **/\n" %(elem.text) 525 if elem.text == 'pNext': 529 memberName = elem.text 532 typeName = elem.text [all …]
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/config/vu-to-json/ |
D | extension.rb | 58 match = /<a id=\"(VUID-[^"]+)\"[^>]*><\/a>(.*)/m.match(item.text) 62 text = match[2] 65 text.gsub!("\n", ' ') 68 text += item.content 71 text.strip! 74 entry = {'vuid' => vuid, 'text' => text, 'page' => 'vkspec' } 99 puts item.text
|
/hardware/interfaces/confirmationui/support/test/ |
D | android_cbor_test.cpp | 72 pair(text("key"), text("value")), // in writeTest() 73 pair(text("key"), bytes("100101010010")), // in writeTest() 77 arr(text("♨⚖ⶖ"), bytes(fourHundredAs))); in writeTest() 108 state = write(state, text(malformed)); in TEST() 116 state = write(state, text(malformed)); in TEST() 124 state = write(state, text(neat)); in TEST() 132 state = write(state, text(neat)); in TEST() 140 state = write(state, text(neat)); in TEST() 148 state = write(state, text(malformed)); in TEST() 156 state = write(state, text(malformed)); in TEST()
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/config/spec-macros/ |
D | extension.rb | 19 def text method in NormativeInlineMacroBase 24 create_inline parent, :quoted, '<strong class="purple">' + text + '</strong>' 92 def text method in CanInlineMacro 101 def text method in CannotInlineMacro 110 def text method in MayInlineMacro 119 def text method in MustInlineMacro 128 def text method in OptionalInlineMacro 137 def text method in OptionallyInlineMacro 146 def text method in RequiredInlineMacro 155 def text method in ShouldInlineMacro
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/config/extension-highlighter/ |
D | extension.rb | 28 def preprocess_conditional_directive directive, target, delimiter, text 37 return super(directive, target, delimiter, text) 66 result = super(directive, modified_target, delimiter, text) 91 def preprocess_conditional_inclusion directive, target, delimiter, text 100 return super(directive, target, delimiter, text) 129 result = super(directive, modified_target, delimiter, text)
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/katex/ |
D | katex.js | 180 function Token(text, // the text of this token 182 this.text = void 0; 184 this.text = text; 196 text) // the text of the newly constructed token 198 return new Token(text, SourceLocation.range(this, endToken)); 314 function utils_escape(text) { 315 return String(text).replace(ESCAPE_REGEX, function (match) { 600 _proto.text = function text() { 1299 function SymbolNode(text, height, depth, italic, skew, width, classes, style) { 1300 this.text = void 0; [all …]
|
D | katex.min.js | 1 …text=void 0,this.loc=void 0,this.text=t,this.loc=e}return t.prototype.range=function(e,r){return n… property
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/Retired/ |
D | extensionStubSource.py | 249 pfnDecl += noneStr(proto.text) 254 returnType = noneStr(proto.find('type').text) 256 type = self.makeFunctionPointerType(nameTag.text, tail) 262 text = noneStr(elem.text) 265 name = self.makeProtoName(text, tail) 268 stubDecl += text + tail 270 pfnName = self.makeFunctionPointerName(nameTag.text, noneStr(tail)); 326 return ' ' + param.find('name').text
|
D | fixupRef.py | 135 for text in file: 148 print(text, file=fp, end='') 151 print(text, file=fp, end='') 156 print(text, file=fp, end='') 158 print(text, file=fp, end='')
|
/hardware/google/gfxstream/guest/mesa/src/vulkan/util/ |
D | vk_cmd_queue_gen.py | 420 def remove_prefix(text, prefix): argument 421 if text.startswith(prefix): 422 return text[len(prefix):] 423 return text 425 def remove_suffix(text, suffix): argument 426 if text.endswith(suffix): 427 return text[:-len(suffix)] 428 return text 584 mem_type = p.find('./type').text 585 mem_name = p.find('./name').text
|
/hardware/google/aemu/base/include/aemu/base/misc/ |
D | Utf8Utils.h | 25 bool utf8IsValid(const char* text, size_t textLen); 32 int utf8Decode(const uint8_t* text, size_t textLen, uint32_t* codepoint);
|
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/spec_tools/ |
D | macro_checker_file.py | 1039 text = attrib.value 1040 self.entity = text 1044 if self.checker.seenRefPage(text): 1047 text), 1050 self.checker.addRefPage(text) 1059 data = self.checker.findEntity(text) 1068 text, type_text), 1079 text = attrib.value 1080 if not text: 1095 text = attrib.value [all …]
|
/hardware/google/gfxstream/common/vulkan/include/vulkan/ |
D | vulkansc_hpp_macros.hpp | 197 #define VULKAN_HPP_STRINGIFY2( text ) #text argument 198 #define VULKAN_HPP_STRINGIFY( text ) VULKAN_HPP_STRINGIFY2( text ) argument
|
D | vulkan_hpp_macros.hpp | 197 #define VULKAN_HPP_STRINGIFY2( text ) #text argument 198 #define VULKAN_HPP_STRINGIFY( text ) VULKAN_HPP_STRINGIFY2( text ) argument
|