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

/external/slf4j/slf4j-ext/src/main/java/org/slf4j/profiler/
H A DProfiler.java60 List<TimeInstrument> childTimeInstrumentList = new ArrayList<TimeInstrument>(); field in class:Profiler
103 childTimeInstrumentList.add(childSW);
111 childTimeInstrumentList.add(nestedProfiler);
116 if (childTimeInstrumentList.size() > 0) {
117 return childTimeInstrumentList.get(childTimeInstrumentList.size() - 1);
131 // for (Object child : childTimeInstrumentList) {
162 for (TimeInstrument ti : childTimeInstrumentList) {
212 List<TimeInstrument> copy = new ArrayList<TimeInstrument>(childTimeInstrumentList);
235 for (TimeInstrument child : childTimeInstrumentList) {
[all...]

Completed in 105 milliseconds