HomeSort by relevance Sort by last modified time
    Searched refs:comp (Results 51 - 75 of 403) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/libxslt/libxslt/
pattern.c 90 xmlXPathCompExprPtr comp; member in struct:_xsltStepOp
126 xsltCompMatchPtr comp; /* the result */ member in struct:_xsltParserContext
171 * @comp: an XSLT comp
173 * Free up the memory allocated by @comp
176 xsltFreeCompMatch(xsltCompMatchPtr comp) {
180 if (comp == NULL)
182 if (comp->pattern != NULL)
183 xmlFree((xmlChar *)comp->pattern);
184 if (comp->nsList != NULL
230 xsltCompMatchPtr comp = payload; local
    [all...]
transform.h 94 xsltStylePreCompPtr comp);
99 xsltStylePreCompPtr comp);
104 xsltStylePreCompPtr comp);
109 xsltStylePreCompPtr comp);
114 xsltStylePreCompPtr comp);
119 xsltStylePreCompPtr comp);
124 xsltStylePreCompPtr comp);
129 xsltStylePreCompPtr comp);
134 xsltStylePreCompPtr comp);
139 xsltStylePreCompPtr comp);
    [all...]
templates.h 25 xmlXPathCompExprPtr comp,
47 xmlXPathCompExprPtr comp);
50 xmlXPathCompExprPtr comp,
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
stl_queue.h 382 _Compare comp; member in class:priority_queue
392 : c(__s), comp(__x)
393 { std::make_heap(c.begin(), c.end(), comp); }
398 : c(__s), comp(__x)
399 { std::make_heap(c.begin(), c.end(), comp); }
404 : c(std::move(__s)), comp(__x)
405 { std::make_heap(c.begin(), c.end(), comp); }
428 : c(__s), comp(__x)
432 std::make_heap(c.begin(), c.end(), comp);
439 : c(__s), comp(__x
    [all...]
  /external/compiler-rt/BlocksRuntime/tests/
rettypepromotion.c 25 void sortWithBlock(long (^comp)(void *arg1, void *arg2)) {
  /frameworks/support/v4/java/android/support/v4/content/
WakefulBroadcastReceiver.java 89 ComponentName comp = context.startService(intent); local
90 if (comp == null) {
96 "wake:" + comp.flattenToShortString());
100 return comp;
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/container.adaptors/priority.queue/priqueue.cons.alloc/
ctor_copy_alloc.pass.cpp 39 test(const value_compare& comp, const test_allocator<int>& a)
40 : base(comp, c, a) {}
41 test(const value_compare& comp, const container_type& c,
42 const test_allocator<int>& a) : base(comp, c, a) {}
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
AnnotationSetRefList.java 116 int comp = annotationSets.length - o.annotationSets.length; local
117 if (comp != 0) {
118 return comp;
122 comp = annotationSets[i].compareTo(o.annotationSets[i]);
123 if (comp != 0) {
124 return comp;
128 return comp;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
balanced_quicksort.h 94 * @param comp Comparator.
101 Comparator comp, thread_index_t num_threads)
111 end - 1, comp);
118 (!comp(*pivot_pos, *begin) && !comp(*(begin + n / 2), *pivot_pos))
119 || (!comp(*pivot_pos, *begin) && !comp(*(end - 1), *pivot_pos))
120 || (!comp(*pivot_pos, *(begin + n / 2)) && !comp(*begin, *pivot_pos))
121 || (!comp(*pivot_pos, *(begin + n / 2)) && !comp(*(end - 1), *pivot_pos)
    [all...]
merge.h 51 * @param comp Comparator.
61 _DifferenceTp max_length, Comparator comp)
67 if (comp(*begin2, *begin1))
100 * @param comp Comparator.
111 _DifferenceTp max_length, Comparator comp)
130 if (comp(element2, element1))
168 * @param comp Comparator.
177 Comparator comp)
182 max_length, comp);
193 * @param comp Comparator
    [all...]
