/aosp14/frameworks/base/tools/powermodel/src/com/android/powermodel/component/ |
H A D | CpuProfile.java | 23 import com.android.powermodel.ParseException; 54 public void setSuspendMa(float value) throws ParseException { in setSuspendMa() 58 public void setIdleMa(float value) throws ParseException { in setIdleMa() 62 public void setActiveMa(float value) throws ParseException { in setActiveMa() 66 public void setCoreCount(int[] value) throws ParseException { in setCoreCount() 70 public void setClusterPower(int cluster, float value) throws ParseException { in setClusterPower() 74 public void setCoreSpeeds(int cluster, int[] value) throws ParseException { in setCoreSpeeds() 83 throw new ParseException("cluster " + cluster in setCoreSpeeds() 90 public void setCorePower(int cluster, float[] value) throws ParseException { in setCorePower() 99 throw new ParseException("cluster " + cluster in setCorePower() [all …]
|
H A D | ModemProfile.java | 22 import com.android.powermodel.ParseException; 61 public void setSleepMa(float value) throws ParseException { in setSleepMa() 65 public void setIdleMa(float value) throws ParseException { in setIdleMa() 69 public void setRxMa(float value) throws ParseException { in setRxMa() 73 public void setTxMa(float[] value) throws ParseException { in setTxMa() 77 public void setScanningMa(float value) throws ParseException { in setScanningMa() 81 public ModemProfile build() throws ParseException { in build()
|
H A D | GpsProfile.java | 22 import com.android.powermodel.ParseException; 35 public void setOnMa(float value) throws ParseException { in setOnMa() 39 public void setSignalMa(float[] value) throws ParseException { in setSignalMa() 43 public GpsProfile build() throws ParseException { in build()
|
H A D | AudioProfile.java | 22 import com.android.powermodel.ParseException;
|
H A D | CameraProfile.java | 22 import com.android.powermodel.ParseException;
|
H A D | FlashlightProfile.java | 22 import com.android.powermodel.ParseException;
|
H A D | VideoProfile.java | 22 import com.android.powermodel.ParseException;
|
H A D | BluetoothProfile.java | 22 import com.android.powermodel.ParseException;
|
H A D | ScreenProfile.java | 22 import com.android.powermodel.ParseException;
|
H A D | WifiProfile.java | 22 import com.android.powermodel.ParseException;
|
/aosp14/frameworks/base/core/java/com/android/internal/util/ |
H A D | TypedProperties.java | 82 ParseException(StreamTokenizer state, String expected) { in ParseException() method in TypedProperties.ParseException 161 throw new ParseException(st, "type name"); in parse() 165 throw new ParseException(st, "valid type name"); in parse() 173 throw new ParseException(st, "'('"); in parse() 180 throw new ParseException(st, "property name"); in parse() 192 throw new ParseException(st, "')'"); in parse() 199 throw new ParseException(st, "'='"); in parse() 209 throw new ParseException(st, in parse() 219 throw new ParseException(st, "';'"); in parse() 247 throw new ParseException(st, "boolean constant"); in parseValue() [all …]
|
/aosp14/frameworks/base/tools/powermodel/src/com/android/powermodel/ |
H A D | ParseException.java | 19 public class ParseException extends Exception { class 22 public ParseException(int line, String message, Throwable th) { in ParseException() method in ParseException 27 public ParseException(int line, String message) { in ParseException() method in ParseException 31 public ParseException(String message) { in ParseException() method in ParseException
|
H A D | RawBatteryStats.java | 538 int startIndex, int endIndex) throws ParseException; in setArray() 576 int startIndex, int endIndex) throws ParseException { in setArray() 584 throw new ParseException(lineNumber, "can't parse field " in setArray() 616 int startIndex, int endIndex) throws ParseException { in setArray() 624 throw new ParseException(lineNumber, "can't parse field " in setArray() 654 int startIndex, int endIndex) throws ParseException { in setArray() 718 throw new ParseException(lineNumber, "Could not find enum for field " in setField() 730 int startIndex, int endIndex) throws ParseException { in setArray() 816 } catch (ParseException ex) { in create() 950 private void parseImpl(InputStream input) throws ParseException, IOException { in parseImpl() [all …]
|
H A D | BatteryStatsReader.java | 38 public static ActivityReport parse(InputStream stream) throws ParseException, IOException { in parse() 63 ActivityReport parse() throws ParseException, IOException { in parse()
|
H A D | CsvParser.java | 51 void onLine(int lineNumber, ArrayList<String> fields) throws ParseException; in onLine() 58 throws IOException, ParseException { in parse() 150 throw new ParseException(lineNumber, "Line is too long: " in parse()
|
H A D | PowerProfile.java | 113 PowerProfile parse() throws ParseException { in parse() 138 throw new ParseException(ex.getLineNumber(), ex.getMessage(), ex); in parse() 141 throw new ParseException(handler.getLineNumber(), ex.getMessage(), ex); in parse() 216 } catch (ParseException ex) { in onItem() 242 } catch (ParseException ex) { in onArray() 516 public static PowerProfile parse(InputStream stream) throws ParseException { in parse()
|
/aosp14/frameworks/base/apct-tests/perftests/core/src/android/libcore/regression/ |
H A D | SimpleDateFormatPerfTest.java | 29 import java.text.ParseException; 51 public void time_parseWithTimeZoneShort() throws ParseException { in time_parseWithTimeZoneShort() 60 public void time_parseWithTimeZoneLong() throws ParseException { in time_parseWithTimeZoneLong() 69 public void time_parseWithoutTimeZone() throws ParseException { in time_parseWithoutTimeZone() 78 public void time_createAndParseWithTimeZoneShort() throws ParseException { in time_createAndParseWithTimeZoneShort() 87 public void time_createAndParseWithTimeZoneLong() throws ParseException { in time_createAndParseWithTimeZoneLong()
|
/aosp14/frameworks/base/telephony/java/com/android/internal/telephony/gsm/ |
H A D | GsmSmsAddress.java | 25 import java.text.ParseException; 44 public GsmSmsAddress(byte[] data, int offset, int length) throws ParseException { in GsmSmsAddress() 56 throw new ParseException("Invalid TOA - high bit must be set. toa = " + toa, in GsmSmsAddress()
|
/aosp14/frameworks/base/core/java/android/net/ |
H A D | WebAddress.java | 76 public WebAddress(String address) throws ParseException { in WebAddress() 104 throw new ParseException("Bad port"); in WebAddress() 120 throw new ParseException("Bad address"); in WebAddress()
|
H A D | MailTo.java | 64 public static MailTo parse(String url) throws ParseException { in parse() 69 throw new ParseException("Not a mailto scheme"); in parse()
|
/aosp14/frameworks/base/packages/SettingsLib/src/com/android/settingslib/ |
H A D | DeviceInfoUtils.java | 41 import java.text.ParseException; 164 } catch (ParseException e) { in getSecurityPatch()
|
/aosp14/frameworks/base/core/java/android/webkit/ |
H A D | URLUtil.java | 21 import android.net.ParseException; 73 } catch (ParseException ex) { in guessUrl()
|
/aosp14/frameworks/base/core/java/android/widget/ |
H A D | CalendarView.java | 42 import java.text.ParseException; 800 } catch (ParseException e) { in parseDate()
|
/aosp14/frameworks/base/services/core/java/com/android/server/rollback/ |
H A D | RollbackStore.java | 47 import java.text.ParseException; 370 } catch (JSONException | DateTimeParseException | ParseException e) { in loadRollback() 377 throws JSONException, ParseException { in rollbackFromJson()
|
/aosp14/frameworks/base/core/java/android/net/http/ |
H A D | SslCertificate.java | 40 import java.text.ParseException; 324 } catch (ParseException e) { in parseDate()
|