OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BoundLocation
(Results
1 - 13
of
13
) sorted by null
/external/annotation-tools/scene-lib/src/annotations/el/
BoundLocation.java
10
* A {@link
BoundLocation
} holds location information for a bound of a type
16
public final class
BoundLocation
{
30
* Constructs a new {@link
BoundLocation
}; the arguments are assigned to
33
public
BoundLocation
(int paramIndex, int boundIndex) {
39
* Returns whether this {@link
BoundLocation
} equals <code>o</code>; a
41
* is statically known to be another nonnull {@link
BoundLocation
}.
43
public boolean equals(
BoundLocation
l) {
48
* This {@link
BoundLocation
} equals <code>o</code> if and only if
49
* <code>o</code> is another nonnull {@link
BoundLocation
} and
55
return o instanceof
BoundLocation
[
all
...]
AMethod.java
16
public final VivifyingMap<
BoundLocation
, ATypeElement> bounds =
17
ATypeElement.<
BoundLocation
>newVivifyingLHMap_ATE();
AClass.java
15
public final VivifyingMap<
BoundLocation
, ATypeElement> bounds =
16
ATypeElement.<
BoundLocation
>newVivifyingLHMap_ATE();
/external/annotation-tools/annotation-file-utilities/src/annotator/find/
ClassBoundCriterion.java
3
import annotations.el.
BoundLocation
;
11
public final
BoundLocation
boundLoc;
15
public ClassBoundCriterion(String className,
BoundLocation
boundLoc) {
MethodBoundCriterion.java
3
import annotations.el.
BoundLocation
;
11
public final
BoundLocation
boundLoc;
15
public MethodBoundCriterion(String methodName,
BoundLocation
boundLoc) {
BoundLocationCriterion.java
5
import annotations.el.
BoundLocation
;
22
public BoundLocationCriterion(
BoundLocation
boundLoc) {
Criteria.java
6
import annotations.el.
BoundLocation
;
515
public final static Criterion atBoundLocation(
BoundLocation
loc) {
523
public final static Criterion methodBound(String methodName,
BoundLocation
boundLoc) {
527
public final static Criterion classBound(String className,
BoundLocation
boundLoc) {
/external/annotation-tools/scene-lib/src/annotations/io/
IndexFileWriter.java
29
import annotations.el.
BoundLocation
;
316
Map<
BoundLocation
, ATypeElement> bounds) {
317
for (Map. Entry<
BoundLocation
, ATypeElement> be
319
BoundLocation
bl = be.getKey();
IndexFileParser.java
48
import annotations.el.
BoundLocation
;
726
private void parseBounds(VivifyingMap<
BoundLocation
, ATypeElement> bounds)
731
BoundLocation
bl = new
BoundLocation
(paramIndex, -1);
742
BoundLocation
bl = new
BoundLocation
(paramIndex, boundIndex);
[
all
...]
/external/annotation-tools/annotation-file-utilities/src/annotator/specification/
IndexFileSpecification.java
28
import annotations.el.
BoundLocation
;
208
VivifyingMap<
BoundLocation
, ATypeElement> bounds = clazz.bounds;
209
for (Entry<
BoundLocation
, ATypeElement> entry : bounds.entrySet()) {
210
BoundLocation
boundLoc = entry.getKey();
624
for (Entry<
BoundLocation
, ATypeElement> entry : method.bounds.entrySet()) {
625
BoundLocation
boundLoc = entry.getKey();
/external/annotation-tools/scene-lib/src/annotations/io/classfile/
ClassAnnotationSceneReader.java
697
private
BoundLocation
makeTypeParameterLocation() {
699
return new
BoundLocation
(xParamIndexArgs.get(0), -1);
702
return new
BoundLocation
(Integer.MAX_VALUE, -1);
710
private
BoundLocation
makeBoundLocation() {
713
return new
BoundLocation
(xParamIndexArgs.get(0), xBoundIndexArgs.get(0));
716
return new
BoundLocation
(Integer.MAX_VALUE, Integer.MAX_VALUE);
[
all
...]
ClassAnnotationSceneWriter.java
280
for (Map.Entry<
BoundLocation
, ATypeElement> e :
282
BoundLocation
bloc = e.getKey();
474
private void visitBound(TypeAnnotationVisitor xav,
BoundLocation
loc) {
814
for (Map.Entry<
BoundLocation
, ATypeElement> e :
816
BoundLocation
bloc = e.getKey();
[
all
...]
/external/annotation-tools/annotation-file-utilities/
annotation-file-utilities.jar
Completed in 178 milliseconds