Lines Matching refs:split

67             raw = raw.split()
68 self.split = list(raw)
122 raw = re.split("[\s]+", raw_prefix)
125 self.split = list(raw)
135 for arg in re.split(",\s*", raw_args):
136 arg = re.split("\s", arg)
144 for throw in re.split(",\s*", raw_throws):
182 raw = raw.split()
183 self.split = list(raw)
208 self.fullname_path = self.fullname.split(".")
211 self.extends_path = self.extends.split(".")
238 self.name_path = self.name.split(".")
322 …ansient volatile synchronized native operator sealed strictfp infix inline suspend vararg".split())
323 …ortedClassVersionError UnsupportedOperationException VerifyError VirtualMachineError Void".split())
331 method.split = []
333 method.split.append(kind)
335 method.split.extend(self.parse_modifiers())
338 method.split.append("deprecated")
343 method.split.append(method.typ)
345 method.split.append(method.name)
350 if "@interface" in method.clazz.split:
356 clazz.split = []
359 clazz.split.append("deprecated")
360 clazz.split.extend(self.parse_modifiers())
364 clazz.split.append("final")
365 clazz.split.append(kind)
373 if not clazz.implements_all and "interface" in clazz.split:
381 field.split = [kind]
384 field.split.append("deprecated")
385 field.split.extend(self.parse_modifiers())
387 field.split.append(field.typ)
389 field.split.append(field.name)
784 if "static" in f.split and "final" in f.split:
796 if clazz.extends == "java.lang.Enum" or "enum" in clazz.split:
854 if "abstract" in clazz.split and "class" in clazz.split:
881 if "static" in f.split and "final" in f.split and f.typ == "java.lang.String":
914 if "static" in f.split and "final" in f.split and f.typ == "java.lang.String":
936 if "static" in m.split: continue
954 if "final" not in clazz.split:
967 if "protected" in m.split:
970 if "protected" in f.split:
998 if not "final" in f.split:
1008 if "static" not in f.split and "property" not in f.split:
1016 if "static" not in f.split or "final" not in f.split:
1058 if "synchronized" in m.split:
1116 if "final" in m.split: continue
1118 if "abstract" in m.split:
1153 if "final" not in clazz.split:
1177 for n in p.split('.'):
1207 for n in p.split('.'):
1425 if "static" not in t.split:
1438 if "deprecated" in m.split: continue
1621 if "abstract" in clazz.split and "static" not in clazz.split:
1768 if 'static' in m.split or 'operator' in m.split:
1810 if "@interface" in clazz.split:
1979 if f.value is not None and 'static' in f.split and 'final' in f.split:
2008 if "@interface" not in clazz.split:
2166 if "deprecated" in clazz.split and not clazz.fullname in prev:
2170 if "deprecated" in i.split: