Home
last modified time | relevance | path

Searched refs:test_var (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Lib/distutils/tests/
Dtest_msvccompiler.py38 test_var = 'ṰḖṤṪ┅ṼẨṜ'
43 os.environ[test_var] = test_value
46 self.assertIn(test_var.lower(), env)
47 self.assertEqual(test_value, env[test_var.lower()])
49 os.environ.pop(test_var)
/third_party/ninja/misc/
Dninja_syntax_test.py169 def test_var(self): member in TestExpand
/third_party/mesa3d/src/compiler/glsl/
Dglsl_parser_extras.h45 ir_variable *test_var; member
Dast_to_hir.cpp6869 state->switch_state.test_var = new(ctx) ir_variable(test_val->type, in test_to_hir()
6873 new(ctx) ir_dereference_variable(state->switch_state.test_var); in test_to_hir()
6875 instructions->push_tail(state->switch_state.test_var); in test_to_hir()
6934 state->switch_state.test_var->type->base_type == GLSL_TYPE_UINT in hir()
6939 ? equal(cnst, state->switch_state.test_var) in hir()
6940 : logic_or(cmp, equal(cnst, state->switch_state.test_var)); in hir()
7052 new(body.mem_ctx) ir_dereference_variable(state->switch_state.test_var); in hir()
7065 if (label->type != state->switch_state.test_var->type) { in hir()
7069 const glsl_type *type_b = state->switch_state.test_var->type; in hir()