Searched defs:constr (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/test/compiler/6942326/
H A DTest.java309 System.out.println("Start search constant substring (" + tc.constr().length() + " chars)");
311 int limit = tc.constr().length();
314 long start = test_init(tc.constr(), b);
316 test_end(tc.constr(), b, v, (b.length() - tc.constr().length()), start);
319 System.out.println("End search constant substring (" + tc.constr().length() + " chars), time: " + (end_it - start_it));
323 System.out.println("Start search non matching constant substring (" + tc.constr().length() + " chars)");
325 int limit = tc.constr().length();
328 long start = test_init(tc.constr(), b);
330 test_end(tc.constr(),
348 public String constr(); method in interface:Test.TestCon
354 private static final String constr = "1111111111111xx1x"; field in class:Test.TestCon17
355 public String constr() { return constr; } method in class:Test.TestCon17
361 private static final String constr = "111111111111xx1x"; field in class:Test.TestCon16
362 public String constr() { return constr; } method in class:Test.TestCon16
368 private static final String constr = "11111xx1x"; field in class:Test.TestCon9
369 public String constr() { return constr; } method in class:Test.TestCon9
375 private static final String constr = "1111xx1x"; field in class:Test.TestCon8
376 public String constr() { return constr; } method in class:Test.TestCon8
382 private static final String constr = "xx1x"; field in class:Test.TestCon4
383 public String constr() { return constr; } method in class:Test.TestCon4
389 private static final String constr = "x1x"; field in class:Test.TestCon3
390 public String constr() { return constr; } method in class:Test.TestCon3
396 private static final String constr = "1y"; field in class:Test.TestCon2
397 public String constr() { return constr; } method in class:Test.TestCon2
404 private static final String constr = "y"; field in class:Test.TestCon1
405 public String constr() { return constr; } method in class:Test.TestCon1
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DLower.java1157 * @param constr The private constructor.
1159 Symbol accessConstructor(DiagnosticPosition pos, Symbol constr) { argument
1160 if (needsPrivateAccess(constr)) {
1161 ClassSymbol accOwner = constr.owner.enclClass();
1162 MethodSymbol aconstr = accessConstrs.get(constr);
1164 List<Type> argtypes = constr.type.getParameterTypes();
1175 constr.type.getReturnType(),
1176 constr.type.getThrownTypes(),
1180 accessConstrs.put(constr, aconstr);
1181 accessed.append(constr);
1292 accessConstructorDef(int pos, Symbol constr, MethodSymbol accessor) argument
[all...]

Completed in 35 milliseconds