Searched defs:deprecated (Results 1 - 25 of 28) sorted by relevance

12

/external/chromium_org/ppapi/cpp/dev/
H A Dscriptable_object_deprecated.h19 namespace deprecated { namespace in namespace:pp
88 } // namespace deprecated
H A Dscriptable_object_deprecated.cc13 namespace deprecated { namespace in namespace:pp
190 } // namespace deprecated
/external/chromium_org/third_party/libxml/src/
H A DDOCBparser.c4 * This is deprecated !!!
43 static int deprecated = 0; local
45 if (!deprecated) {
47 "docbEncodeEntities() deprecated function reached\n");
48 deprecated = 1;
67 static int deprecated = 0; local
69 if (!deprecated) {
71 "docbParseDocument() deprecated function reached\n");
72 deprecated = 1;
88 static int deprecated local
115 static int deprecated = 0; local
150 static int deprecated = 0; local
181 static int deprecated = 0; local
207 static int deprecated = 0; local
234 static int deprecated = 0; local
266 static int deprecated = 0; local
293 static int deprecated = 0; local
[all...]
H A Dlegacy.c2 * legacy.c: set of deprecated routines, not to be used anymore but
55 static int deprecated = 0; local
57 if (!deprecated) {
59 "htmlDecodeEntities() deprecated function reached\n");
60 deprecated = 1;
397 * This function is deprecated, we now always process entities content
416 static int deprecated = 0; local
418 if (!deprecated) {
420 "xmlDecodeEntities() deprecated function reached\n");
421 deprecated
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/doclava/src/com/google/doclava/apicheck/
H A DAbstractMethodInfo.java25 public void setDeprecated(boolean deprecated); argument
/external/libxml2/
H A DDOCBparser.c4 * This is deprecated !!!
43 static int deprecated = 0; local
45 if (!deprecated) {
47 "docbEncodeEntities() deprecated function reached\n");
48 deprecated = 1;
67 static int deprecated = 0; local
69 if (!deprecated) {
71 "docbParseDocument() deprecated function reached\n");
72 deprecated = 1;
88 static int deprecated local
115 static int deprecated = 0; local
150 static int deprecated = 0; local
181 static int deprecated = 0; local
207 static int deprecated = 0; local
234 static int deprecated = 0; local
266 static int deprecated = 0; local
293 static int deprecated = 0; local
[all...]
H A Dlegacy.c2 * legacy.c: set of deprecated routines, not to be used anymore but
55 static int deprecated = 0; local
57 if (!deprecated) {
59 "htmlDecodeEntities() deprecated function reached\n");
60 deprecated = 1;
397 * This function is deprecated, we now always process entities content
416 static int deprecated = 0; local
418 if (!deprecated) {
420 "xmlDecodeEntities() deprecated function reached\n");
421 deprecated
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/chromium_org/ppapi/cpp/private/
H A Dvar_private.h14 namespace deprecated { namespace in namespace:pp
33 deprecated::ScriptableObject* object);
41 deprecated::ScriptableObject* AsScriptableObject() const;
/external/chromium_org/net/dns/
H A Daddress_sorter_posix.h56 bool deprecated; // vs. preferred RFC4862 member in struct:net::AddressSorterPosix::SourceAddressInfo
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DContentSearchUtils.cpp129 static String findMagicComment(const String& content, const String& name, MagicCommentType commentType, bool* deprecated = 0)
132 if (deprecated)
133 *deprecated = false;
156 if (offset != -1 && deprecated)
157 *deprecated = true;
181 String findSourceURL(const String& content, MagicCommentType commentType, bool* deprecated) argument
183 return findMagicComment(content, "sourceURL", commentType, deprecated);
186 String findSourceMapURL(const String& content, MagicCommentType commentType, bool* deprecated) argument
188 return findMagicComment(content, "sourceMappingURL", commentType, deprecated);
H A DInspectorDebuggerAgent.cpp836 bool deprecated; local
837 String sourceMapURL = ContentSearchUtils::findSourceMapURL(script.source, ContentSearchUtils::JavaScriptMagicComment, &deprecated);
839 // FIXME: add deprecated console message here.
862 bool deprecated; local
863 sourceURL = ContentSearchUtils::findSourceURL(script.source, ContentSearchUtils::JavaScriptMagicComment, &deprecated);
864 // FIXME: add deprecated console message here.
/external/chromium_org/ppapi/tests/
H A Dtest_case.h32 namespace deprecated { namespace in namespace:pp
106 virtual pp::deprecated::ScriptableObject* CreateTestObject();
/external/chromium_org/third_party/WebKit/public/web/
H A DWebWidgetClient.h63 virtual void didActivateCompositor(int deprecated) { } argument
/external/clang/test/Sema/
H A DMicrosoftExtensions.c93 __declspec(deprecated("This is deprecated")) enum DE1 { one, two } e1; // expected-note {{'e1' declared here}}
94 struct __declspec(deprecated) DS1 { int i; float f; }; // expected-note {{declared here}}
96 #define MY_TEXT "This is also deprecated"
97 __declspec(deprecated(MY_TEXT)) void Dfunc1( void ) {} // expected-note {{'Dfunc1' declared here}} function
99 struct __declspec(deprecated(123)) DS2 {}; // expected-error {{'deprecated' attribute requires a string}}
102 e1 = one; // expected-warning {{'e1' is deprecated: This is deprecated}}
103 struct DS1 s = { 0 }; // expected-warning {{'DS1' is deprecated}}
[all...]
/external/doclava/src/com/google/doclava/
H A DFieldInfo.java100 public void setDeprecated(boolean deprecated) { argument
102 mIsDeprecated = deprecated;
119 + ": @Deprecated annotation and @deprecated comment do not match");
326 TagInfo.makeHDF(data, base + ".deprecated", comment().deprecatedTags());
H A DMethodInfo.java208 boolean deprecated = false;
222 + ": @Deprecated annotation and @deprecated doc tag do not match");
231 public void setDeprecated(boolean deprecated) { argument
233 mIsDeprecated = deprecated;
558 TagInfo.makeHDF(data, base + ".deprecated", deprecatedTags());
H A DClassInfo.java375 public void setDeprecated(boolean deprecated) { argument
377 mIsDeprecated = deprecated;
393 + ": @Deprecated annotation and @deprecated comment do not match");
870 TagInfo.makeHDF(data, base + ".deprecated", deprecatedTags());
951 TagInfo.makeHDF(data, "class.deprecated", deprecatedTags());
/external/clang/include/clang/Sema/
H A DAttributeList.h202 const AvailabilityChange &deprecated,
215 new (&getAvailabilitySlot(DeprecatedSlot)) AvailabilityChange(deprecated);
561 const AvailabilityChange &deprecated,
570 introduced, deprecated, obsoleted,
728 const AvailabilityChange &deprecated,
735 introduced, deprecated, obsoleted, unavailable,
198 AttributeList(IdentifierInfo *attrName, SourceRange attrRange, IdentifierInfo *scopeName, SourceLocation scopeLoc, IdentifierInfo *parmName, SourceLocation parmLoc, const AvailabilityChange &introduced, const AvailabilityChange &deprecated, const AvailabilityChange &obsoleted, SourceLocation unavailable, const Expr *messageExpr, Syntax syntaxUsed) argument
/external/iproute2/ip/
H A Dipaddress.c76 fprintf(stderr, " tentative | deprecated | dadfailed | temporary |\n");
510 int deprecated = 0; local
646 deprecated = 1;
647 fprintf(fp, "deprecated ");
681 if (deprecated)
826 } else if (strcmp(*argv, "deprecated") == 0) {
/external/chromium/third_party/libjingle/source/talk/base/
H A Dhttpcommon.cc466 iterator deprecated = header++; local
467 headers_.erase(deprecated);
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dhttpcommon.cc466 iterator deprecated = header++; local
467 headers_.erase(deprecated);
/external/protobuf/src/google/protobuf/
H A Ddescriptor.pb.h1771 // optional bool deprecated = 3 [default = false];
1775 inline bool deprecated() const;
3900 // optional bool deprecated = 3 [default = false];
3908 inline bool FieldOptions::deprecated() const { function in class:google::protobuf::FieldOptions
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Ddescriptor.pb.h1857 // optional bool deprecated = 3 [default = false];
1861 inline bool deprecated() const;
5090 // optional bool deprecated = 3 [default = false];
5104 inline bool FieldOptions::deprecated() const { function in class:google::protobuf::FieldOptions
/external/smali/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 863 milliseconds

12