OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:MetricKey
(Results
1 - 3
of
3
) sorted by null
/external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/
metric_key.py
26
class
MetricKey
(object):
/external/setupcompat/main/java/com/google/android/setupcompat/logging/
MetricKey.java
33
public final class
MetricKey
implements Parcelable {
41
* Creates a new instance of
MetricKey
.
52
public static
MetricKey
get(@NonNull String name, @NonNull String screenName) {
53
assertLengthInRange(name, "
MetricKey
.name", MIN_METRIC_KEY_LENGTH, MAX_METRIC_KEY_LENGTH);
55
screenName, "
MetricKey
.screenName", MIN_SCREEN_NAME_LENGTH, MAX_SCREEN_NAME_LENGTH);
58
"Invalid
MetricKey
, only alpha numeric characters are allowed.");
61
"Invalid
MetricKey
, only alpha numeric characters are allowed.");
62
return new
MetricKey
(name, screenName);
65
/** Converts {@link
MetricKey
} into {@link Bundle}. */
66
public static Bundle fromMetricKey(
MetricKey
metricKey)
[
all
...]
/external/robolectric-shadows/utils/src/main/java/org/robolectric/util/
PerfStatsCollector.java
19
private final Map<
MetricKey
, Metric> metricMap = new HashMap<>();
132
MetricKey
key = new
MetricKey
(name, success);
225
private static class
MetricKey
{
229
MetricKey
(String name, boolean success) {
243
MetricKey
metricKey
= (
MetricKey
) o;
245
if (success !=
metricKey
.success) {
248
return name != null ? name.equals(
metricKey
.name) : metricKey.name == null
[
all
...]
Completed in 63 milliseconds