Searched defs:specs (Results 1 - 25 of 49) sorted by relevance

12

/external/chromium_org/third_party/accessibility-audit/
H A Daxs_testing.js1417 axs.AuditRule.specs = {};
1422 for (var b in axs.AuditRule.specs) {
1423 var c = axs.AuditRule.specs[b], d = new axs.AuditRule(c);
1498 return a.withConsoleApi ? [] : Object.keys(axs.AuditRule.specs).filter(function(a) {
1507 d = a.auditRulesToRun && 0 < a.auditRulesToRun.length ? a.auditRulesToRun : Object.keys(axs.AuditRule.specs);
1562 axs.AuditRule.specs.audioWithoutControls = {name:"audioWithoutControls", heading:"Audio elements should have controls", url:"", severity:axs.constants.Severity.WARNING, relevantElementMatcher:function(a) {
1567 axs.AuditRule.specs.badAriaAttributeValue = {name:"badAriaAttributeValue", heading:"ARIA state and property values must be valid", url:"", severity:axs.constants.Severity.SEVERE, relevantElementMatcher:function(a) {
1586 axs.AuditRule.specs.badAriaRole = {name:"badAriaRole", heading:"Elements with ARIA roles must use a valid, non-abstract ARIA role", url:"https://github.com/GoogleChrome/accessibility-developer-tools/wiki/Audit-Rules#-ax_aria_01--elements-with-aria-roles-must-use-a-valid-non-abstract-aria-role", severity:axs.constants.Severity.SEVERE, relevantElementMatcher:function(a) {
1591 axs.AuditRule.specs.controlsWithoutLabel = {name:"controlsWithoutLabel", heading:"Controls and media elements should have labels", url:"https://github.com/GoogleChrome/accessibility-developer-tools/wiki/Audit-Rules#-ax_text_01--controls-and-media-elements-should-have-labels", severity:axs.constants.Severity.SEVERE, relevantElementMatcher:function(a) {
1607 axs.AuditRule.specs
[all...]
/external/chromium_org/ash/test/
H A Ddisplay_manager_test_api.cc25 const std::string specs,
29 base::SplitString(specs, ',', &parts);
24 CreateDisplayInfoListFromString( const std::string specs, DisplayManager* display_manager) argument
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DLocalVariableInfo.java77 * @param specs {@code non-null;} the register set to associate with the block
79 public void setStarts(int label, RegisterSpecSet specs) { argument
82 if (specs == null) {
83 throw new NullPointerException("specs == null");
87 blockStarts[label] = specs;
102 * @param specs {@code non-null;} the register set to merge into the start set
108 public boolean mergeStarts(int label, RegisterSpecSet specs) { argument
113 setStarts(label, specs);
119 newStart.intersect(specs, true);
121 newStart = specs
[all...]
H A DRegisterSpecSet.java31 * {@code non-null;} array of register specs, where each element is
35 private final RegisterSpec[] specs; field in class:RegisterSpecSet
49 this.specs = new RegisterSpec[maxSize];
61 RegisterSpec[] otherSpecs = otherSet.specs;
62 int len = specs.length;
69 RegisterSpec s1 = specs[i];
87 int len = specs.length;
91 RegisterSpec spec = specs[i];
102 int len = specs.length;
109 RegisterSpec spec = specs[
[all...]
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DLocalVariableInfo.java78 * @param specs {@code non-null;} the register set to associate with the block
80 public void setStarts(int index, RegisterSpecSet specs) { argument
83 if (specs == null) {
84 throw new NullPointerException("specs == null");
88 blockStarts[index] = specs;
103 * @param specs {@code non-null;} the register set to merge into the start set
109 public boolean mergeStarts(int index, RegisterSpecSet specs) { argument
114 setStarts(index, specs);
119 newStart.intersect(specs, true);
/external/emma/core/java12/com/vladium/emma/filter/
H A DIInclExclFilter.java60 final String [] specs = new String [_specs.size ()];
61 _specs.toArray (specs);
63 return create (specs);
67 public static IInclExclFilter create (final String [] specs) argument
69 if ((specs == null) || (specs.length == 0))
75 for (int i = 0, iLimit = specs.length; i < iLimit; ++ i)
77 final String spec = specs [i];
/external/lldb/source/Host/common/
H A DSymbols.cpp95 lldb_private::ModuleSpecList specs; local
96 const size_t num_specs = ObjectFile::GetModuleSpecifications (file_spec, 0, 0, specs);
101 if (specs.GetModuleSpecAtIndex (0, mspec))
/external/lldb/source/Plugins/ObjectContainer/Universal-Mach-O/
H A DObjectContainerUniversalMachO.cpp282 lldb_private::ModuleSpecList &specs)
284 const size_t initial_count = specs.GetSize();
303 specs);
308 return specs.GetSize() - initial_count;
277 GetModuleSpecifications(const lldb_private::FileSpec& file, lldb::DataBufferSP& data_sp, lldb::offset_t data_offset, lldb::offset_t file_offset, lldb::offset_t file_size, lldb_private::ModuleSpecList &specs) argument
/external/aac/libAACenc/src/
H A Dband_nrg.cpp301 FIXP_DBL NrgMid, NrgSide, specm, specs; local
314 specs = specL - specR;
316 NrgSide = fPow2AddDiv2(NrgSide, specs);
323 specs = specL - specR;
325 NrgSide = fPow2AddDiv2(NrgSide, specs);
/external/chromium_org/net/tools/disk_cache_memory_test/
H A Ddisk_cache_memory_test.cc227 bool CacheMemTest(const ScopedVector<CacheSpec>& specs) { argument
230 for (it = specs.begin(); it != specs.end(); ++it) {
257 ScopedVector<CacheSpec>* specs) {
263 specs->push_back(spec.release());
285 ScopedVector<CacheSpec> specs; local
287 if (!ParseAndStoreSpec(spec_str_1, &specs))
291 if (!ParseAndStoreSpec(spec_str_2, &specs))
294 return CacheMemTest(specs);
256 ParseAndStoreSpec(const std::string& spec_str, ScopedVector<CacheSpec>* specs) argument
/external/emma/core/java12/com/vladium/emma/instr/
H A DInstrProcessor.java72 * @param specs [null is equivalent to no filtering (everything is included)]
74 public synchronized final void setInclExclFilter (final String [] specs) argument
76 if (specs == null)
79 m_coverageFilter = IInclExclFilter.Factory.create (specs);
/external/lldb/source/API/
H A DSBModuleSpec.cpp175 SBModuleSpecList specs; local
178 ObjectFile::GetModuleSpecifications(file_spec, 0, 0, *specs.m_opaque_ap);
179 return specs;
219 SBModuleSpecList specs; local
220 m_opaque_ap->FindMatchingModuleSpecs(*match_spec.m_opaque_ap, *specs.m_opaque_ap);
221 return specs;
/external/lldb/source/Symbol/
H A DObjectFile.cpp190 ModuleSpecList &specs)
206 specs);
217 lldb_private::ModuleSpecList &specs)
219 const size_t initial_count = specs.GetSize();
225 if (callback (file, data_sp, data_offset, file_offset, file_size, specs) > 0)
226 return specs.GetSize() - initial_count;
232 if (callback (file, data_sp, data_offset, file_offset, file_size, specs) > 0)
233 return specs.GetSize() - initial_count;
187 GetModuleSpecifications(const FileSpec &file, lldb::offset_t file_offset, lldb::offset_t file_size, ModuleSpecList &specs) argument
212 GetModuleSpecifications(const lldb_private::FileSpec& file, lldb::DataBufferSP& data_sp, lldb::offset_t data_offset, lldb::offset_t file_offset, lldb::offset_t file_size, lldb_private::ModuleSpecList &specs) argument
/external/chromium_org/third_party/icu/source/i18n/
H A Dtridpars.cpp217 Specs* specs = parseFilterID(id, pos, TRUE); local
218 if (specs == NULL) {
224 SingleID* single = specsToID(specs, FORWARD);
226 single->filter = specs->filter;
228 delete specs;
689 * at any location between specs or delimiters, and is returned
812 TransliteratorIDParser::specsToID(const Specs* specs, int32_t dir) { argument
816 if (specs != NULL) {
819 if (specs->sawSource) {
820 buf.append(specs
850 specsToSpecialInverse(const Specs& specs, UErrorCode &status) argument
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fFboNoAttachmentTests.cpp531 const FboSpec specs[] = local
563 for (int caseNdx = 0; caseNdx < DE_LENGTH_OF_ARRAY(specs); caseNdx++)
565 const FboSpec& spec = specs[caseNdx];
616 const FboSpec specs[][2] = local
628 for (int specNdx = 0; specNdx < DE_LENGTH_OF_ARRAY(specs); specNdx++)
630 const FboSpec& baseSpec = specs[specNdx][0];
631 const FboSpec& altSpec = specs[specNdx][1];
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DLocalList.java534 * @param specs {@code non-null;} spec set representing the locals
536 public void snapshot(int address, RegisterSpecSet specs) { argument
538 System.err.printf("%04x snapshot %s\n", address, specs);
541 int sz = specs.getMaxSize();
546 RegisterSpec newSpec = filterSpec(specs.get(i));
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/
H A DFirstFitLocalCombiningAllocator.java241 for (ArrayList<RegisterSpec> specs : localVariables.values()) {
249 int sz = specs.size();
251 RegisterSpec ssaSpec = specs.get(i);
260 if (canMapRegs(specs, ropReg)) {
261 done = tryMapRegs(specs, ropReg, maxCategory, true);
275 * @param specs {@code non-null;} SSA registers to attempt to map
284 ArrayList<RegisterSpec> specs, int ropReg,
287 for (RegisterSpec spec : specs) {
572 * @param specs {@code non-null;} SSA registers to check
576 private boolean canMapRegs(ArrayList<RegisterSpec> specs, in argument
283 tryMapRegs( ArrayList<RegisterSpec> specs, int ropReg, int maxAllowedCategory, boolean markReserved) argument
[all...]
/external/icu/icu4c/source/i18n/
H A Dtridpars.cpp217 Specs* specs = parseFilterID(id, pos, TRUE); local
218 if (specs == NULL) {
224 SingleID* single = specsToID(specs, FORWARD);
226 single->filter = specs->filter;
228 delete specs;
689 * at any location between specs or delimiters, and is returned
812 TransliteratorIDParser::specsToID(const Specs* specs, int32_t dir) { argument
816 if (specs != NULL) {
819 if (specs->sawSource) {
820 buf.append(specs
850 specsToSpecialInverse(const Specs& specs, UErrorCode &status) argument
[all...]
/external/lldb/source/Plugins/ObjectContainer/BSD-Archive/
H A DObjectContainerBSDArchive.cpp514 lldb_private::ModuleSpecList &specs)
524 const size_t initial_count = specs.GetSize();
550 specs))
552 ModuleSpec &spec = specs.GetModuleSpecRefAtIndex (specs.GetSize() - 1);
563 const size_t end_count = specs.GetSize();
572 if (specs.GetModuleSpecAtIndex(i, module_spec))
509 GetModuleSpecifications(const lldb_private::FileSpec& file, lldb::DataBufferSP& data_sp, lldb::offset_t data_offset, lldb::offset_t file_offset, lldb::offset_t file_size, lldb_private::ModuleSpecList &specs) argument
/external/deqp/modules/gles2/functional/
H A Des2fBufferWriteTests.cpp224 RecreateBufferDataStoreCase (Context& context, const char* name, const char* desc, const DataStoreSpec* specs, int numSpecs, VerifyType verify) argument
226 , m_specs (specs, specs+numSpecs)
619 std::vector<DataStoreSpec> specs; \
620 DataStoreSpecVecBuilder builder(specs); \
622 recreateStoreGroup->addChild(new RecreateBufferDataStoreCase(m_context, #NAME, DESC, &specs[0], (int)specs.size(), VERIFY_AS_VERTEX_ARRAY)); \
671 vector<DataStoreSpec> specs(numUploadsPerCase);
673 for (vector<DataStoreSpec>::iterator spec = specs.begin(); spec != specs
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fBufferWriteTests.cpp224 RecreateBufferDataStoreCase (Context& context, const char* name, const char* desc, const DataStoreSpec* specs, int numSpecs, VerifyType verify) argument
226 , m_specs (specs, specs+numSpecs)
611 std::vector<DataStoreSpec> specs; \
612 DataStoreSpecVecBuilder builder(specs); \
614 recreateStoreGroup->addChild(new RecreateBufferDataStoreCase(m_context, #NAME, DESC, &specs[0], (int)specs.size(), VERIFY_AS_VERTEX_ARRAY)); \
671 vector<DataStoreSpec> specs(numUploadsPerCase);
673 for (vector<DataStoreSpec>::iterator spec = specs.begin(); spec != specs
[all...]
/external/emma/core/java12/com/vladium/emma/rt/
H A DAppRunner.java142 * @param specs [null is equivalent to no filtering (everything is included)]
144 public synchronized final void setInclExclFilter (final String [] specs) argument
146 if (specs == null)
149 m_coverageFilter = IInclExclFilter.Factory.create (specs);
/external/libselinux/src/
H A Dlabel_file.c686 spec_t **specs; local
696 specs = calloc(n+1, sizeof(spec_t *));
697 if (!specs)
699 specs[0] = lookup_common(rec, key, type, false);
700 if (specs[0]) {
701 if (!specs[0]->hasMetaChars) {
703 lr = &specs[0]->lr;
707 prefix_len = specs[0]->prefix_len;
710 specs[i] = lookup_common(rec, aliases[i-1], type, false);
711 if (specs[
[all...]
/external/lldb/source/Host/linux/
H A DHost.cpp336 ModuleSpecList specs; local
338 const size_t num_specs = ObjectFile::GetModuleSpecifications (filespec, 0, 0, specs);
345 if (specs.GetModuleSpecAtIndex (0, module_spec) && module_spec.GetArchitecture().IsValid())
/external/chromium_org/sync/syncable/
H A Ddirectory_unittest.cc241 sync_pb::EntitySpecifics specs; local
243 AddDefaultFieldValue(BOOKMARKS, &specs);
247 AddDefaultFieldValue(PREFERENCES, &specs);
250 e.PutSpecifics(specs);
251 e.PutServerSpecifics(specs);

Completed in 6988 milliseconds

12