/external/clang/unittests/AST/ |
D | ASTImporterTest.cpp | 109 hasBody( in TEST() 118 hasBody( in TEST() 127 hasBody( in TEST() 140 hasBody( in TEST() 152 hasBody( in TEST() 164 hasBody( in TEST() 173 hasBody( in TEST() 190 hasBody( in TEST() 214 hasBody( in TEST() 227 functionDecl(hasBody(compoundStmt(has(atomicExpr( in TEST() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/number/ |
D | CurrencyPluralInfoAffixProvider.java | 72 public boolean hasBody() { in hasBody() method in CurrencyPluralInfoAffixProvider 73 return affixesByPlural[StandardPlural.OTHER.ordinal()].hasBody(); in hasBody()
|
D | MutablePatternModifier.java | 212 … return new CurrencySpacingEnabledModifier(a, b, !patternInfo.hasBody(), isStrong, symbols); in createConstantModifier() 214 return new ConstantMultiFieldModifier(a, b, !patternInfo.hasBody(), isStrong); in createConstantModifier() 293 if (!patternInfo.hasBody()) { in apply()
|
D | AffixPatternProvider.java | 47 public boolean hasBody(); in hasBody() method
|
D | PropertiesAffixPatternProvider.java | 135 public boolean hasBody() { in hasBody() method in PropertiesAffixPatternProvider
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/ |
D | CurrencyPluralInfoAffixProvider.java | 68 public boolean hasBody() { in hasBody() method in CurrencyPluralInfoAffixProvider 69 return affixesByPlural[StandardPlural.OTHER.ordinal()].hasBody(); in hasBody()
|
D | MutablePatternModifier.java | 210 … return new CurrencySpacingEnabledModifier(a, b, !patternInfo.hasBody(), isStrong, symbols); in createConstantModifier() 212 return new ConstantMultiFieldModifier(a, b, !patternInfo.hasBody(), isStrong); in createConstantModifier() 288 if (!patternInfo.hasBody()) { in apply()
|
D | AffixPatternProvider.java | 40 public boolean hasBody(); in hasBody() method
|
D | PropertiesAffixPatternProvider.java | 131 public boolean hasBody() { in hasBody() method in PropertiesAffixPatternProvider
|
/external/icu/icu4c/source/i18n/ |
D | number_mapper.h | 59 bool hasBody() const U_OVERRIDE; 104 bool hasBody() const U_OVERRIDE;
|
D | number_patternmodifier.cpp | 116 a, b, !fPatternInfo->hasBody(), fStrong, *fSymbols, status); in createConstantModifier() 118 return new ConstantMultiFieldModifier(a, b, !fPatternInfo->hasBody(), fStrong); in createConstantModifier() 185 if (!fPatternInfo->hasBody()) { in apply()
|
D | number_mapper.cpp | 443 bool PropertiesAffixPatternProvider::hasBody() const { in hasBody() function in PropertiesAffixPatternProvider 503 bool CurrencyPluralInfoAffixProvider::hasBody() const { in hasBody() function in CurrencyPluralInfoAffixProvider 504 return affixesByPlural[StandardPlural::OTHER].hasBody(); in hasBody()
|
D | number_types.h | 129 virtual bool hasBody() const = 0;
|
D | number_patternstring.h | 93 bool hasBody() const U_OVERRIDE;
|
/external/apache-http/android/src/android/net/http/ |
D | Request.java | 243 boolean hasBody = false; in readResponse() 261 hasBody = canResponseHaveBody(mHttpRequest, statusCode); in readResponse() 263 if (hasBody) in readResponse()
|
/external/mockwebserver/src/main/java/com/google/mockwebserver/ |
D | MockWebServer.java | 468 boolean hasBody = false; in readRequest() 473 hasBody = true; in readRequest() 476 hasBody = true; in readRequest() 494 if (hasBody) { in readRequest()
|
/external/clang/lib/StaticAnalyzer/Frontend/ |
D | ModelConsumer.cpp | 37 if (func && func->hasBody()) { in HandleTopLevelDecl()
|
/external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/ |
D | MockWebServer.java | 630 boolean hasBody = false; 635 hasBody = contentLength > 0; 638 hasBody = true; 652 if (hasBody && !HttpMethod.permitsRequestBody(method)) { 972 boolean hasBody = pushPromise.getResponse().getBody() != null; 974 stream.getConnection().pushStream(stream.getId(), pushedHeaders, hasBody);
|
/external/v8/src/inspector/ |
D | injected-script-source.js | 844 var hasBody = formatters[i].hasBody(object, customObjectConfig); 848 …var result = {header: JSON.stringify(formatted), hasBody: !!hasBody, formatterObjectId: formatterO… property
|
/external/clang/unittests/ASTMatchers/ |
D | ASTMatchersTraversalTest.cpp | 1007 forStmt(hasBody(compoundStmt())))); in TEST() 1009 forStmt(hasBody(compoundStmt())))); in TEST() 1011 whileStmt(hasBody(compoundStmt())))); in TEST() 1013 doStmt(hasBody(compoundStmt())))); in TEST() 1015 cxxForRangeStmt(hasBody(compoundStmt())))); in TEST() 1016 EXPECT_TRUE(matches("void f() {}", functionDecl(hasBody(compoundStmt())))); in TEST() 1017 EXPECT_TRUE(notMatches("void f();", functionDecl(hasBody(compoundStmt())))); in TEST() 1019 functionDecl(hasBody(compoundStmt())))); in TEST()
|
/external/syzkaller/vendor/golang.org/x/net/http2/ |
D | transport.go | 796 hasBody := contentLen != 0 836 endStream := !hasBody && !hasTrailers 843 if hasBody { 855 if hasBody { 899 if !hasBody || bodyWritten { 908 if !hasBody || bodyWritten { 917 if !hasBody || bodyWritten {
|
/external/clang/lib/Analysis/ |
D | CallGraph.cpp | 113 if (!D->hasBody()) in includeInGraph()
|
/external/clang/lib/ARCMigrate/ |
D | TransZeroOutPropsInDealloc.cpp | 104 if (!D->hasBody()) in TraverseObjCMethodDecl()
|
/external/okhttp/okhttp-logging-interceptor/src/main/java/com/squareup/okhttp/logging/ |
D | HttpLoggingInterceptor.java | 218 if (!logBody || !HttpEngine.hasBody(response)) { in intercept()
|
/external/v8/tools/clang/blink_gc_plugin/ |
D | BlinkGCPluginConsumer.cpp | 427 if (dtor && dtor->hasBody()) { in CheckFinalization() 488 if (!dtor->hasBody() || !EmptyStmtVisitor::isEmpty(dtor->getBody())) in HasNonEmptyFinalizer()
|