HomeSort by relevance Sort by last modified time
    Searched defs:comp (Results 1 - 25 of 482) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.min.max/
minmax_element_comp.pass.cpp 15 // 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/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/
DiffOutput.java 45 int comp = pkgName_.compareTo(oDiffOutput.pkgName_); local
46 if (comp != 0)
47 return comp;
ParamAPI.java 31 int comp = name_.compareTo(oParamAPI.name_); local
32 if (comp != 0)
33 return comp;
34 comp = type_.compareTo(oParamAPI.type_);
35 if (comp != 0)
36 return comp;
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;
FieldAPI.java 72 int comp = name_.compareTo(oFieldAPI.name_); local
73 if (comp != 0)
74 return comp;
75 comp = type_.compareTo(oFieldAPI.type_);
76 if (comp != 0)
77 return comp;
87 comp = value_.compareTo(oFieldAPI.value_);
88 if (comp != 0)
89 return comp;
91 comp = modifiers_.compareTo(oFieldAPI.modifiers_)
    [all...]
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) {
ConstructorAPI.java 63 int comp = compareNullIsLeast(name_, constructorAPI.name_); local
64 if (comp != 0)
65 return comp;
66 comp = compareNullIsLeast(getSignature(), constructorAPI.getSignature());
67 if (comp != 0)
68 return comp;
69 comp = exceptions_.compareTo(constructorAPI.exceptions_);
70 if (comp != 0)
71 return comp;
72 comp = modifiers_.compareTo(constructorAPI.modifiers_)
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/arm/
maverick.s 317 comp: label
  /packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/
LiveWallpaperChange.java 47 ComponentName comp = (ComponentName)obj; local
53 queryIntent.setPackage(comp.getPackageName());
59 if (ri.serviceInfo.name.equals(comp.getClassName())) {
75 Log.w(TAG, "Not a live wallpaper: " + comp);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/random/
UnitSphereRandomVectorGenerator.java 69 final double comp = 2 * rand.nextDouble() - 1; local
70 v[i] = comp;
71 normSq += comp * comp;
  /external/boringssl/src/include/openssl/
stack.h 102 * order, based on |comp|. */
107 /* comp is an optional comparison function. */
108 stack_cmp_func comp; member in struct:stack_st
202 OPENSSL_EXPORT _STACK *sk_new(stack_cmp_func comp);
281 OPENSSL_EXPORT stack_cmp_func sk_set_cmp_func(_STACK *sk, stack_cmp_func comp);
lhash.h 142 lhash_cmp_func comp; member in struct:lhash_st
146 /* lh_new returns a new, empty hash table or NULL on error. If |comp| is NULL,
149 OPENSSL_EXPORT _LHASH *lh_new(lhash_hash_func hash, lhash_cmp_func comp);
  /external/curl/lib/
splay.c 44 long comp; local
52 comp = compare(i, t->key);
53 if(comp < 0) {
68 else if(comp > 0) {
  /external/icu/icu4c/source/layout/
LigatureSubstSubtables.cpp 35 le_uint16 comp; local
37 for (comp = 0; comp < compCount; comp += 1) {
42 if (LE_GET_GLYPH(glyphIterator->getCurrGlyphID()) != SWAPW(ligTable->componentArray[comp])) {
47 if (comp == compCount && (filter == NULL || filter->accept(LE_SET_GLYPH(glyph, ligGlyph)))) {
51 while (comp > 0) {
55 comp -= 1;
  /external/ims/rcs/rcsservice/src/com/android/service/ims/
LauncherUtils.java 54 ComponentName comp = new ComponentName(context.getPackageName(), local
56 ComponentName service = context.startService(new Intent().setComponent(comp));
58 logger.error("Could Not Start Service " + comp.toString());
  /external/libavc/test/encoder/
psnr.c 98 WORD32 comp; local
106 for(comp = 0; comp < 3; comp++)
108 df_psnr[comp] = 0;
109 pu1_buf1 = (UWORD8 *)ps_buf1->apv_bufs[comp];
110 pu1_buf2 = (UWORD8 *)ps_buf2->apv_bufs[comp];
111 wd = ps_buf1->au4_wd[comp];
112 ht = ps_buf1->au4_ht[comp];
113 strd1 = ps_buf1->au4_strd[comp];
    [all...]
recon.c 59 WORD32 comp; local
66 for(comp = 0; comp < num_comp; comp++)
68 wd = ps_raw_buf->au4_wd[comp];
69 ht = ps_raw_buf->au4_ht[comp];
70 pu1_buf = ps_raw_buf->apv_bufs[comp];
  /external/libcxx/test/std/algorithms/alg.sorting/alg.min.max/
minmax_element_comp.pass.cpp 15 // 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/mesa3d/src/gallium/drivers/r300/compiler/
radeon_code.c 147 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/drm_hwcomposer/
drmcomposition.cpp 110 DrmDisplayComposition *comp = GetDisplayComposition(display); local
111 ret = comp->Plan(compositor_map[display].squash_state(), &primary_planes_,
125 DrmDisplayComposition *comp = GetDisplayComposition(display); local
132 if (comp->type() == DRM_COMPOSITION_TYPE_EMPTY ||
133 comp->type() == DRM_COMPOSITION_TYPE_MODESET)
145 comp->AddPlaneDisable(*iter);
153 comp->AddPlaneDisable(*iter);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
ArrayComparator.java 49 Comparator comp = comparators[i]; local
50 if (comp == null) continue;
51 int result = comp.compare(arg0[i], arg1[i]);
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
ArrayComparator.java 48 Comparator comp = comparators[i]; local
49 if (comp == null) continue;
50 int result = comp.compare(arg0[i], arg1[i]);
  /frameworks/support/core-utils/java/android/support/v4/content/
WakefulBroadcastReceiver.java 91 ComponentName comp = context.startService(intent); local
92 if (comp == null) {
98 "wake:" + comp.flattenToShortString());
102 return comp;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
splay-tree.h 107 splay_tree_compare_fn comp; variable

Completed in 689 milliseconds

1 2 3 4 5 6 7 8 91011>>