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

1 2 3 4 5 6 7 8 91011>>

  /external/oprofile/libutil++/
path_filter.cpp 27 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/chromium_org/third_party/openssl/openssl/ssl/
ssl_txt.c 217 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/openssl/ssl/
ssl_txt.c 217 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;
  /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/chromium_org/third_party/openssl/openssl/crypto/stack/
stack.h 73 int (*comp)(const void *, const void *); member in struct:stack_st
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
stack.h 73 int (*comp)(const void *, const void *); member in struct:stack_st
  /external/jdiff/src/jdiff/
ConstructorAPI.java 44 int comp = type_.compareTo(constructorAPI.type_); local
45 if (comp != 0)
46 return comp;
47 comp = exceptions_.compareTo(constructorAPI.exceptions_);
48 if (comp != 0)
49 return comp;
50 comp = modifiers_.compareTo(constructorAPI.modifiers_);
51 if (comp != 0)
52 return comp;
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) {
  /external/openssl/crypto/stack/
stack.h 73 int (*comp)(const void *, const void *); member in struct:stack_st
  /external/openssl/include/openssl/
stack.h 73 int (*comp)(const void *, const void *); member in struct:stack_st
  /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);
  /external/chromium_org/third_party/mesa/src/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/icu4c/layout/
LigatureSubstSubtables.cpp 32 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/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/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;
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;
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
arcsum.h 75 ArcSumCompare<A> comp; local
76 sort(arcs.begin(), arcs.end(), comp);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
multiseq_selection.h 59 Comparator& comp; member in class:__gnu_parallel::lexicographic
62 lexicographic(Comparator& _comp) : comp(_comp) { }
68 if (comp(p1.first, p2.first))
71 if (comp(p2.first, p1.first))
84 Comparator& comp; member in class:__gnu_parallel::lexicographic_reverse
87 lexicographic_reverse(Comparator& _comp) : comp(_comp) { }
93 if (comp(p2.first, p1.first))
96 if (comp(p1.first, p2.first))
118 * @param comp The ordering functor, defaults to std::less<T>.
126 Comparator comp = std::less
    [all...]
  /external/chromium_org/third_party/libxslt/libexslt/
dynamic.c 102 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);
  /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;

Completed in 2385 milliseconds

1 2 3 4 5 6 7 8 91011>>