OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:condition_list
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
glX_proto_send.py
586
# FIXME
condition_list
in this function. Basically, remove
588
# FIXME condition to
condition_list
from the start. The only
616
condition_list
= []
618
condition_list
.append( "%s >= 0" % (p.name) )
629
condition_list
.append( skip_condition )
631
if len(
condition_list
) > 0:
632
if len(
condition_list
) > 1:
633
skip_condition = "(%s)" % (string.join(
condition_list
, ") && (" ))
635
skip_condition = "%s" % (
condition_list
.pop(0))
[
all
...]
/external/mesa3d/src/mapi/glapi/gen/
glX_proto_send.py
586
# FIXME
condition_list
in this function. Basically, remove
588
# FIXME condition to
condition_list
from the start. The only
616
condition_list
= []
618
condition_list
.append( "%s >= 0" % (p.name) )
629
condition_list
.append( skip_condition )
631
if len(
condition_list
) > 0:
632
if len(
condition_list
) > 1:
633
skip_condition = "(%s)" % (string.join(
condition_list
, ") && (" ))
635
skip_condition = "%s" % (
condition_list
.pop(0))
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
CodeGeneratorInspector.py
733
condition_list
= []
736
condition_list
.append("s == \"%s\"" % enum_item)
737
validator_writer.newline(" ASSERT(%s);\n" % " || ".join(
condition_list
))
[
all
...]
Completed in 603 milliseconds