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

/forgerock/opendj-b2.6/src/server/org/opends/server/plugins/profiler/
H A DProfileStack.java74 private int[] lineNumbers; field in class:ProfileStack
95 lineNumbers = new int[numFrames];
101 lineNumbers[i] = stackElements[j].getLineNumber();
103 if (lineNumbers[i] <= 0)
107 lineNumbers[i] = LINE_NUMBER_NATIVE;
111 lineNumbers[i] = LINE_NUMBER_UNKNOWN;
124 * @param lineNumbers The line numbers for the frames in this stack.
127 int[] lineNumbers)
132 this.lineNumbers = lineNumbers;
126 ProfileStack(String[] classNames, String[] methodNames, int[] lineNumbers) argument
[all...]
H A DProfileStackFrame.java59 private HashMap<Integer,Long> lineNumbers; field in class:ProfileStackFrame
85 lineNumbers = new HashMap<Integer,Long>();
158 return lineNumbers;
173 Long existingCount = lineNumbers.get(lineNumber);
176 lineNumbers.put(lineNumber, numOccurrences);
180 lineNumbers.put(lineNumber, existingCount+numOccurrences);
197 for (Long l : lineNumbers.values())
/forgerock/opendj2/src/server/org/opends/server/plugins/profiler/
H A DProfileStack.java73 private int[] lineNumbers; field in class:ProfileStack
94 lineNumbers = new int[numFrames];
100 lineNumbers[i] = stackElements[j].getLineNumber();
102 if (lineNumbers[i] <= 0)
106 lineNumbers[i] = LINE_NUMBER_NATIVE;
110 lineNumbers[i] = LINE_NUMBER_UNKNOWN;
123 * @param lineNumbers The line numbers for the frames in this stack.
126 int[] lineNumbers)
131 this.lineNumbers = lineNumbers;
125 ProfileStack(String[] classNames, String[] methodNames, int[] lineNumbers) argument
[all...]
H A DProfileStackFrame.java58 private HashMap<Integer,Long> lineNumbers; field in class:ProfileStackFrame
84 lineNumbers = new HashMap<Integer,Long>();
157 return lineNumbers;
172 Long existingCount = lineNumbers.get(lineNumber);
175 lineNumbers.put(lineNumber, numOccurrences);
179 lineNumbers.put(lineNumber, existingCount+numOccurrences);
196 for (Long l : lineNumbers.values())
/forgerock/opendj2.6.2/src/server/org/opends/server/plugins/profiler/
H A DProfileStack.java74 private int[] lineNumbers; field in class:ProfileStack
95 lineNumbers = new int[numFrames];
101 lineNumbers[i] = stackElements[j].getLineNumber();
103 if (lineNumbers[i] <= 0)
107 lineNumbers[i] = LINE_NUMBER_NATIVE;
111 lineNumbers[i] = LINE_NUMBER_UNKNOWN;
124 * @param lineNumbers The line numbers for the frames in this stack.
127 int[] lineNumbers)
132 this.lineNumbers = lineNumbers;
126 ProfileStack(String[] classNames, String[] methodNames, int[] lineNumbers) argument
[all...]
H A DProfileStackFrame.java59 private HashMap<Integer,Long> lineNumbers; field in class:ProfileStackFrame
85 lineNumbers = new HashMap<Integer,Long>();
158 return lineNumbers;
173 Long existingCount = lineNumbers.get(lineNumber);
176 lineNumbers.put(lineNumber, numOccurrences);
180 lineNumbers.put(lineNumber, existingCount+numOccurrences);
197 for (Long l : lineNumbers.values())
/forgerock/opendj2-jel-hg/src/server/org/opends/server/plugins/profiler/
H A DProfileStack.java74 private int[] lineNumbers; field in class:ProfileStack
95 lineNumbers = new int[numFrames];
101 lineNumbers[i] = stackElements[j].getLineNumber();
103 if (lineNumbers[i] <= 0)
107 lineNumbers[i] = LINE_NUMBER_NATIVE;
111 lineNumbers[i] = LINE_NUMBER_UNKNOWN;
124 * @param lineNumbers The line numbers for the frames in this stack.
127 int[] lineNumbers)
132 this.lineNumbers = lineNumbers;
126 ProfileStack(String[] classNames, String[] methodNames, int[] lineNumbers) argument
[all...]
H A DProfileStackFrame.java59 private HashMap<Integer,Long> lineNumbers; field in class:ProfileStackFrame
85 lineNumbers = new HashMap<Integer,Long>();
158 return lineNumbers;
173 Long existingCount = lineNumbers.get(lineNumber);
176 lineNumbers.put(lineNumber, numOccurrences);
180 lineNumbers.put(lineNumber, existingCount+numOccurrences);
197 for (Long l : lineNumbers.values())
/forgerock/opendj2-hg/src/server/org/opends/server/plugins/profiler/
H A DProfileStack.java73 private int[] lineNumbers; field in class:ProfileStack
94 lineNumbers = new int[numFrames];
100 lineNumbers[i] = stackElements[j].getLineNumber();
102 if (lineNumbers[i] <= 0)
106 lineNumbers[i] = LINE_NUMBER_NATIVE;
110 lineNumbers[i] = LINE_NUMBER_UNKNOWN;
123 * @param lineNumbers The line numbers for the frames in this stack.
126 int[] lineNumbers)
131 this.lineNumbers = lineNumbers;
125 ProfileStack(String[] classNames, String[] methodNames, int[] lineNumbers) argument
[all...]
H A DProfileStackFrame.java58 private HashMap<Integer,Long> lineNumbers; field in class:ProfileStackFrame
84 lineNumbers = new HashMap<Integer,Long>();
157 return lineNumbers;
172 Long existingCount = lineNumbers.get(lineNumber);
175 lineNumbers.put(lineNumber, numOccurrences);
179 lineNumbers.put(lineNumber, existingCount+numOccurrences);
196 for (Long l : lineNumbers.values())
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/plugins/profiler/
H A DProfileStack.java66 private int[] lineNumbers; field in class:ProfileStack
87 lineNumbers = new int[numFrames];
93 lineNumbers[i] = stackElements[j].getLineNumber();
95 if (lineNumbers[i] <= 0)
99 lineNumbers[i] = LINE_NUMBER_NATIVE;
103 lineNumbers[i] = LINE_NUMBER_UNKNOWN;
116 * @param lineNumbers The line numbers for the frames in this stack.
119 int[] lineNumbers)
124 this.lineNumbers = lineNumbers;
118 ProfileStack(String[] classNames, String[] methodNames, int[] lineNumbers) argument
[all...]
H A DProfileStackFrame.java56 private HashMap<Integer,Long> lineNumbers; field in class:ProfileStackFrame
84 lineNumbers = new HashMap<>();
157 return lineNumbers;
172 Long existingCount = lineNumbers.get(lineNumber);
175 lineNumbers.put(lineNumber, numOccurrences);
179 lineNumbers.put(lineNumber, existingCount+numOccurrences);
196 for (Long l : lineNumbers.values())
/forgerock/openam-v13/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/util/
H A DFileEditor.java113 private boolean deleteLineNumbers(TreeSet lineNumbers) throws Exception { argument
117 + "will be skipped: " + lineNumbers);
119 TreeSet removeLineNumbers = new TreeSet(lineNumbers);
/forgerock/openam/openam-tools/openam-installtools/src/main/java/com/sun/identity/install/tools/util/
H A DFileEditor.java113 private boolean deleteLineNumbers(TreeSet lineNumbers) throws Exception { argument
117 + "will be skipped: " + lineNumbers);
119 TreeSet removeLineNumbers = new TreeSet(lineNumbers);

Completed in 59 milliseconds