quicksort.h 43 * @param comp Comparator.
53 Comparator comp, typename std::iterator_traits
78 __gnu_sequential::sort(samples, samples + num_samples, comp);
83 pred(comp, pivot);
95 * @param comp Comparator.
103 Comparator comp,
112 __gnu_sequential::sort(begin, end, comp);
131 parallel_sort_qs_divide(begin, end, comp, pivot_rank,
139 comp, num_threads_left);
142 comp, num_threads - num_threads_left)
    [all...]
multiway_merge.h 94 Comparator& comp; member in class:__gnu_parallel::guarded_iterator
100 * @param comp Comparator provided for associated overloaded
103 RandomAccessIterator end, Comparator& comp)
104 : current(begin), end(end), comp(comp)
151 return (bi1.comp)(*bi1, *bi2); //normal compare
167 return !(bi1.comp)(*bi2, *bi1); //normal compare
190 mutable Comparator& comp; member in class:__gnu_parallel::unguarded_iterator
196 * @param comp Unused, only for compatibility. */
198 RandomAccessIterator end, Comparator& comp)
    [all...]
  /external/webkit/Source/WebCore/bridge/
testqtbindings.cpp 110 Completion comp(interp->evaluate("", 0, code));
112 if (comp.complType() == Throw) {
114 JSValue* exVal = comp.value();
128 else if (comp.complType() == ReturnValue) {
129 char* msg = comp.value()->toString(interp->globalExec()).ascii();
  /external/libppp/src/
slcompress.c 84 sl_compress_init(struct slcompress *comp, int max_state)
87 register struct cstate *tstate = comp->tstate;
89 memset(comp, '\0', sizeof *comp);
96 comp->last_cs = &tstate[0];
97 comp->last_recv = 255;
98 comp->last_xmit = 255;
99 comp->flags = SLF_TOSS;
159 struct slcompress *comp,
163 register struct cstate *cs = comp->last_cs->cs_next
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
stl_queue.h 380 _Compare comp; member in class:priority_queue
390 : c(__s), comp(__x)
391 { std::make_heap(c.begin(), c.end(), comp); }
396 : c(__s), comp(__x)
397 { std::make_heap(c.begin(), c.end(), comp); }
402 : c(std::move(__s)), comp(__x)
403 { std::make_heap(c.begin(), c.end(), comp); }
426 : c(__s), comp(__x)
430 std::make_heap(c.begin(), c.end(), comp);
437 : c(__s), comp(__x
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/bits/
stl_queue.h 380 _Compare comp; member in class:priority_queue
390 : c(__s), comp(__x)
391 { std::make_heap(c.begin(), c.end(), comp); }
396 : c(__s), comp(__x)
397 { std::make_heap(c.begin(), c.end(), comp); }
402 : c(std::move(__s)), comp(__x)
403 { std::make_heap(c.begin(), c.end(), comp); }
426 : c(__s), comp(__x)
430 std::make_heap(c.begin(), c.end(), comp);
437 : c(__s), comp(__x
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/bits/
stl_queue.h 380 _Compare comp; member in class:priority_queue
390 : c(__s), comp(__x)
391 { std::make_heap(c.begin(), c.end(), comp); }
396 : c(__s), comp(__x)
397 { std::make_heap(c.begin(), c.end(), comp); }
402 : c(std::move(__s)), comp(__x)
403 { std::make_heap(c.begin(), c.end(), comp); }
426 : c(__s), comp(__x)
430 std::make_heap(c.begin(), c.end(), comp);
437 : c(__s), comp(__x
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
stl_queue.h 390 _Compare comp; member in class:priority_queue
400 : c(__s), comp(__x)
401 { std::make_heap(c.begin(), c.end(), comp); }
406 : c(__s), comp(__x)
407 { std::make_heap(c.begin(), c.end(), comp); }
412 : c(std::move(__s)), comp(__x)
413 { std::make_heap(c.begin(), c.end(), comp); }
436 : c(__s), comp(__x)
440 std::make_heap(c.begin(), c.end(), comp);
447 : c(__s), comp(__x
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_queue.h 390 _Compare comp; member in class:priority_queue
400 : c(__s), comp(__x)
401 { std::make_heap(c.begin(), c.end(), comp); }
406 : c(__s), comp(__x)
407 { std::make_heap(c.begin(), c.end(), comp); }
412 : c(std::move(__s)), comp(__x)
413 { std::make_heap(c.begin(), c.end(), comp); }
436 : c(__s), comp(__x)
440 std::make_heap(c.begin(), c.end(), comp);
447 : c(__s), comp(__x
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_queue.h 390 _Compare comp; member in class:priority_queue
400 : c(__s), comp(__x)
401 { std::make_heap(c.begin(), c.end(), comp); }
406 : c(__s), comp(__x)
407 { std::make_heap(c.begin(), c.end(), comp); }
412 : c(std::move(__s)), comp(__x)
413 { std::make_heap(c.begin(), c.end(), comp); }
436 : c(__s), comp(__x)
440 std::make_heap(c.begin(), c.end(), comp);
447 : c(__s), comp(__x
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/
stl_queue.h 390 _Compare comp; member in class:priority_queue
400 : c(__s), comp(__x)
401 { std::make_heap(c.begin(), c.end(), comp); }
406 : c(__s), comp(__x)
407 { std::make_heap(c.begin(), c.end(), comp); }
412 : c(std::move(__s)), comp(__x)
413 { std::make_heap(c.begin(), c.end(), comp); }
436 : c(__s), comp(__x)
440 std::make_heap(c.begin(), c.end(), comp);
447 : c(__s), comp(__x
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/
stl_queue.h 390 _Compare comp; member in class:priority_queue
400 : c(__s), comp(__x)
401 { std::make_heap(c.begin(), c.end(), comp); }
406 : c(__s), comp(__x)
407 { std::make_heap(c.begin(), c.end(), comp); }
412 : c(std::move(__s)), comp(__x)
413 { std::make_heap(c.begin(), c.end(), comp); }
436 : c(__s), comp(__x)
440 std::make_heap(c.begin(), c.end(), comp);
447 : c(__s), comp(__x
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/
EncodedValue.java 94 int comp = getValueType().compareTo(o.getValueType()); local
95 if (comp == 0) {
96 comp = compareValue(o);
98 return comp;
  /packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/
LiveWallpaperChange.java 53 ComponentName comp = (ComponentName)obj; local
59 queryIntent.setPackage(comp.getPackageName());
65 if (ri.serviceInfo.name.equals(comp.getClassName())) {
87 Log.w(TAG, "Not a live wallpaper: " + comp);
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
mp4dec_lib.h 85 void doDCACPrediction(VideoDecData *video, int comp, int16 *q_block,
89 void doDCACPrediction_I(VideoDecData *video, int comp, int16 *q_block);
99 void BlockIDCT_intra(MacroBlock *mblock, PIXEL *c_comp, int comp, int width_offset);
266 void Copy_MB_into_Vop(uint8 *comp, int yChan[][NCOEFF_BLOCK], int width);
267 void Copy_B_into_Vop(uint8 *comp, int cChan[], int width);
268 void PutSKIPPED_MB(uint8 *comp, uint8 *c_prev, int width);
269 void PutSKIPPED_B(uint8 *comp, uint8 *c_prev, int width);
314 int VlcDequantMpegIntraBlock(void *video, int comp, int switched,
316 int VlcDequantMpegInterBlock(void *video, int comp,
319 int VlcDequantH263IntraBlock(VideoDecData *video, int comp, int switched
    [all...]

Completed in 546 milliseconds

1 23 4 5 6 7 8 91011>>