/external/icu/icu4c/source/test/intltest/ |
colldata.cpp | 107 void CEList::add(uint32_t ce, UErrorCode &status) 132 ces[listSize++] = ce; 253 void put(uint32_t ce, UnicodeString *string, UErrorCode &status); 254 StringList *getStringList(uint32_t ce) const; 257 void putStringList(uint32_t ce, StringList *stringList, UErrorCode &status); 284 void CEToStringsMap::put(uint32_t ce, UnicodeString *string, UErrorCode &status) 286 StringList *strings = getStringList(ce); 296 putStringList(ce, strings, status); 302 StringList *CEToStringsMap::getStringList(uint32_t ce) const 304 return (StringList *) uhash_iget(map, ce); 514 uint32_t ce = ceList->get(offset); local [all...] |
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/ |
CollationElementIterator.java | 27 * each iteration is a 32-bit collation element (CE) that defines the 34 * "ca" -> the first collation element is CE('c') and the second 35 * collation element is CE('a'). 36 * "cha" -> the first collation element is CE('ch') and the second 37 * collation element is CE('a'). 152 * @param ce the collation element 156 public final static int primaryOrder(int ce) { 157 return (ce >>> 16) & 0xffff; 163 * @param ce the collation element 167 public final static int secondaryOrder(int ce) { 340 long ce = iter_.nextCE(); local 400 long ce = iter_.previousCE(offsets_); local 626 long ce = ces[start + length - 1]; local [all...] |
/external/valgrind/coregrind/m_debuginfo/ |
priv_tytypes.h | 206 ce[N_TYENT_INDEX_CACHE]; member in struct:__anon25496
|
image.c | 468 CEnt* ce = img->ces[entNo]; local 483 SysRes sr = VG_(pread)(img->source.fd, &ce->data[0], (Int)len, off); 510 //VG_(memcpy)(&ce->data[0], rx_data, len); 517 &ce->data[0], &out_len, 547 ce->off = off; 548 ce->used = len; 549 vg_assert(ce->used > 0 && ce->used <= CACHE_ENTRY_SIZE); 855 const CEnt* ce = img->ces[0]; local 856 vg_assert(ce && ce->used >= 1) [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
os.py | 4 - all functions from posix, nt, os2, or ce, e.g. unlink, stat, etc. 6 - os.name is 'posix', 'nt', 'os2', 'ce' or 'riscos' 87 elif 'ce' in _names: 88 name = 'ce' 90 from ce import * 92 from ce import _exit 98 import ce namespace 99 __all__.extend(_get_exports_list(ce)) 100 del ce
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
os.py | 4 - all functions from posix, nt, os2, or ce, e.g. unlink, stat, etc. 6 - os.name is 'posix', 'nt', 'os2', 'ce' or 'riscos' 87 elif 'ce' in _names: 88 name = 'ce' 90 from ce import * 92 from ce import _exit 98 import ce namespace 99 __all__.extend(_get_exports_list(ce)) 100 del ce
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
os.py | 4 - all functions from posix, nt, os2, or ce, e.g. unlink, stat, etc. 6 - os.name is 'posix', 'nt', 'os2', 'ce' or 'riscos' 87 elif 'ce' in _names: 88 name = 'ce' 90 from ce import * 92 from ce import _exit 98 import ce namespace 99 __all__.extend(_get_exports_list(ce)) 100 del ce
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
os.py | 4 - all functions from posix, nt, os2, or ce, e.g. unlink, stat, etc. 6 - os.name is 'posix', 'nt', 'os2', 'ce' or 'riscos' 87 elif 'ce' in _names: 88 name = 'ce' 90 from ce import * 92 from ce import _exit 98 import ce namespace 99 __all__.extend(_get_exports_list(ce)) 100 del ce
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/ |
CodeEmitter.java | 62 private ClassEmitter ce; field in class:CodeEmitter 106 CodeEmitter(ClassEmitter ce, MethodVisitor mv, int access, Signature sig, Type[] exceptionTypes) { 108 this.ce = ce; 109 state = new State(ce.getClassInfo(), access, sig, exceptionTypes); 114 this.ce = wrap.ce; 135 return ce; 424 ClassEmitter.FieldInfo info = ce.getFieldInfo(name); 426 emit_field(opcode, ce.getClassType(), name, info.type) [all...] |
EmitUtils.java | 77 public static void factory_method(ClassEmitter ce, Signature sig) { 78 CodeEmitter e = ce.begin_method(Constants.ACC_PUBLIC, sig, null); 87 public static void null_constructor(ClassEmitter ce) { 88 CodeEmitter e = ce.begin_method(Constants.ACC_PUBLIC, CSTRUCT_NULL, null); 328 ClassEmitter ce = e.getClassEmitter(); local 333 if (!ce.isFieldDeclared(fieldName)) { 334 ce.declare_field(Constants.PRIVATE_FINAL_STATIC, fieldName, Constants.TYPE_CLASS, null); 335 CodeEmitter hook = ce.getStaticHook(); 338 hook.putstatic(ce.getClassType(), fieldName, Constants.TYPE_CLASS); [all...] |
/external/guice/core/test/com/google/inject/ |
DuplicateBindingsTest.java | 86 } catch(CreationException ce) { 87 assertContains(ce.getMessage(), 135 } catch(CreationException ce) { 146 assertContains(ce.getMessage(), segment1 , atSegment, segment2, atSegment, segment3, 149 assertContains(ce.getMessage(), segment1 , atSegment, segment2, atSegment, segment4, 164 } catch(CreationException ce) { 165 assertContains(ce.getMessage(), 181 } catch(CreationException ce) { 182 assertContains(ce.getMessage(), 199 } catch(CreationException ce) { [all...] |
/external/guice/extensions/assistedinject/test/com/google/inject/assistedinject/ |
FactoryModuleBuilderTest.java | 65 } catch (CreationException ce) { 67 ce.getMessage(), "1) " + Car.class.getName() + " is an interface, not a concrete class.", 71 assertEquals(1, ce.getErrorMessages().size()); 85 } catch (CreationException ce) { 87 ce.getMessage(), "1) " + AbstractCar.class.getName() + " is abstract, not a concrete class.", 91 assertEquals(1, ce.getErrorMessages().size()); 123 } catch (CreationException ce) { 125 ce.getMessage(), "1) " + Volkswagen.class.getName() + " is an interface, not a concrete class.", 130 assertEquals(1, ce.getErrorMessages().size()); 146 } catch (CreationException ce) { [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/ |
CollationBuilder.java | 138 // Find or insert a node whose index we will put into a temporary CE. 155 // We do not support tailoring to an unassigned-implicit CE. 227 // Strength of the temporary CE = strength of its reset position. 240 // Collect the root CE weights if this node is for a root CE. 241 // If it is not, then return the low non-primary boundary for a tailored CE. 268 // [p, s, t] is a root CE. Return the preceding weight for the requested level. 282 long ce; local 309 ce = rootElements.getLastTertiaryCE(); 332 ce = rootElements.getFirstSecondaryCE() 481 long ce = ces[cesLength - 1]; local 534 long ce; local [all...] |
CollationFastLatin.java | 88 * (1=BAIL_OUT, 2=one CE, 3=two CEs). 99 * The higher a mini CE value, the easier it is to process. 104 * Encodes one CE with a long/low mini primary (there are 128). 112 * Encodes one CE with a short/high primary (there are 60), 113 * plus a secondary CE if the secondary weight is high. 175 * 1=bail out, 2=one mini CE, 3=two mini CEs 298 * Single mini CE or a pair. 299 * The current mini CE is in the lower 16 bits, the next one is in the upper 16 bits. 685 private static long nextPair(char[] table, int c, int ce, CharSequence s16, int sIndex) { 686 if(ce >= MIN_LONG || ce < CONTRACTION) 742 int ce = pair & 0xffff; local 770 int ce = pair & 0xffff; local 793 int ce = pair; local 806 int ce = pair & 0xffff; local 829 int ce = pair; local 852 int ce = pair & 0xffff; local 894 int ce = pair & 0xffff; local [all...] |
CollationFastLatinBuilder.java | 43 private static final int binarySearch(long[] list, int limit, long ce) { 48 int cmp = compareInt64AsUnsigned(ce, list[i]); 53 return ~start; // insert ce before i 58 return ~(start + 1); // insert ce after i 302 // or a short-primary CE is followed by a secondary CE. 388 private void addUniqueCE(long ce) { 389 if(ce == 0 || (ce >>> 32) == Collation.NO_CE_PRIMARY) { return; } 390 ce &= ~(long)Collation.CASE_MASK; // blank out case bit 416 long ce = uniqueCEs.elementAti(i); local 538 long ce = charCEs[i][0]; local 563 long ce = charCEs[i][0]; local [all...] |
CollationKeys.java | 376 long ce = iter.nextCE(); local 377 long p = ce >>> 32; 379 // Variable CE, shift it to quaternary level. 404 ce = iter.nextCE(); 405 p = ce >>> 32; 409 // ce could be primary ignorable, or NO_CE, or the merge separator, 410 // or a regular primary CE, but it is not variable. 411 // If ce==NO_CE, then write nothing for the primary level but 458 int lower32 = (int) ce; 471 // backwards-secondary is off or the ce is not the merge separator [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/ |
CollationIteratorTest.java | 606 int ce = resultiter.next(); local 607 while (ce != CollationElementIterator.NULLORDER) { 608 if (ce != iter.next()) { 613 ce = resultiter.next(); 663 * It is also sensitive to how those CEs map to the iterator's 32-bit CE encoding. 664 * For example, the DUCET's artificial secondary CE in the ae-ligature 746 logln(String.format("(%s) offset=%2d ce=%08x\n", tsceItem.localeString, offset, element));
|
/external/icu/icu4c/source/test/cintltst/ |
citertst.c | 1076 uint32_t ce; local [all...] |
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
CollationBuilder.java | 134 // Find or insert a node whose index we will put into a temporary CE. 151 // We do not support tailoring to an unassigned-implicit CE. 223 // Strength of the temporary CE = strength of its reset position. 236 // Collect the root CE weights if this node is for a root CE. 237 // If it is not, then return the low non-primary boundary for a tailored CE. 264 // [p, s, t] is a root CE. Return the preceding weight for the requested level. 278 long ce; local 305 ce = rootElements.getLastTertiaryCE(); 328 ce = rootElements.getFirstSecondaryCE() 477 long ce = ces[cesLength - 1]; local 530 long ce; local [all...] |
CollationFastLatin.java | 84 * (1=BAIL_OUT, 2=one CE, 3=two CEs). 95 * The higher a mini CE value, the easier it is to process. 100 * Encodes one CE with a long/low mini primary (there are 128). 108 * Encodes one CE with a short/high primary (there are 60), 109 * plus a secondary CE if the secondary weight is high. 171 * 1=bail out, 2=one mini CE, 3=two mini CEs 294 * Single mini CE or a pair. 295 * The current mini CE is in the lower 16 bits, the next one is in the upper 16 bits. 681 private static long nextPair(char[] table, int c, int ce, CharSequence s16, int sIndex) { 682 if(ce >= MIN_LONG || ce < CONTRACTION) 738 int ce = pair & 0xffff; local 766 int ce = pair & 0xffff; local 789 int ce = pair; local 802 int ce = pair & 0xffff; local 825 int ce = pair; local 848 int ce = pair & 0xffff; local 890 int ce = pair & 0xffff; local [all...] |
CollationFastLatinBuilder.java | 42 private static final int binarySearch(long[] list, int limit, long ce) { 47 int cmp = compareInt64AsUnsigned(ce, list[i]); 52 return ~start; // insert ce before i 57 return ~(start + 1); // insert ce after i 301 // or a short-primary CE is followed by a secondary CE. 387 private void addUniqueCE(long ce) { 388 if(ce == 0 || (ce >>> 32) == Collation.NO_CE_PRIMARY) { return; } 389 ce &= ~(long)Collation.CASE_MASK; // blank out case bit 415 long ce = uniqueCEs.elementAti(i); local 537 long ce = charCEs[i][0]; local 562 long ce = charCEs[i][0]; local [all...] |
CollationKeys.java | 372 long ce = iter.nextCE(); local 373 long p = ce >>> 32; 375 // Variable CE, shift it to quaternary level. 400 ce = iter.nextCE(); 401 p = ce >>> 32; 405 // ce could be primary ignorable, or NO_CE, or the merge separator, 406 // or a regular primary CE, but it is not variable. 407 // If ce==NO_CE, then write nothing for the primary level but 454 int lower32 = (int) ce; 467 // backwards-secondary is off or the ce is not the merge separator [all...] |
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/ |
CollationIteratorTest.java | 602 int ce = resultiter.next(); local 603 while (ce != CollationElementIterator.NULLORDER) { 604 if (ce != iter.next()) { 609 ce = resultiter.next(); 659 * It is also sensitive to how those CEs map to the iterator's 32-bit CE encoding. 660 * For example, the DUCET's artificial secondary CE in the ae-ligature 742 logln(String.format("(%s) offset=%2d ce=%08x\n", tsceItem.localeString, offset, element));
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/ |
MethodInterceptorGenerator.java | 84 public void generate(ClassEmitter ce, Context context, List methods) { 95 ce.declare_field(Constants.PRIVATE_FINAL_STATIC, methodField, METHOD, null); 96 ce.declare_field(Constants.PRIVATE_FINAL_STATIC, methodProxyField, METHOD_PROXY, null); 97 ce.declare_field(Constants.PRIVATE_FINAL_STATIC, EMPTY_ARGS_NAME, Constants.TYPE_OBJECT_ARRAY, null); 101 e = ce.begin_method(Constants.ACC_FINAL, 109 e = context.beginMethod(ce, method); 134 generateFindProxy(ce, sigMap); 218 public void generateFindProxy(ClassEmitter ce, final Map sigMap) { 219 final CodeEmitter e = ce.begin_method(Constants.ACC_PUBLIC | Constants.ACC_STATIC,
|
/external/skia/src/pathops/ |
SkOpCoincidence.cpp | 219 SkOpPtT* ce = coinSeg->addMissing(coinTe, oppSeg, allocator); local 220 SkASSERT(cs != ce); 225 ce->addOpp(oe); 226 this->add(cs, ce, os, oe, allocator);
|