Searched refs:strict (Results 1 - 4 of 4) sorted by relevance

/libcore/dalvik/src/test/java/dalvik/system/profiler/
H A DSamplingProfilerTest.java137 test_HprofData(hprofData, false); // non-strict from here down because of this RI data
211 private void test_HprofData(HprofData hprofData, boolean strict) throws Exception { argument
212 assertHprofData(hprofData, strict);
214 test_HprofData_binary(hprofData, strict);
220 private void assertHprofData(HprofData hprofData, boolean strict) throws Exception { argument
239 if (strict) {
271 private void test_HprofData_binary(HprofData hprofData, boolean strict) throws Exception { argument
296 assertHprofData(hprofData, strict);
/libcore/dalvik/src/main/java/dalvik/system/profiler/
H A DBinaryHprofReader.java49 private boolean strict = true; field in class:BinaryHprofReader
79 return strict;
82 public void setStrict (boolean strict) { argument
84 throw new IllegalStateException("cannot set strict after read()");
86 this.strict = strict;
406 if (strict) {
460 if (strict) {
475 if (strict && totalSamples != total) {
/libcore/ojluni/src/main/java/java/util/
H A DLocale.java1629 languageCode, false /* strict */);
1643 private static String normalizeAndValidateLanguage(String language, boolean strict) { argument
1650 if (strict) {
1737 countryCode, false /* strict */);
1749 private static String normalizeAndValidateRegion(String region, boolean strict) { argument
1757 if (strict) {
/libcore/ojluni/src/main/java/java/net/
H A DURI.java3281 // If the strict argument is true then we require that the given
3286 // strict argument) a legal IPv4 address characters then we return -1
3294 private int scanIPv4Address(int start, int n, boolean strict) argument
3300 if ((m <= p) || (strict && (m != n)))

Completed in 220 milliseconds