Lines Matching refs:STR
116 (void) addelem(v, i+1, PyString_FromString(STR(n)));
123 (void) addelem(result, 1, PyString_FromString(STR(n)));
250 return (strcmp(STR(left), STR(right)));
448 char* str = "<syntax-tree>";
455 &PyST_Type, &self, &str);
458 &str);
463 mod = PyAST_FromNode(self->st_node, &(self->st_flags), str, arena);
465 res = (PyObject *)PyAST_Compile(mod, str, &(self->st_flags), arena);
938 #define validate_name(ch, str) validate_terminal(ch, NAME, str)
1017 && ((string == 0) || (strcmp(string, STR(terminal)) == 0)));
1646 char *s = STR(CHILD(CHILD(tree, 1), 0));
2111 name = STR(CHILD(tree, nch - 3));
2118 (strcmp(STR(CHILD(tree, pos)), "finally") == 0)) {
2133 (strcmp(STR(CHILD(tree, pos)), "else") == 0)) {
2297 res = ((strcmp(STR(tree), "in") == 0)
2298 || (strcmp(STR(tree), "is") == 0));
2301 "illegal operator '%s'", STR(tree));
2312 && (((strcmp(STR(CHILD(tree, 0)), "is") == 0)
2313 && (strcmp(STR(CHILD(tree, 1)), "not") == 0))
2314 || ((strcmp(STR(CHILD(tree, 0)), "not") == 0)
2315 && (strcmp(STR(CHILD(tree, 1)), "in") == 0))));