HomeSort by relevance Sort by last modified time
    Searched defs:checks (Results 101 - 118 of 118) sorted by null

1 2 3 45

  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
RegistrationDetector.java 17 package com.android.tools.lint.checks;
52 * Checks for missing manifest registrations for activities, services etc
SecurityDetector.java 17 package com.android.tools.lint.checks;
67 * Checks that exported services request a permission.
75 "Checks for exported services that do not require permissions",
89 "Checks for exported content providers that do not require permissions",
104 "Checks for <grant-uri-permission> elements where everything is shared",
106 "This detector checks for a path URL of just '/' (everything), which is " +
117 "Checks for openFileOutput() and getSharedPreferences() calls passing " +
134 "Checks for openFileOutput() and getSharedPreferences() calls passing " +
245 // Just check for some use of permissions. Other Lint checks can check the saneness
TypographyDetector.java 17 package com.android.tools.lint.checks;
45 * Checks for various typographical issues in string definitions.
WrongIdDetector.java 17 package com.android.tools.lint.checks;
65 * Checks for duplicate ids within a layout and within an included layout
91 "Checks for id references in RelativeLayouts that are not defined elsewhere",
ButtonDetector.java 17 package com.android.tools.lint.checks;
JavaPerformanceDetector.java 17 package com.android.tools.lint.checks;
479 * Checks whether the given constructor call and type reference refers
OverdrawDetector.java 17 package com.android.tools.lint.checks;
TranslationDetector.java 17 package com.android.tools.lint.checks;
58 * Checks for incomplete translations - e.g. keys that are only present in some
72 "Checks for incomplete translations where not all strings are translated",
89 "Checks for translations that appear to be unused (no default language string)",
UnusedResourceDetector.java 17 package com.android.tools.lint.checks;
ApiLookup.java 17 package com.android.tools.lint.checks;
    [all...]
DuplicateIdDetector.java 17 package com.android.tools.lint.checks;
60 * Checks for duplicate ids within a layout and within an included layout
77 "Checks for duplicate ids within a single layout",
89 "Checks for duplicate ids across layouts that are combined with include tags",
StringFormatDetector.java 17 package com.android.tools.lint.checks;
88 "Checks that format strings are valid",
94 "This lint warning checks for two related problems:\n" +
    [all...]
BuiltinIssueRegistry.java 17 package com.android.tools.lint.checks;
42 /** Registry which provides a list of checks to be performed on an Android project */
IconDetector.java 17 package com.android.tools.lint.checks;
74 * Checks for common icon problems, such as wrong icon sizes, placing icons in the
131 "Checks the all icons which are provided in multiple densities, all compute to " +
201 "Checks for images using the GIF file format which is discouraged",
559 // This method checks the given map from resource file to pixel dimensions for each
    [all...]
  /frameworks/native/opengl/tools/glgen/src/
JniCodeEmitter.java 212 String[] checks = mChecker.getChecks(cfunc.getName()); local
214 if (checks != null) {
215 while (index < checks.length) {
216 if (checks[index].equals("return")) {
218 } else if (checks[index].startsWith("check")) {
220 } else if (checks[index].equals("ifcheck")) {
222 } else if (checks[index].equals("unsupported")) {
224 } else if (checks[index].equals("requires")) {
226 } else if (checks[index].equals("nullAllowed")) {
230 checks[index] + "\"")
245 String[] checks = mChecker.getChecks(cfunc.getName()); local
274 String[] checks = mChecker.getChecks(cfunc.getName()); local
301 String[] checks = mChecker.getChecks(cfunc.getName()); local
330 String[] checks = mChecker.getChecks(cfunc.getName()); local
    [all...]
  /sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/
AbstractCheckTest.java 17 package com.android.tools.lint.checks;
  /sdk/lint/libs/lint_api/src/com/android/tools/lint/client/api/
LintDriver.java 737 List<Detector> checks = union(mScopeDetectors.get(Scope.RESOURCE_FILE), local
739 if (checks != null && checks.size() > 0) {
741 new ArrayList<ResourceXmlDetector>(checks.size());
742 for (Detector detector : checks) {
766 List<Detector> checks = union(mScopeDetectors.get(Scope.JAVA_FILE), local
768 if (checks != null && checks.size() > 0) {
770 checkJava(project, main, sourceFolders, checks);
    [all...]
  /external/v8/test/cctest/
test-debug.cc 803 // checks: An array of expressions and expected results
806 // Structure for holding checks to do.
811 // Array of checks to do.
812 struct EvaluateCheck* checks = NULL; variable in typeref:struct:EvaluateCheck
831 for (int i = 0; checks[i].expr != NULL; i++) {
834 v8::String::New(checks[i].expr),
835 checks[i].expected };
839 v8::String::AsciiValue ascii(checks[i].expected->ToString());
840 V8_Fatal(__FILE__, __LINE__, "%s != %s", checks[i].expr, *ascii);
    [all...]

Completed in 742 milliseconds

1 2 3 45