Searched defs:comp (Results 1 - 25 of 210) sorted by relevance

123456789

/external/oprofile/libutil++/
H A Dpath_filter.cpp27 string comp = op_dirname(str); local
28 while (!comp.empty() && comp != "/") {
30 fnmatcher(op_basename(comp)));
35 if (comp == op_dirname(comp))
37 comp = op_dirname(comp);
/external/libcxx/test/algorithms/alg.sorting/alg.min.max/
H A Dminmax_element_comp.pass.cpp15 // minmax_element(Iter first, Iter last, Compare comp);
28 Compare comp; local
29 std::pair<Iter, Iter> p = std::minmax_element(first, last, comp);
34 assert(!comp(*j, *p.first));
35 assert(!comp(*p.second, *j));
74 Compare comp; local
75 std::pair<Iter, Iter> p = std::minmax_element(Iter(a), Iter(a+N), comp);
/external/libcxx/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/
H A Dctor_alloc.pass.cpp29 test(const value_compare& comp, const test_allocator<int>& a) argument
30 : base(comp, c, a) {}
31 test(const value_compare& comp, const container_type& c, argument
32 const test_allocator<int>& a) : base(comp, c, a) {}
34 test(const value_compare& comp, container_type&& c, argument
35 const test_allocator<int>& a) : base(comp, std::move(c), a) {}
H A Dctor_comp_alloc.pass.cpp13 // priority_queue(const Compare& comp, const Alloc& a);
29 test(const value_compare& comp, const test_allocator<int>& a) argument
30 : base(comp, a) {}
31 test(const value_compare& comp, const container_type& c, argument
32 const test_allocator<int>& a) : base(comp, c, a) {}
34 test(const value_compare& comp, container_type&& c, argument
35 const test_allocator<int>& a) : base(comp, std::move(c), a) {}
H A Dctor_comp_cont_alloc.pass.cpp13 // priority_queue(const Compare& comp, const container_type& c,
40 test(const value_compare& comp, const test_allocator<int>& a) argument
41 : base(comp, a) {}
42 test(const value_compare& comp, const container_type& c, argument
43 const test_allocator<int>& a) : base(comp, c, a) {}
45 test(const value_compare& comp, container_type&& c, argument
46 const test_allocator<int>& a) : base(comp, std::move(c), a) {}
H A Dctor_comp_rcont_alloc.pass.cpp13 // priority_queue(const Compare& comp, container_type&& c,
40 test(const value_compare& comp, const test_allocator<int>& a) argument
41 : base(comp, a) {}
42 test(const value_compare& comp, const container_type& c, argument
43 const test_allocator<int>& a) : base(comp, c, a) {}
45 test(const value_compare& comp, container_type&& c, argument
46 const test_allocator<int>& a) : base(comp, std::move(c), a) {}
H A Dctor_copy_alloc.pass.cpp39 test(const value_compare& comp, const test_allocator<int>& a) argument
40 : base(comp, c, a) {}
41 test(const value_compare& comp, const container_type& c, argument
42 const test_allocator<int>& a) : base(comp, c, a) {}
H A Dctor_move_alloc.pass.cpp43 test(const value_compare& comp, const test_allocator<int>& a) argument
44 : base(comp, c, a) {}
45 test(const value_compare& comp, const container_type& c, argument
46 const test_allocator<int>& a) : base(comp, c, a) {}
47 test(const value_compare& comp, container_type&& c, argument
48 const test_allocator<int>& a) : base(comp, std::move(c), a) {}
/external/openssl/crypto/stack/
H A Dstack.h73 int (*comp)(const void *, const void *); member in struct:stack_st
/external/openssl/include/openssl/
H A Dstack.h73 int (*comp)(const void *, const void *); member in struct:stack_st
/external/openssl/ssl/
H A Dssl_txt.c217 SSL_COMP *comp = NULL; local
219 ssl_cipher_get_evp(x,NULL,NULL,NULL,NULL,&comp);
220 if (comp == NULL)
226 if (BIO_printf(bp,"\n Compression: %d (%s)", comp->id,comp->method->name) <= 0) goto err;
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
H A DAbstractInputEditor.java46 protected JComponent comp; field in class:AbstractInputEditor
47 public JComponent getControl() { return comp; }
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Dstack.h102 * order, based on |comp|. */
107 /* comp is an optional comparision function. */
108 stack_cmp_func comp; member in struct:stack_st
208 OPENSSL_EXPORT _STACK *sk_new(stack_cmp_func comp);
287 OPENSSL_EXPORT stack_cmp_func sk_set_cmp_func(_STACK *sk, stack_cmp_func comp);
H A Dlhash.h144 lhash_cmp_func comp; member in struct:lhash_st
148 /* lh_new returns a new, empty hash table or NULL on error. If |comp| is NULL,
151 OPENSSL_EXPORT _LHASH *lh_new(lhash_hash_func hash, lhash_cmp_func comp);
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Darcsum.h75 ArcSumCompare<A> comp; local
76 sort(arcs.begin(), arcs.end(), comp);
/external/icu/icu4c/source/layout/
H A DLigatureSubstSubtables.cpp32 le_uint16 comp; local
34 for (comp = 0; comp < compCount; comp += 1) {
39 if (LE_GET_GLYPH(glyphIterator->getCurrGlyphID()) != SWAPW(ligTable->componentArray[comp])) {
44 if (comp == compCount && (filter == NULL || filter->accept(LE_SET_GLYPH(glyph, ligGlyph)))) {
48 while (comp > 0) {
52 comp -= 1;
/external/qemu/android/base/
H A DString_unittest.cpp224 const Comparison& comp = kComparisons[n]; local
225 String s(comp.s1);
226 EXPECT_EQ(comp.expected, s.compare(comp.s2))
227 << "Comparing '" << comp.s1 << "' with '"
228 << comp.s2 << "'";
234 const Comparison& comp = kComparisons[n]; local
235 String s(comp.s1);
236 size_t len2 = ::strlen(comp.s2);
237 EXPECT_EQ(comp
246 const Comparison& comp = kComparisons[n]; local
257 const Comparison& comp = kComparisons[n]; local
268 const Comparison& comp = kComparisons[n]; local
278 const Comparison& comp = kComparisons[n]; local
290 const Comparison& comp = kComparisons[n]; local
301 const Comparison& comp = kComparisons[n]; local
312 const Comparison& comp = kComparisons[n]; local
322 const Comparison& comp = kComparisons[n]; local
333 const Comparison& comp = kComparisons[n]; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXSLTUnicodeSort.cpp49 xsltStyleItemSortPtr comp; local
51 xsltStylePreCompPtr comp;
64 comp = static_cast<xsltStylePreComp*>(sorts[0]->psvi);
65 if (!comp)
73 comp = static_cast<xsltStylePreComp*>(sorts[j]->psvi);
75 if (!comp->stype && comp->has_stype) {
76 comp->stype = xsltEvalAttrValueTemplate(ctxt, sorts[j], toXMLChar("data-type"), XSLT_NAMESPACE);
77 if (comp->stype) {
79 if (xmlStrEqual(comp
[all...]
/external/chromium_org/third_party/libxml/src/
H A DtestXPath.c95 xmlXPathCompExprPtr comp; local
97 comp = xmlXPathCompile(BAD_CAST str);
98 if (comp != NULL) {
100 xmlXPathDebugDumpCompExpr(stdout, comp, 0);
102 res = xmlXPathCompiledEval(comp, ctxt);
103 xmlXPathFreeCompExpr(comp);
/external/chromium_org/third_party/libxslt/libexslt/
H A Ddynamic.c102 xmlXPathCompExprPtr comp = NULL; local
126 if (str == NULL || !xmlStrlen(str) || !(comp = xmlXPathCompile(str))) {
175 subResult = xmlXPathCompiledEval(comp, ctxt->context);
261 if (comp != NULL)
262 xmlXPathFreeCompExpr(comp);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_code.c147 unsigned comp; local
148 for(comp = 0; comp < c->Constants[index].Size; ++comp) {
149 if (c->Constants[index].u.Immediate[comp] == data) {
150 *swizzle = RC_MAKE_SWIZZLE_SMEAR(comp);
161 unsigned comp = c->Constants[free_index].Size++; local
162 c->Constants[free_index].u.Immediate[comp] = data;
163 *swizzle = RC_MAKE_SWIZZLE_SMEAR(comp);
/external/chromium_org/v8/test/webkit/fast/js/kde/
H A DArray.js134 function comp(a, b) { function
144 shouldBe("var a = ['aa', 'b', 'cccc', 'ddd']; String(a.sort(comp))", "'b,aa,ddd,cccc'");
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_code.c147 unsigned comp; local
148 for(comp = 0; comp < c->Constants[index].Size; ++comp) {
149 if (c->Constants[index].u.Immediate[comp] == data) {
150 *swizzle = RC_MAKE_SWIZZLE_SMEAR(comp);
161 unsigned comp = c->Constants[free_index].Size++; local
162 c->Constants[free_index].u.Immediate[comp] = data;
163 *swizzle = RC_MAKE_SWIZZLE_SMEAR(comp);
/external/bluetooth/bluedroid/stack/btm/
H A Dbtm_ble_addr.c245 UINT8 comp[3]; local
248 comp[0] = p_mgnt_cb->random_bda[5];
249 comp[1] = p_mgnt_cb->random_bda[4];
250 comp[2] = p_mgnt_cb->random_bda[3];
254 if (!memcmp(p->param_buf, &comp[0], 3))
/external/chromium_org/chrome/browser/sync_file_system/drive_backend/
H A Dleveldb_wrapper.cc58 int comp = db_iterator_->key().compare(map_iterator_->first); local
59 if (comp <= 0)
61 if (comp >= 0)

Completed in 1043 milliseconds

123456789