Home
last modified time | relevance | path

Searched refs:text (Results 1 – 25 of 251) sorted by relevance

1234567891011

/hardware/google/gfxstream/codegen/generic-apigen/
DParser_unittest.cpp34 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/
Dregistry.rnc17 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/
Dgenerate-index.rb20 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/
Dmathtest.adoc43 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 …]
Dkhronos.css18 /** 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/
Dauto-render.mjs4 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 …]
Dauto-render.js116 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 …]
Drender-a11y-string.js326 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 …]
Drender-a11y-string.mjs160 } // 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/
Dschema_generator.py163 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 …]
Dgenerator.py1092 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 …]
Djson_c_generator.py255 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/
Dextension.rb58 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/
Dandroid_cbor_test.cpp72 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/
Dextension.rb19 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/
Dextension.rb28 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/
Dkatex.js180 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 …]
Dkatex.min.js1text=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/
DextensionStubSource.py249 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
DfixupRef.py135 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/
Dvk_cmd_queue_gen.py420 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/
DUtf8Utils.h25 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/
Dmacro_checker_file.py1039 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/
Dvulkansc_hpp_macros.hpp197 #define VULKAN_HPP_STRINGIFY2( text ) #text argument
198 #define VULKAN_HPP_STRINGIFY( text ) VULKAN_HPP_STRINGIFY2( text ) argument
Dvulkan_hpp_macros.hpp197 #define VULKAN_HPP_STRINGIFY2( text ) #text argument
198 #define VULKAN_HPP_STRINGIFY( text ) VULKAN_HPP_STRINGIFY2( text ) argument

1234567891011