OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ProjectLintConfiguration
(Results
1 - 4
of
4
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
ProjectLintConfiguration.java
36
class
ProjectLintConfiguration
extends DefaultConfiguration {
43
ProjectLintConfiguration
(LintClient client, Project project,
49
private static
ProjectLintConfiguration
create(LintClient client, IProject project,
53
return new
ProjectLintConfiguration
(client, lintProject, parent, fatalOnly);
56
public static
ProjectLintConfiguration
get(LintClient client, IProject project,
64
ProjectLintConfiguration
configuration = null;
67
configuration = (
ProjectLintConfiguration
) value;
LintList.java
239
mConfiguration =
ProjectLintConfiguration
.get(client, project, false);
[
all
...]
EclipseLintClient.java
322
return
ProjectLintConfiguration
.get(this, eclipseProject, mFatalOnly);
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/lint/
ProjectLintConfigurationTest.java
50
ProjectLintConfiguration
config =
51
new
ProjectLintConfiguration
(client, project, parent, false /*fatalOnly*/);
66
config = new
ProjectLintConfiguration
(client, project, parent, false /*fatalOnly*/);
83
ProjectLintConfiguration
otherConfig =
84
new
ProjectLintConfiguration
(client, otherProject, parent, false);
86
ProjectLintConfiguration
config =
87
new
ProjectLintConfiguration
(client, project, otherConfig, false);
137
ProjectLintConfiguration
config =
138
new
ProjectLintConfiguration
(client, project, parent, false /*fatalOnly*/);
178
ProjectLintConfiguration
config1 = ProjectLintConfiguration.get(client, project, false)
[
all
...]
Completed in 2553 milliseconds