Lines Matching refs:True
160 returning True or False if that name is supported or not."""
181 returning True or False if that name is supported or not."""
185 results = dependencyBNF().parseString(dependency, parseAll=True)
194 - root - True only if this is the outer (root) expression level"""
223 - parenthesize - True if parentheses should be used in the resulting
228 results = dependencyBNF().parseString(dependency, parseAll=True)
229 return evalDependencyLanguage(exprStack, leafMarkup, opMarkup, parenthesize, root = True)
236 return dependencyLanguage(dependency, leafMarkup = markupPassthrough, opMarkup = opMarkupAsciidoc, parenthesize = True)
238 # aka specmacros = True
248 return dependencyLanguage(dependency, leafMarkup = leafMarkupC, opMarkup = opMarkupC, parenthesize = True)
276 results = dependencyBNF().parseString(dependency, parseAll=True)
280 def markupTraverse(expr, level = 0, root = True):
287 - root - True only on initial call"""
328 'VK_VERSION_1_1' : True,
330 'true' : True,
344 True
354 test('false,true+true', True)
356 test('true,false+true', True)
358 test('true,true+true', True)
363 test('false,(true+true)', True)
364 test('true,(false+false)', True)
365 test('true,(false+true)', True)
366 test('true,(true+false)', True)
367 test('true,(true+true)', True)
371 test('false+false,true', True)
373 test('false+true,true', True)
375 test('true+false,true', True)
376 test('true+true,false', True)
377 test('true+true,true', True)
384 test('true+(false,true)', True)
385 test('true+(true,false)', True)
386 test('true+(true,true)', True)