(Utf8Sequence value)
| 413 | public static native long noop(); |
| 414 | |
| 415 | public static boolean notDots(Utf8Sequence value) { |
| 416 | final int size = value.size(); |
| 417 | if (size > 2) { |
| 418 | return true; |
| 419 | } |
| 420 | if (value.byteAt(0) != '.') { |
| 421 | return true; |
| 422 | } |
| 423 | return size == 2 && value.byteAt(1) != '.'; |
| 424 | } |
| 425 | |
| 426 | public static boolean notDots(long pUtf8NameZ) { |
| 427 | final byte b0 = Unsafe.getByte(pUtf8NameZ); |