/external/llvm-project/llvm/test/tools/yaml2obj/ELF/ |
D | section-headers-exclude.yaml | 1 ## Check how we can use the "Excluded" key of the "SectionHeaderTable" tag to exclude 4 ## Check we can use the "Excluded" key to omit a section from the section header table. 5 ## Check we do not include the name of the excluded section in the string table. 40 Excluded: 41 - Name: [[EXCLUDED]] 43 ## Check we report an error when a section is in both the "Sections" and "Excluded" lists at the sa… 49 # EXCLUDE-INCLUDED: error: section '.foo' should be present in the 'Sections' or 'Excluded' lists 51 ## Check we report an error when the `Excluded` key mentions an unknown section. 55 # EXCLUDE-UNKNOWN: error: section '.foo' should be present in the 'Sections' or 'Excluded' lists 58 ## Check we report an error when the `Excluded` key mentions a section more than once. [all …]
|
D | section-headers.yaml | 70 # ERR1-NEXT: error: section '.section (1)' should be present in the 'Sections' or 'Excluded' lists 71 # ERR1-NEXT: error: section '.section (2)' should be present in the 'Sections' or 'Excluded' lists 76 # ERR2-NEXT: error: section '.section (1)' should be present in the 'Sections' or 'Excluded' lists 77 # ERR2-NEXT: error: section '.section (2)' should be present in the 'Sections' or 'Excluded' lists 78 # ERR2-NEXT: error: section '.section.foo' should be present in the 'Sections' or 'Excluded' lists 84 # EMPTY-SECTIONS: error: section '.foo' should be present in the 'Sections' or 'Excluded' lists 85 # EMPTY-SECTIONS-NEXT: error: section '.strtab' should be present in the 'Sections' or 'Excluded' l… 86 # EMPTY-SECTIONS-NEXT: error: section '.shstrtab' should be present in the 'Sections' or 'Excluded'… 140 # SECTIONS-NO-HEADERS: error: NoHeaders can't be used together with Sections/Excluded
|
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/x509/ |
D | PKIXNameConstraintValidator.java | 94 * Check if the given GeneralName is contained in the excluded set. 98 * excluded. 221 * Adds a subtree to the excluded set of these name constraints. 223 * @param subtree A subtree with an excluded GeneralName. 409 private void checkExcludedDN(Set excluded, ASN1Sequence dns) in checkExcludedDN() argument 412 if (excluded.isEmpty()) in checkExcludedDN() 417 Iterator it = excluded.iterator(); in checkExcludedDN() 426 "Subject distinguished name is from an excluded subtree"); in checkExcludedDN() 466 private Set unionDN(Set excluded, ASN1Sequence dn) in unionDN() argument 468 if (excluded.isEmpty()) in unionDN() [all …]
|
D | NameConstraints.java | 20 private GeneralSubtree[] permitted, excluded; field in NameConstraints 48 excluded = createArray(ASN1Sequence.getInstance(o, false)); in NameConstraints() 60 * permitted and excluded are arrays of GeneralSubtree objects. 64 * @param excluded 69 GeneralSubtree[] excluded) in NameConstraints() argument 72 this.excluded = cloneSubtree(excluded); in NameConstraints() 94 return cloneSubtree(excluded); in getExcludedSubtrees() 110 if (excluded != null) in toASN1Primitive() 112 v.add(new DERTaggedObject(false, 1, new DERSequence(excluded))); in toASN1Primitive()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
D | PKIXNameConstraintValidator.java | 90 * Check if the given GeneralName is contained in the excluded set. 94 * excluded. 217 * Adds a subtree to the excluded set of these name constraints. 219 * @param subtree A subtree with an excluded GeneralName. 405 private void checkExcludedDN(Set excluded, ASN1Sequence dns) in checkExcludedDN() argument 408 if (excluded.isEmpty()) in checkExcludedDN() 413 Iterator it = excluded.iterator(); in checkExcludedDN() 422 "Subject distinguished name is from an excluded subtree"); in checkExcludedDN() 462 private Set unionDN(Set excluded, ASN1Sequence dn) in unionDN() argument 464 if (excluded.isEmpty()) in unionDN() [all …]
|
D | NameConstraints.java | 16 private GeneralSubtree[] permitted, excluded; field in NameConstraints 44 excluded = createArray(ASN1Sequence.getInstance(o, false)); in NameConstraints() 56 * permitted and excluded are arrays of GeneralSubtree objects. 60 * @param excluded 65 GeneralSubtree[] excluded) in NameConstraints() argument 68 this.excluded = cloneSubtree(excluded); in NameConstraints() 90 return cloneSubtree(excluded); in getExcludedSubtrees() 106 if (excluded != null) in toASN1Primitive() 108 v.add(new DERTaggedObject(false, 1, new DERSequence(excluded))); in toASN1Primitive()
|
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/asn1/x509/ |
D | NameConstraints.java | 20 private GeneralSubtree[] permitted, excluded; field in NameConstraints 48 excluded = createArray(ASN1Sequence.getInstance(o, false)); in NameConstraints() 60 * permitted and excluded are arrays of GeneralSubtree objects. 64 * @param excluded 69 GeneralSubtree[] excluded) in NameConstraints() argument 72 this.excluded = cloneSubtree(excluded); in NameConstraints() 94 return cloneSubtree(excluded); in getExcludedSubtrees() 110 if (excluded != null) in toASN1Primitive() 112 v.add(new DERTaggedObject(false, 1, new DERSequence(excluded))); in toASN1Primitive()
|
D | PKIXNameConstraintValidator.java | 94 * Check if the given GeneralName is contained in the excluded set. 98 * excluded. 221 * Adds a subtree to the excluded set of these name constraints. 223 * @param subtree A subtree with an excluded GeneralName. 409 private void checkExcludedDN(Set excluded, ASN1Sequence dns) in checkExcludedDN() argument 412 if (excluded.isEmpty()) in checkExcludedDN() 417 Iterator it = excluded.iterator(); in checkExcludedDN() 426 "Subject distinguished name is from an excluded subtree"); in checkExcludedDN() 466 private Set unionDN(Set excluded, ASN1Sequence dn) in unionDN() argument 468 if (excluded.isEmpty()) in unionDN() [all …]
|
/external/libchrome/base/trace_event/ |
D | trace_config_unittest.cc | 39 "\"excluded_categories\":[\"excluded\",\"exc_pattern*\"]," 74 EXPECT_TRUE(tc.IsCategoryGroupEnabled("not-excluded-category")); in CheckDefaultTraceConfigBehavior() 77 EXPECT_TRUE(tc.IsCategoryGroupEnabled("Category1,not-excluded-category")); in CheckDefaultTraceConfigBehavior() 170 config = TraceConfig("included,-excluded,inc_pattern*,-exc_pattern*", ""); in TEST() 171 EXPECT_STREQ("included,inc_pattern*,-excluded,-exc_pattern*", in TEST() 180 config = TraceConfig("disabled-by-default-cc,-excluded", ""); in TEST() 181 EXPECT_STREQ("disabled-by-default-cc,-excluded", in TEST() 196 config = TraceConfig("included,-excluded,inc_pattern*,-exc_pattern*", in TEST() 201 EXPECT_STREQ("included,inc_pattern*,-excluded,-exc_pattern*", in TEST() 207 config = TraceConfig(" included , -excluded, inc_pattern*, ,-exc_pattern* ", in TEST() [all …]
|
/external/junit/src/main/java/org/junit/experimental/categories/ |
D | Categories.java | 89 … * the value of this annotation or their subtypes unless excluded with {@link ExcludeCategory}. 117 private final Set<Class<?>> excluded; field in Categories.CategoryFilter 155 excluded = nullableClassToSet(excludedCategory); in CategoryFilter() 163 excluded = copyAndRefine(excludes); in CategoryFilter() 171 excluded = createSet(exclusions); in CategoryFilter() 183 …* Returns string in the form <tt>"[included categories] - [excluded categories]"</tt>, w… 186 * @return string representation for the relative complement of excluded categories set 189 … * <li> <tt>"categories [all]"</tt> for all included categories and no excluded ones; 190 …<tt>"categories [all] - [A, B]"</tt> for all included categories and given excluded ones; 191 …>"categories [A, B] - [C, D]"</tt> for given included categories and given excluded ones. [all …]
|
/external/testng/src/main/java/org/testng/internal/ |
D | PackageUtils.java | 47 List<String> included, List<String> excluded) in findClassesInPackage() argument 94 findClassesInDirPackage(packageOnly, included, excluded, in findClassesInPackage() 119 …ls.log("PackageUtils", 4, "Found class " + className + ", seeing it if it's included or excluded"); in findClassesInPackage() 120 includeOrExcludeClass(packageName, className, included, excluded, vResult); in findClassesInPackage() 135 findClassesInDirPackage(packageOnly, included, excluded, in findClassesInPackage() 212 List<String> excluded, in findClassesInDirPackage() argument 236 excluded, in findClassesInDirPackage() local 244 + ", seeing it if it's included or excluded"); in findClassesInDirPackage() 245 includeOrExcludeClass(packageName, className, included, excluded, classes); in findClassesInDirPackage() 255 List<String> included, List<String> excluded, List<String> classes) in includeOrExcludeClass() argument [all …]
|
/external/python/google-api-python-client/docs/dyn/ |
D | logging_v2.exclusions.html | 79 …ied parent resource. Only log entries belonging to that resource can be excluded. You can have up … 98 …ied parent resource. Only log entries belonging to that resource can be excluded. You can have up … 110 …port log entries before they are excluded. Audit log entries and log entries from Amazon Web Servi… 114 … # Required. An advanced logs filter that matches the log entries to be excluded. By using the sam… 127 …port log entries before they are excluded. Audit log entries and log entries from Amazon Web Servi… 131 … # Required. An advanced logs filter that matches the log entries to be excluded. By using the sam… 183 …port log entries before they are excluded. Audit log entries and log entries from Amazon Web Servi… 187 … # Required. An advanced logs filter that matches the log entries to be excluded. By using the sam… 217 …port log entries before they are excluded. Audit log entries and log entries from Amazon Web Servi… 221 … # Required. An advanced logs filter that matches the log entries to be excluded. By using the sam… [all …]
|
D | logging_v2.billingAccounts.exclusions.html | 79 …ied parent resource. Only log entries belonging to that resource can be excluded. You can have up … 98 …ied parent resource. Only log entries belonging to that resource can be excluded. You can have up … 110 …port log entries before they are excluded. Audit log entries and log entries from Amazon Web Servi… 114 … # Required. An advanced logs filter that matches the log entries to be excluded. By using the sam… 127 …port log entries before they are excluded. Audit log entries and log entries from Amazon Web Servi… 131 … # Required. An advanced logs filter that matches the log entries to be excluded. By using the sam… 183 …port log entries before they are excluded. Audit log entries and log entries from Amazon Web Servi… 187 … # Required. An advanced logs filter that matches the log entries to be excluded. By using the sam… 217 …port log entries before they are excluded. Audit log entries and log entries from Amazon Web Servi… 221 … # Required. An advanced logs filter that matches the log entries to be excluded. By using the sam… [all …]
|
D | logging_v2.projects.exclusions.html | 79 …ied parent resource. Only log entries belonging to that resource can be excluded. You can have up … 98 …ied parent resource. Only log entries belonging to that resource can be excluded. You can have up … 110 …port log entries before they are excluded. Audit log entries and log entries from Amazon Web Servi… 114 … # Required. An advanced logs filter that matches the log entries to be excluded. By using the sam… 127 …port log entries before they are excluded. Audit log entries and log entries from Amazon Web Servi… 131 … # Required. An advanced logs filter that matches the log entries to be excluded. By using the sam… 183 …port log entries before they are excluded. Audit log entries and log entries from Amazon Web Servi… 187 … # Required. An advanced logs filter that matches the log entries to be excluded. By using the sam… 217 …port log entries before they are excluded. Audit log entries and log entries from Amazon Web Servi… 221 … # Required. An advanced logs filter that matches the log entries to be excluded. By using the sam… [all …]
|
D | logging_v2.organizations.exclusions.html | 79 …ied parent resource. Only log entries belonging to that resource can be excluded. You can have up … 98 …ied parent resource. Only log entries belonging to that resource can be excluded. You can have up … 110 …port log entries before they are excluded. Audit log entries and log entries from Amazon Web Servi… 114 … # Required. An advanced logs filter that matches the log entries to be excluded. By using the sam… 127 …port log entries before they are excluded. Audit log entries and log entries from Amazon Web Servi… 131 … # Required. An advanced logs filter that matches the log entries to be excluded. By using the sam… 183 …port log entries before they are excluded. Audit log entries and log entries from Amazon Web Servi… 187 … # Required. An advanced logs filter that matches the log entries to be excluded. By using the sam… 217 …port log entries before they are excluded. Audit log entries and log entries from Amazon Web Servi… 221 … # Required. An advanced logs filter that matches the log entries to be excluded. By using the sam… [all …]
|
D | logging_v2.folders.exclusions.html | 79 …ied parent resource. Only log entries belonging to that resource can be excluded. You can have up … 98 …ied parent resource. Only log entries belonging to that resource can be excluded. You can have up … 110 …port log entries before they are excluded. Audit log entries and log entries from Amazon Web Servi… 114 … # Required. An advanced logs filter that matches the log entries to be excluded. By using the sam… 127 …port log entries before they are excluded. Audit log entries and log entries from Amazon Web Servi… 131 … # Required. An advanced logs filter that matches the log entries to be excluded. By using the sam… 183 …port log entries before they are excluded. Audit log entries and log entries from Amazon Web Servi… 187 … # Required. An advanced logs filter that matches the log entries to be excluded. By using the sam… 217 …port log entries before they are excluded. Audit log entries and log entries from Amazon Web Servi… 221 … # Required. An advanced logs filter that matches the log entries to be excluded. By using the sam… [all …]
|
D | adexchangebuyer2_v2beta1.accounts.proposals.html | 244 "excludedPositionTypes": [ # A list of video positions to be excluded. 245 # Position types can either be included or excluded (XOR). 249 # When the included list is present, the excluded list must be empty. 250 # When the excluded list is present, the included list must be empty. 255 …or targeting dimensions that contains a list of # IDs of device categories to be included/excluded. 256 # included and excluded numeric IDs. 260 "excludedCriteriaIds": [ # A list of numeric IDs to be excluded. 265 …or targeting dimensions that contains a list of # IDs of operating systems to be included/excluded. 266 # included and excluded numeric IDs. 270 "excludedCriteriaIds": [ # A list of numeric IDs to be excluded. [all …]
|
D | adexchangebuyer2_v2beta1.accounts.finalizedProposals.html | 220 "excludedPositionTypes": [ # A list of video positions to be excluded. 221 # Position types can either be included or excluded (XOR). 225 # When the included list is present, the excluded list must be empty. 226 # When the excluded list is present, the included list must be empty. 231 …or targeting dimensions that contains a list of # IDs of device categories to be included/excluded. 232 # included and excluded numeric IDs. 236 "excludedCriteriaIds": [ # A list of numeric IDs to be excluded. 241 …or targeting dimensions that contains a list of # IDs of operating systems to be included/excluded. 242 # included and excluded numeric IDs. 246 "excludedCriteriaIds": [ # A list of numeric IDs to be excluded. [all …]
|
/external/deqp/android/cts/master/src/ |
D | vk-excluded-tests.txt | 1 # Issue 242: Excluded blend tests where propagated errors may be large 11 # Excluded texture function tests according to the Android GLES3 issue list 15 # Excluded sparse version of the above texture function tests 36 # Issue 431: Excluded copies and blitting tests 42 #VK-GL-CTS 110: Excluded wsi android tests as they require android loader support 55 # Excluded them as Intel HW is failing these tests.
|
/external/llvm-project/llvm/test/FileCheck/ |
D | implicit-check-not.txt | 24 ; CHECK-ERROR1: command line:1:22: error: CHECK-FAIL1-NOT: excluded string found in input 29 ; CHECK-ERROR4: command line:1:22: error: CHECK-FAIL1-NOT: excluded string found in input 32 ; CHECK-ERROR5: command line:1:22: error: CHECK-FAIL1-NOT: excluded string found in input 39 ; CHECK-ERROR2: command line:1:22: error: CHECK-FAIL2-NOT: excluded string found in input 43 ; CHECK-ERROR6: command line:1:22: error: CHECK-FAIL2-NOT: excluded string found in input 51 ; CHECK-ERROR3: command line:1:22: error: CHECK-FAIL3-NOT: excluded string found in input 54 ; CHECK-ERROR7: command line:1:22: error: CHECK-FAIL3-NOT: excluded string found in input
|
/external/testng/src/test/java/test/simple/ |
D | IncludedExcludedTest.java | 58 public MyReporter(String[] included, String[] excluded) { in MyReporter() argument 60 m_excluded = excluded; in MyReporter() 77 Collection<ITestNGMethod> excluded = suite.getExcludedMethods(); in generateReport() local 78 Assert.assertEquals(excluded.size(), m_excluded.length); in generateReport() 80 Assert.assertTrue(containsMethod(excluded, s)); in generateReport()
|
/external/autotest/contrib/ |
D | coverage.py | 104 def __init__(self, statements, excluded, suite_spots): argument 107 self.excluded = excluded 178 # Returns a bool, whether the line is included or excluded. 184 # If we're inside an excluded suite, record that this line was 185 # excluded. 187 self.excluded[lineno] = 1 189 # If this line is excluded, or suite_spots maps this line to 190 # another line that is exlcuded, then we're excluded. 191 elif self.excluded.has_key(lineno) or \ 193 self.excluded.has_key(self.suite_spots[lineno][1]): [all …]
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
D | XMLNSDecl.java | 36 * @param isExcluded true if this namespace declaration should normally be excluded. 73 /** true if this namespace declaration should normally be excluded. 78 * Tell if this declaration should be excluded from the 81 * @return true if this namespace declaration should normally be excluded.
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
D | PKIXNameConstraintValidator.java | 79 * Check if the given GeneralName is contained in the excluded set. 84 * excluded. 122 * Adds a subtree to the excluded set of these name constraints. 124 * @param subtree A subtree with an excluded GeneralName.
|
/external/llvm-project/clang/test/Modules/Inputs/System/usr/include/ |
D | module.map | 36 module excluded { 37 requires excluded 45 requires excluded
|