OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:markerId
(Results
1 - 4
of
4
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
BaseBuilder.java
182
* @param
markerId
The id of the marker to add.
188
protected final IMarker markProject(String
markerId
, String message, int severity) {
189
return BaseProjectHelper.markResource(getProject(),
markerId
, message, severity);
195
* @param
markerId
The id of the markers to remove. If null, all marker of
198
public final void removeMarkersFromResource(IResource resource, String
markerId
) {
201
resource.deleteMarkers(
markerId
, true, IResource.DEPTH_ZERO);
204
String msg = String.format(Messages.Marker_Delete_Error,
markerId
, resource.toString());
212
* @param
markerId
The id of the markers to remove. If null, all marker of
215
protected final void removeMarkersFromContainer(IContainer folder, String
markerId
) {
218
folder.deleteMarkers(
markerId
, true, IResource.DEPTH_INFINITE)
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
BaseProjectHelper.java
105
* @param
markerId
The id of the marker to add.
112
public final static IMarker markResource(IResource resource, String
markerId
,
114
return markResource(resource,
markerId
, message, lineNumber, -1, -1, severity);
122
* @param
markerId
The id of the marker to add.
132
public final static IMarker markResource(IResource resource, String
markerId
,
135
IMarker marker = resource.createMarker(
markerId
);
162
markerId
, resource.getFullPath());
172
* @param
markerId
The id of the marker to add.
177
public final static IMarker markResource(IResource resource, String
markerId
,
179
return markResource(resource,
markerId
, message, -1, severity)
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
IncludeFinder.java
752
final String
markerId
= IMarker.PROBLEM;
754
IMarker[] markers = resource.findMarkers(
markerId
, true, IResource.DEPTH_ZERO);
787
final String
markerId
= IMarker.PROBLEM;
795
IMarker[] markers = resource.findMarkers(
markerId
, true, IResource.DEPTH_ZERO);
832
BaseProjectHelper.markResource(resource,
markerId
, message, lineNumber,
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
AaptParser.java
420
* @param
markerId
The marker id to put.
427
String message, String root, IProject project, String
markerId
, int severity) {
474
IMarker[] markers = f2.findMarkers(
markerId
, true, IResource.DEPTH_ZERO);
515
BaseProjectHelper.markResource(f2,
markerId
, message, line,
Completed in 172 milliseconds