HomeSort by relevance Sort by last modified time
    Searched refs:comp (Results 26 - 50 of 600) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/xml/
XSLTUnicodeSort.cpp 43 xsltStyleItemSortPtr comp; local
45 xsltStylePreCompPtr comp;
64 comp = static_cast<xsltStylePreComp*>(sorts[0]->psvi);
65 if (comp == NULL)
73 comp = static_cast<xsltStylePreComp*>(sorts[j]->psvi);
75 if ((comp->stype == NULL) && (comp->has_stype != 0)) {
76 comp->stype =
80 if (comp->stype != NULL) {
82 if (xmlStrEqual(comp->stype, (const xmlChar *) "text")
    [all...]
  /frameworks/base/services/java/com/android/server/
RecognitionManagerService.java 53 ComponentName comp = getCurRecognizer(userHandle); local
54 if (comp == null) {
56 comp = findAvailRecognizer(null, userHandle);
57 if (comp != null) {
58 setCurRecognizer(comp, userHandle);
64 int change = isPackageDisappearing(comp.getPackageName());
69 } else if (isPackageModified(comp.getPackageName())) {
70 setCurRecognizer(findAvailRecognizer(comp.getPackageName(), userHandle),
91 ComponentName comp = getCurRecognizer(userHandle); local
93 if (comp != null)
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
combined_decode.cpp 360 int comp; local
375 for (comp = 0; comp < 6; comp++)
377 (*DC)[comp] = mid_gray;
540 int comp; local
557 /* Decode each 8-by-8 blocks. comp 0 ~ 3 are luminance blocks, 4 ~ 5 */
588 for (comp = 0; comp < 6; comp++
    [all...]
idct.h 59 void idctrow0_intra(int16 *blk, PIXEL *comp, int width);
60 void idctrow1_intra(int16 *blk, PIXEL *comp, int width);
61 void idctrow2_intra(int16 *blk, PIXEL *comp, int width);
62 void idctrow3_intra(int16 *blk, PIXEL *comp, int width);
63 void idctrow4_intra(int16 *blk, PIXEL *comp, int width);
datapart_decode.cpp 525 int comp; local
552 for (comp = 0; comp < 6; comp++)
554 status = PV_DecodePredictedIntraDC(comp, stream, (*DC + comp)); /* 03/01/01 */
560 for (comp = 0; comp < 6; comp++)
562 (*DC)[comp] = 0; /* 04/26/01 needed for switched case*
581 int comp; local
633 int comp; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
r300_fragprog_swizzle.c 72 int i, comp; local
76 for(comp = 0; comp < 3; ++comp) {
77 unsigned int swz = GET_SWZ(swizzle, comp);
80 if (swz != GET_SWZ(sd->hash, comp))
83 if (comp == 3)
157 int i, comp; local
163 for(comp = 0; comp < 3; ++comp)
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
r300_fragprog_swizzle.c 72 int i, comp; local
76 for(comp = 0; comp < 3; ++comp) {
77 unsigned int swz = GET_SWZ(swizzle, comp);
80 if (swz != GET_SWZ(sd->hash, comp))
83 if (comp == 3)
157 int i, comp; local
163 for(comp = 0; comp < 3; ++comp)
    [all...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
AbstractInputEditor.java 46 protected JComponent comp; field in class:AbstractInputEditor
47 public JComponent getControl() { return comp; }
  /external/jdiff/src/jdiff/
ClassAPI.java 66 int comp = name_.compareTo(oClassAPI.name_); local
67 if (comp != 0)
68 return comp;
73 comp = modifiers_.compareTo(oClassAPI.modifiers_);
74 if (comp != 0)
75 return comp;
Modifiers.java 46 int comp = visibility.compareTo(oModifiers.visibility); local
47 if (comp != 0)
48 return comp;
92 int comp = visibility.compareTo(newModifiers.visibility); local
93 if (comp != 0) {
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
SortUtil.java 76 public static void gsort(Object[] a, Comparator comp) {
82 if ( comp.compare(a[pos], a[pos-1]) >= 0 ){
108 // if (p == 0 || comp.compare(a[p], a[pm1]) >= 0) {
175 public static void qsort(Object[] a, Comparator comp) {
176 qsort(a, 0, a.length - 1, comp);
186 public static void qsort(Object[] a, int lo0, int hi0, Comparator comp) {
196 if (comp.compare(a[hi0], a[lo0]) < 0) {
214 while (comp.compare(a[++lo], mid) < 0);
218 while (comp.compare(mid, a[--hi]) < 0);
233 qsort(a, lo0, lo - 1, comp);
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/
ctor_alloc.pass.cpp 29 test(const value_compare& comp, const test_allocator<int>& a)
30 : base(comp, c, a) {}
31 test(const value_compare& comp, const container_type& c,
32 const test_allocator<int>& a) : base(comp, c, a) {}
34 test(const value_compare& comp, container_type&& c,
35 const test_allocator<int>& a) : base(comp, std::move(c), a) {}
ctor_comp_alloc.pass.cpp 13 // priority_queue(const Compare& comp, const Alloc& a);
29 test(const value_compare& comp, const test_allocator<int>& a)
30 : base(comp, a) {}
31 test(const value_compare& comp, const container_type& c,
32 const test_allocator<int>& a) : base(comp, c, a) {}
34 test(const value_compare& comp, container_type&& c,
35 const test_allocator<int>& a) : base(comp, std::move(c), a) {}
ctor_comp_cont_alloc.pass.cpp 13 // priority_queue(const Compare& comp, const container_type& c,
40 test(const value_compare& comp, const test_allocator<int>& a)
41 : base(comp, a) {}
42 test(const value_compare& comp, const container_type& c,
43 const test_allocator<int>& a) : base(comp, c, a) {}
45 test(const value_compare& comp, container_type&& c,
46 const test_allocator<int>& a) : base(comp, std::move(c), a) {}
ctor_comp_rcont_alloc.pass.cpp 13 // priority_queue(const Compare& comp, container_type&& c,
40 test(const value_compare& comp, const test_allocator<int>& a)
41 : base(comp, a) {}
42 test(const value_compare& comp, const container_type& c,
43 const test_allocator<int>& a) : base(comp, c, a) {}
45 test(const value_compare& comp, container_type&& c,
46 const test_allocator<int>& a) : base(comp, std::move(c), a) {}
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
findhalfpel.cpp 187 Int k, comp; local
207 for (comp = 0; comp < 4; comp++)
215 imin = xpos + ((comp & 1) << 3) + (mot[comp+1].x >> 1);
216 jmin = ypos + ((comp & 2) << 2) + (mot[comp+1].y >> 1);
217 ilow = xpos + ((comp & 1) << 3) - range;
218 jlow = ypos + ((comp & 2) << 2) - range
    [all...]
  /external/opencv/cv/src/
cvcamshift.cpp 62 CvTermCriteria criteria, CvConnectedComp* comp )
72 if( comp )
73 comp->rect = windowIn;
136 if( comp )
138 comp->rect = cur_rect;
139 comp->area = (float)moments.m00;
179 CvConnectedComp comp; local
184 comp.rect = windowIn;
190 CV_CALL( itersUsed = cvMeanShift( mat, windowIn, criteria, &comp ));
191 windowIn = comp.rect
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/
ArrayEncodedSubValue.java 102 int comp = values.length - other.values.length; local
103 if (comp != 0) {
104 return comp;
108 comp = values[i].compareTo(other.values[i]);
109 if (comp != 0) {
110 return comp;
114 return comp;
AnnotationEncodedSubValue.java 119 int comp = annotationType.compareTo(other.annotationType); local
120 if (comp != 0) {
121 return comp;
124 comp = names.length - other.names.length;
125 if (comp != 0) {
126 return comp;
130 comp = names[i].compareTo(other.names[i]);
131 if (comp != 0) {
132 return comp;
135 comp = values[i].compareTo(other.values[i])
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xa/
xa_composite.c 216 xa_composite_check_accelerated(const struct xa_composite *comp)
219 struct xa_picture *src_pic = comp->src;
222 !xa_is_filter_accelerated(comp->mask)) {
236 if (comp->mask)
240 if (blend_for_op(&blend, comp->op, comp->src, comp->mask, comp->dst)) {
241 struct xa_picture *mask = comp->mask;
256 const struct xa_composite *comp)
511 const struct xa_composite *comp = ctx->comp; local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/xa/
xa_composite.c 216 xa_composite_check_accelerated(const struct xa_composite *comp)
219 struct xa_picture *src_pic = comp->src;
222 !xa_is_filter_accelerated(comp->mask)) {
236 if (comp->mask)
240 if (blend_for_op(&blend, comp->op, comp->src, comp->mask, comp->dst)) {
241 struct xa_picture *mask = comp->mask;
256 const struct xa_composite *comp)
511 const struct xa_composite *comp = ctx->comp; local
    [all...]
  /external/ppp/pppd/include/net/
vjcompress.h 133 extern void vj_compress_init __P((struct vjcompress *comp, int max_state));
135 struct vjcompress *comp, int compress_cid_flag,
137 extern void vj_uncompress_err __P((struct vjcompress *comp));
139 struct vjcompress *comp));
141 struct vjcompress *comp, u_char **hdrp,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
set_operations.h 74 symmetric_difference_func(Comparator c) : comp(c) {}
76 Comparator comp; member in struct:__gnu_parallel::symmetric_difference_func
85 if (comp(*a, *c))
91 else if (comp(*c, *a))
114 if (comp(*a, *c))
119 else if (comp(*c, *a))
153 difference_func(Comparator c) : comp(c) {}
155 Comparator comp; member in struct:__gnu_parallel::difference_func
163 if (comp(*a, *c))
169 else if (comp(*c, *a)
223 Comparator comp; member in struct:__gnu_parallel::intersection_func
287 Comparator comp; member in struct:__gnu_parallel::union_func
    [all...]
  /external/stlport/stlport/stl/
_queue.h 168 _Compare comp; member in class:priority_queue
171 explicit priority_queue(const _Compare& __x) : c(), comp(__x) {}
173 : c(__s), comp(__x)
174 { make_heap(c.begin(), c.end(), comp); }
179 comp(_STLP_PRIV _AsMoveSource(src.get().comp)) {}
185 : c(__first, __last) { make_heap(c.begin(), c.end(), comp); }
190 : c(__first, __last), comp(__x)
191 { make_heap(c.begin(), c.end(), comp); }
196 : c(__s), comp(__x
262 #undef comp macro
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_queue.h 168 _Compare comp; member in class:priority_queue
171 explicit priority_queue(const _Compare& __x) : c(), comp(__x) {}
173 : c(__s), comp(__x)
174 { make_heap(c.begin(), c.end(), comp); }
179 comp(_STLP_PRIV _AsMoveSource(src.get().comp)) {}
185 : c(__first, __last) { make_heap(c.begin(), c.end(), comp); }
190 : c(__first, __last), comp(__x)
191 { make_heap(c.begin(), c.end(), comp); }
196 : c(__s), comp(__x
262 #undef comp macro
    [all...]

Completed in 1125 milliseconds

12 3 4 5 6 7 8 91011>>