Home
last modified time | relevance | path

Searched refs:selectors (Results 1 – 25 of 71) sorted by relevance

123

/external/pdfium/xfa/fde/css/
Dcfde_cssstylesheet.cpp63 std::vector<std::unique_ptr<CFDE_CSSSelector>> selectors; in LoadStyleRule() local
75 selectors.push_back(std::move(pSelector)); in LoadStyleRule()
100 if (!pStyleRule && !selectors.empty()) { in LoadStyleRule()
103 pStyleRule->SetSelector(&selectors); in LoadStyleRule()
Dcfde_cssstylesheet_unittest.cpp31 const std::vector<CFX_WideString>& selectors, in LoadAndVerifyDecl() argument
39 EXPECT_EQ(selectors.size(), style->CountSelectorLists()); in LoadAndVerifyDecl()
41 for (size_t i = 0; i < selectors.size(); i++) { in LoadAndVerifyDecl()
42 uint32_t hash = FX_HashCode_GetW(selectors[i].AsStringC(), true); in LoadAndVerifyDecl()
/external/mesa3d/src/gallium/drivers/radeonsi/
Dsi_perfcounter.c79 unsigned selectors; member
407 unsigned count, unsigned *selectors, in si_pc_get_size() argument
468 unsigned count, unsigned *selectors) in si_pc_emit_select() argument
492 radeon_emit(cs, selectors[idx] | regs->select_or); in si_pc_emit_select()
505 radeon_emit(cs, selectors[idx] | regs->select_or); in si_pc_emit_select()
516 radeon_emit(cs, selectors[idx] | regs->select_or); in si_pc_emit_select()
526 radeon_set_uconfig_reg(cs, *reg++, selectors[idx] | regs->select_or); in si_pc_emit_select()
543 radeon_emit(cs, selectors[idx] | regs->select_or); in si_pc_emit_select()
554 radeon_emit(cs, selectors[idx - 1] | regs->select_or); in si_pc_emit_select()
608 unsigned count, unsigned *selectors, in si_pc_emit_read() argument
[all …]
/external/mesa3d/src/gallium/drivers/radeon/
Dr600_query.h240 unsigned count, unsigned *selectors,
248 unsigned count, unsigned *selectors);
255 unsigned count, unsigned *selectors,
279 unsigned counters, unsigned selectors,
Dr600_perfcounter.c82 unsigned selectors[R600_QUERY_MAX_COUNTERS]; member
148 pc->emit_select(ctx, block, group->num_counters, group->selectors); in r600_pc_query_emit_start()
181 group->num_counters, group->selectors, in r600_pc_query_emit_stop()
350 group->selectors[group->num_counters] = sub_index; in r600_create_batch_query()
376 pc->get_size(block, group->num_counters, group->selectors, in r600_create_batch_query()
406 if (group->selectors[j] == sub_index) in r600_create_batch_query()
605 unsigned counters, unsigned selectors, in r600_perfcounters_add_block() argument
615 block->num_selectors = selectors; in r600_perfcounters_add_block()
/external/fec/
Dcpu_mode_ppc.c26 int selectors[2] = { CTL_HW, HW_VECTORUNIT }; in find_cpu_mode() local
29 int error = sysctl(selectors, 2, &hasVectorUnit, &length, NULL, 0); in find_cpu_mode()
Dencode_rs_8.c39 int selectors[2] = { CTL_HW, HW_VECTORUNIT }; in encode_rs_8()
42 int error = sysctl(selectors, 2, &hasVectorUnit, &length, NULL, 0); in encode_rs_8()
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
DSnippet.java145 public static Snippet memberSelectSnippet(Iterable<? extends Object> selectors) {
146 return format(Joiner.on('.').join(Collections.nCopies(Iterables.size(selectors), "%s")),
147 selectors);
/external/linux-kselftest/tools/testing/selftests/x86/
Dsigreturn.c311 struct selectors { struct
317 struct selectors *sels = (void *)&ctx->uc_mcontext.gregs[REG_CSGSFS]; in ssptr() argument
323 struct selectors *sels = (void *)&ctx->uc_mcontext.gregs[REG_CSGSFS]; in csptr()
636 struct selectors *req_sels = in test_valid_sigreturn()
638 struct selectors *res_sels = in test_valid_sigreturn()
/external/testng/src/main/java/org/testng/xml/dom/
DXDom.java295 List<XmlMethodSelector> selectors = s.getMethodSelectors(); in test() local
296 Assert.assertEquals(selectors.size(), 2); in test()
297 XmlMethodSelector s1 = selectors.get(0); in test()
300 XmlMethodSelector s2 = selectors.get(1); in test()
/external/testng/src/main/java/org/testng/xml/
DXmlTest.java437 List<XmlMethodSelector> selectors = getMethodSelectors(); in setBeanShellExpression() local
438 if (selectors.size() > 0) { in setBeanShellExpression()
439 selectors.get(0).setExpression(expression); in setBeanShellExpression()
449 List<XmlMethodSelector> selectors = getMethodSelectors(); in getExpression() local
450 if (selectors.size() > 0) { in getExpression()
451 return selectors.get(0).getExpression(); in getExpression()
/external/fmtlib/doc/bootstrap/mixins/
Dtable-row.less4 // Exact selectors below required to override `.table-striped` and prevent
/external/valgrind/memcheck/tests/
Dvarinfo6.stdout.exp9 bytes: mapping 19, selectors 66, code lengths 134, codes 6465
Dvcpu_bz2.stdout.exp9 bytes: mapping 19, selectors 66, code lengths 134, codes 6465
Dorigin5-bz2.stdout.exp10 bytes: mapping 19, selectors 66, code lengths 134, codes 6465
/external/ant-glob/
DREADME.txt17 org.apache.tools.ant.types.selectors.SelectorUtils
/external/python/cpython2/Modules/
Ditertoolsmodule.c2811 PyObject *selectors; member
2820 PyObject *data=NULL, *selectors=NULL; in compress_new() local
2830 selectors = PyObject_GetIter(seq2); in compress_new()
2831 if (selectors == NULL) in compress_new()
2839 lz->selectors = selectors; in compress_new()
2844 Py_XDECREF(selectors); in compress_new()
2853 Py_XDECREF(lz->selectors); in compress_dealloc()
2861 Py_VISIT(lz->selectors); in compress_traverse()
2868 PyObject *data = lz->data, *selectors = lz->selectors; in compress_next() local
2871 PyObject *(*selectornext)(PyObject *) = *Py_TYPE(selectors)->tp_iternext; in compress_next()
[all …]
/external/toybox/toys/other/
Dbzcat.c95 char selectors[32768]; // nSelectors=15 bits member
220 bd->mtfSymbol[0] = bd->selectors[ii] = uc; in read_block_header()
353 hufGroup = bd->groups + bd->selectors[selector++]; in read_huffman_data()
/external/valgrind/exp-sgcheck/tests/
Dhackedbz2.stdout.exp9 bytes: mapping 19, selectors 66, code lengths 134, codes 6465
/external/iptables/extensions/
Dlibxt_HMARK.man21 meaning the usage of the conntrack tuple instead of the packet selectors.
/external/clang/test/Analysis/
DMissingDealloc.m112 // Don't warn about iVars that are selectors.
/external/valgrind/docs/internals/
Dt-chaining-notes.txt74 instruction selectors must use one of 3 different kinds of
155 a back edge in the control flow graph. Insn selectors are
/external/python/cpython2/Doc/library/
Ditertools.rst52 :func:`compress` data, selectors (d[0] if s[0]), (d[1] if s[1]), ... …
217 .. function:: compress(data, selectors)
220 have a corresponding element in *selectors* that evaluates to ``True``.
221 Stops when either the *data* or *selectors* iterables has been exhausted.
224 def compress(data, selectors):
226 return (d for d, s in izip(data, selectors) if s)
/external/fmtlib/doc/bootstrap/
Dtables.less154 // Exact selectors below required to override `.table-striped` and prevent
/external/ant-glob/src/org/apache/tools/ant/types/selectors/
DSelectorUtils.java19 package org.apache.tools.ant.types.selectors;

123