HomeSort by relevance Sort by last modified time
    Searched refs:DEPRECATED (Results 1 - 25 of 124) sorted by null

1 2 3 4 5

  /external/libxml2/
legacy.c 2 * legacy.c: set of deprecated routines, not to be used anymore but
26 * Deprecated functions kept for compatibility *
44 * DEPRECATED !!!!
55 static int deprecated = 0; local
57 if (!deprecated) {
59 "htmlDecodeEntities() deprecated function reached\n");
60 deprecated = 1;
70 * Deprecated call
81 * Deprecated call
397 * This function is deprecated, we now always process entities conten
416 static int deprecated = 0; local
446 static int deprecated = 0; local
481 static int deprecated = 0; local
510 static int deprecated = 0; local
533 static int deprecated = 0; local
561 static int deprecated = 0; local
593 static int deprecated = 0; local
633 static int deprecated = 0; local
659 static int deprecated = 0; local
683 static int deprecated = 0; local
703 static int deprecated = 0; local
    [all...]
  /external/libvpx/libvpx/vpx/
vpx_codec.h 49 /*!\brief Decorator indicating a function is deprecated */
50 #ifndef DEPRECATED
52 #define DEPRECATED __attribute__ ((deprecated))
54 #define DEPRECATED
56 #define DEPRECATED
58 #endif /* DEPRECATED */
62 #define DECLSPEC_DEPRECATED /**< \copydoc #DEPRECATED */
64 #define DECLSPEC_DEPRECATED __declspec(deprecated) /**< \copydoc #DEPRECATED */
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx/
vpx_codec.h 49 /*!\brief Decorator indicating a function is deprecated */
50 #ifndef DEPRECATED
52 #define DEPRECATED __attribute__ ((deprecated))
54 #define DEPRECATED
56 #define DEPRECATED
58 #endif /* DEPRECATED */
62 #define DECLSPEC_DEPRECATED /**< \copydoc #DEPRECATED */
64 #define DECLSPEC_DEPRECATED __declspec(deprecated) /**< \copydoc #DEPRECATED */
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
Region.java 45 * DEPRECATED - Region codes that have been defined in the past but are no longer in modern usage,
63 * values are WORLD, CONTINENT, SUBCONTINENT, TERRITORY, GROUPING, DEPRECATED, and UNKNOWN.
95 * Type representing a region whose code has been deprecated, usually
98 DEPRECATED,
234 if ( regionIDMap.containsKey(aliasFrom) ) { // This is a deprecated region
236 } else { // Deprecated region code not in the master codes list - so need to create a deprecated region for it.
248 r.type = RegionType.DEPRECATED;
315 if (parent.equals("containedGroupings") || parent.equals("deprecated")) {
379 if ( r.type == RegionType.DEPRECATED && r.preferredValues.size() == 1)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
Region.java 44 * DEPRECATED - Region codes that have been defined in the past but are no longer in modern usage,
62 * values are WORLD, CONTINENT, SUBCONTINENT, TERRITORY, GROUPING, DEPRECATED, and UNKNOWN.
102 * Type representing a region whose code has been deprecated, usually
106 DEPRECATED,
242 if ( regionIDMap.containsKey(aliasFrom) ) { // This is a deprecated region
244 } else { // Deprecated region code not in the master codes list - so need to create a deprecated region for it.
256 r.type = RegionType.DEPRECATED;
323 if (parent.equals("containedGroupings") || parent.equals("deprecated")) {
388 if ( r.type == RegionType.DEPRECATED && r.preferredValues.size() == 1)
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/lang/
UProperty.java 35 * @deprecated This API is ICU internal only.
36 * @hide original deprecated declaration
39 @Deprecated
91 * <p>Binary property Deprecated (new).
92 * <p>The usage of deprecated characters is strongly discouraged.
94 public static final int DEPRECATED = 6;
687 * Deprecated string property ISO_Comment.
689 * @deprecated ICU 49
690 * @hide original deprecated declaration
692 @Deprecated
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
UProperty.java 36 * @deprecated This API is ICU internal only.
38 @Deprecated
98 * <p>Binary property Deprecated (new).
99 * <p>The usage of deprecated characters is strongly discouraged.
102 public static final int DEPRECATED = 6;
777 * Deprecated string property ISO_Comment.
779 * @deprecated ICU 49
781 @Deprecated
838 * @deprecated ICU 49
840 @Deprecated
    [all...]
  /external/doclava/src/com/google/doclava/
Errors.java 165 public static final Error DEPRECATED = new Error(112, HIDDEN);
180 UNAVAILABLE_SYMBOL, HIDDEN_SUPERCLASS, DEPRECATED, DEPRECATION_MISMATCH, MISSING_COMMENT,
Stubs.java 100 // don't bother reporting deprecated methods
102 Errors.error(Errors.DEPRECATED, m.position(), "Method " + cl.qualifiedName() + "."
103 + m.name() + " is deprecated");
165 // not hidden, but deprecated
166 Errors.error(Errors.DEPRECATED, cl.position(), "Class " + cl.qualifiedName()
167 + " is deprecated");
    [all...]
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
CheckTags.java 12 * - standard tags: @since, @deprecated
20 * '@deprecated to be removed in ICU X.X. [Use ...]'
200 "@internal", "@draft", "@stable", "@since", "@deprecated", "@author", "@see", "@version",
209 static final int DEPRECATED = 4;
410 case DEPRECATED:
463 errln("internal tag missing deprecated");
466 errln("draft tag missing deprecated or provisional");
469 errln("obsolete tag missing deprecated");
472 logln("stable deprecated");
GatherAPIDataOld.java 16 * - stable, draft, deprecated, obsolete (ST DR DP OB)
377 // ok to have both a 'standard' tag and deprecated
380 // if already not deprecated, this is an error
422 case DEPRECATED:
483 private static final int DEPRECATED = 4;
496 "@internal", "@draft", "@stable", "@since", "@deprecated", "@author", "@see", "@version",
GatherAPIData.java 16 * - stable, draft, deprecated, obsolete (ST DR DP OB)
461 // @internal and @obsolete should be always used along with @deprecated.
466 // @deprecated should be always used along with @internal.
474 // @deprecated should be always used along with @obsolete.
484 // 1. @internal and @deprecated
485 // 2. @obsolete and @deprecated
507 System.err.println("warning: no @deprecated tag for @internal API: " + doc);
538 case DEPRECATED:
599 private static final int DEPRECATED = 4;
612 "@internal", "@draft", "@stable", "@since", "@deprecated", "@author", "@see"
    [all...]
CheckAPI.java 16 * - stable, draft, deprecated, obsolete (ST DR DP OB)
469 { "draft ", "stable ", "deprecated", "obsolete " },
    [all...]
  /external/chromium-trace/catapult/third_party/graphy/graphy/backends/google_chart_api/
encoders.py 251 __STYLE_DEPRECATION = ('BarChart.display.style is deprecated.' +
258 style: DEPRECATED. Set style on the chart object itself.
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
UCharacterTest.java     [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
UCharacterTest.java     [all...]
  /external/chromium-trace/catapult/third_party/Paste/paste/evalexception/media/
MochiKit.packed.js     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.repository.tools_2.0.1.R36x_v20100823.jar 
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/resources/
prettify.js 35 * You can also use the (html deprecated) {@code <xmp>} tag, but the pretty
772 * [style : string, pattern : RegExp, DEPRECATED, shortcut : string].
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.p2.repository.tools_2.1.0.v20130327-2119.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.repository.tools_2.1.0.v20130327-2119.jar 
  /external/icu/icu4c/source/
configure     [all...]
  /frameworks/opt/setupwizard/tools/docs/
doclava.jar 
  /prebuilts/devtools/tools/lib/
lint-checks.jar 
  /prebuilts/gradle-plugin/com/android/tools/lint/lint-checks/23.0.1/
lint-checks-23.0.1.jar 

Completed in 493 milliseconds

1 2 3 4 5