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

1 23 4 5 6 7 8 91011>>

  /external/skia/src/gpu/effects/
GrBezierEffect.cpp 30 const GrConicEffect& ce = primProc.cast<GrConicEffect>(); variable
32 if (!ce.viewMatrix().isIdentity() && !fViewMatrix.cheapEqualTo(ce.viewMatrix())) {
33 fViewMatrix = ce.viewMatrix();
39 if (ce.color() != fColor) {
41 GrColorToRGBAFloat(ce.color(), c);
43 fColor = ce.color();
46 if (ce.coverageScale() != 0xff && ce.coverageScale() != fCoverageScale) {
47 pdman.set1f(fCoverageScaleUniform, GrNormalizeByteToFloat(ce.coverageScale()))
67 const GrConicEffect& ce = processor.cast<GrConicEffect>(); local
220 const GrConicEffect& ce = gp.cast<GrConicEffect>(); local
328 const GrQuadEffect& ce = processor.cast<GrQuadEffect>(); local
423 const GrQuadEffect& ce = gp.cast<GrQuadEffect>(); local
493 const GrCubicEffect& ce = primProc.cast<GrCubicEffect>(); variable
535 const GrCubicEffect& ce = processor.cast<GrCubicEffect>(); local
655 const GrCubicEffect& ce = gp.cast<GrCubicEffect>(); local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationBuilder.java 141 // Find or insert a node whose index we will put into a temporary CE.
158 // We do not support tailoring to an unassigned-implicit CE.
230 // Strength of the temporary CE = strength of its reset position.
243 // Collect the root CE weights if this node is for a root CE.
244 // If it is not, then return the low non-primary boundary for a tailored CE.
271 // [p, s, t] is a root CE. Return the preceding weight for the requested level.
285 long ce; local
312 ce = rootElements.getLastTertiaryCE();
335 ce = rootElements.getFirstSecondaryCE()
484 long ce = ces[cesLength - 1]; local
537 long ce; local
    [all...]
CollationFastLatinBuilder.java 45 private static final int binarySearch(long[] list, int limit, long ce) {
50 int cmp = compareInt64AsUnsigned(ce, list[i]);
55 return ~start; // insert ce before i
60 return ~(start + 1); // insert ce after i
304 // or a short-primary CE is followed by a secondary CE.
390 private void addUniqueCE(long ce) {
391 if(ce == 0 || (ce >>> 32) == Collation.NO_CE_PRIMARY) { return; }
392 ce &= ~(long)Collation.CASE_MASK; // blank out case bit
418 long ce = uniqueCEs.elementAti(i); local
540 long ce = charCEs[i][0]; local
565 long ce = charCEs[i][0]; local
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationBuilder.java 137 // Find or insert a node whose index we will put into a temporary CE.
154 // We do not support tailoring to an unassigned-implicit CE.
226 // Strength of the temporary CE = strength of its reset position.
239 // Collect the root CE weights if this node is for a root CE.
240 // If it is not, then return the low non-primary boundary for a tailored CE.
267 // [p, s, t] is a root CE. Return the preceding weight for the requested level.
281 long ce; local
308 ce = rootElements.getLastTertiaryCE();
331 ce = rootElements.getFirstSecondaryCE()
480 long ce = ces[cesLength - 1]; local
533 long ce; local
    [all...]
CollationFastLatinBuilder.java 44 private static final int binarySearch(long[] list, int limit, long ce) {
49 int cmp = compareInt64AsUnsigned(ce, list[i]);
54 return ~start; // insert ce before i
59 return ~(start + 1); // insert ce after i
303 // or a short-primary CE is followed by a secondary CE.
389 private void addUniqueCE(long ce) {
390 if(ce == 0 || (ce >>> 32) == Collation.NO_CE_PRIMARY) { return; }
391 ce &= ~(long)Collation.CASE_MASK; // blank out case bit
417 long ce = uniqueCEs.elementAti(i); local
539 long ce = charCEs[i][0]; local
564 long ce = charCEs[i][0]; local
    [all...]
  /external/guice/extensions/multibindings/test/com/google/inject/multibindings/
ProvidesIntoTest.java 224 } catch (CreationException ce) {
225 assertEquals(1, ce.getErrorMessages().size());
226 assertContains(ce.getMessage(),
280 } catch (CreationException ce) {
281 assertEquals(1, ce.getErrorMessages().size());
282 assertContains(ce.getMessage(), "Found a MapKey annotation on non map binding at "
300 } catch (CreationException ce) {
301 assertEquals(1, ce.getErrorMessages().size());
302 assertContains(ce.getMessage(), "Found a MapKey annotation on non map binding at "
315 } catch (CreationException ce) {
    [all...]
  /external/icu/icu4c/source/i18n/
collationfastlatin.h 94 * (1=BAIL_OUT, 2=one CE, 3=two CEs).
105 * The higher a mini CE value, the easier it is to process.
110 * Encodes one CE with a long/low mini primary (there are 128).
118 * Encodes one CE with a short/high primary (there are 60),
119 * plus a secondary CE if the secondary weight is high.
181 * 1=bail out, 2=one mini CE, 3=two mini CEs
228 static uint32_t nextPair(const uint16_t *table, UChar32 c, uint32_t ce,
232 uint32_t ce = pair & 0xffff; local
233 if(ce >= MIN_SHORT) { return pair & TWO_SHORT_PRIMARIES_MASK; }
234 if(ce > variableTop) { return pair & TWO_LONG_PRIMARIES_MASK;
    [all...]
coleitr.cpp 76 UBool ceNeedsTwoParts(int64_t ce) {
77 return (ce & INT64_C(0xffff00ff003f)) != 0;
89 // Return the trailing CE offset while we are in the middle of a 64-bit CE.
126 int64_t ce = iter_->nextCE(status); local
127 if (ce == Collation::NO_CE) { return NULLORDER; }
128 // Turn the 64-bit CE into two old-style 32-bit CEs, without quaternary bits.
129 uint32_t p = (uint32_t)(ce >> 32);
130 uint32_t lower32 = (uint32_t)ce;
134 otherHalf_ = secondHalf | 0xc0; // continuation CE
198 int64_t ce = iter_->previousCE(*offsets_, status); local
411 int64_t ce = ces[length - 1]; local
    [all...]
collationiterator.h 47 inline void append(int64_t ce, UErrorCode &errorCode) {
49 buffer[length++] = ce;
53 inline void appendUnsafe(int64_t ce) {
54 buffer[length++] = ce;
70 inline int64_t set(int32_t i, int64_t ce) {
71 return buffer[i] = ce;
116 // Return the next buffered CE.
127 // Normal CE from the main data.
143 // Normal CE from the base data.
165 * Overwrites the current CE (the last one returned by nextCE())
    [all...]
  /libcore/ojluni/src/main/java/java/util/zip/
ZipCoder.java 77 CharsetEncoder ce = encoder().reset(); local
79 int len = (int)(ca.length * ce.maxBytesPerChar());
85 if (isUTF8 && ce instanceof ArrayEncoder) {
86 int blen = ((ArrayEncoder)ce).encode(ca, 0, ca.length, ba);
93 CoderResult cr = ce.encode(cb, bb, true);
96 cr = ce.flush(bb);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/rx/
gprel.d 9 0: ce f1 04 00 mov\.b 4\[r15\], r1
14 4: ce f1 08 00 mov\.b 8\[r15\], r1
19 8: ce f1 00 00 mov\.b \[r15\], r1
  /libcore/ojluni/src/main/java/java/security/cert/
CertPath.java 288 } catch (CertificateException ce) {
292 nse.initCause(ce);
334 } catch (CertificateException ce) {
338 nse.initCause(ce);
X509CRLEntry.java 94 } catch (CRLException ce) {
113 } catch (CRLException ce) {
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-sh/
fdpic-gotfuncdesci20-shared.d 10 [0-9a-f]+ 0000000c 01ce[ \t]+.*
18 [0-9a-f]+:[ \t]+01 ce[ \t]+mov\.l[ \t]+@\(r0,r12\),r1
fdpic-goti20-shared.d 10 [0-9a-f]+ 0000000c 01ce[ \t]+.*
18 [0-9a-f]+:[ \t]+01 ce[ \t]+mov\.l[ \t]+@\(r0,r12\),r1
fdpic-gotoffi20-shared.d 10 [0-9a-f]+ 00f0fffc 01ce[ \t]+.*
20 [0-9a-f]+:[ \t]+01 ce[ \t]+mov\.l[ \t]+@\(r0,r12\),r1
  /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...]
  /libcore/ojluni/src/main/java/java/lang/
StringCoding.java 283 private CharsetEncoder ce; field in class:StringCoding.StringEncoder
290 this.ce = cs.newEncoder()
307 int en = scale(len, ce.maxBytesPerChar());
311 if (ce instanceof ArrayEncoder) {
312 int blen = ((ArrayEncoder)ce).encode(ca, off, len, ba);
315 ce.reset();
320 CoderResult cr = ce.encode(cb.asReadOnlyBuffer(), bb, true);
323 cr = ce.flush(bb);
357 CharsetEncoder ce = cs.newEncoder(); local
358 int en = scale(len, ce.maxBytesPerChar())
    [all...]
  /build/kati/
command.cc 52 AutoVar(CommandEvaluator* ce, const char* sym) : ce_(ce), sym_(sym) {}
62 name(CommandEvaluator* ce, const char* sym) \
63 : AutoVar(ce, sym) {} \
77 AutoSuffixDVar(CommandEvaluator* ce, const char* sym, Var* wrapped)
78 : AutoVar(ce, sym), wrapped_(wrapped) {
89 AutoSuffixFVar(CommandEvaluator* ce, const char* sym, Var* wrapped)
90 : AutoVar(ce, sym), wrapped_(wrapped) {}
  /device/linaro/bootloader/edk2/OvmfPkg/Library/LockBoxLib/
LockBoxDxeLib.inf 22 FILE_GUID = f61c9a34-2e18-44ce-af2f-21a998e64fda
  /external/icu/icu4c/source/test/intltest/
colldata.h 34 * The size of the internal CE buffer in a <code>CEList</code> object
85 * Get a particular CE from the list.
87 * @param index - the index of the CE to return
89 * @return the CE, or <code>0</code> if <code>index</code> is out of range
109 * @return a reference to the given CE in the list
114 void add(uint32_t ce, UErrorCode &status);
234 * of CEs starting with a given CE.
236 * @param ce - the CE
242 const StringList *getStringList(int32_t ce) const
    [all...]
  /external/toolchain-utils/cros_utils/
buildbot_utils.py 152 ce = command_executer.GetCommandExecuter()
155 _, out, _ = ce.ChrootRunCommandWOutput(
217 ce = command_executer.GetCommandExecuter()
244 _, out, _ = ce.RunCommandWOutput(command)
354 ce = command_executer.GetCommandExecuter()
356 _, out, _ = ce.ChrootRunCommandWOutput(
364 ce = command_executer.GetCommandExecuter()
367 ret = ce.ChrootRunCommand(chromeos_root, command, print_to_console=False)
no_pseudo_terminal_test.py 43 ce = command_executer.GetCommandExecuter()
44 ce.RunCommand('echo')
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm11_asm/
win_asm.bat 3 set ASM="D:\Program Files\Microsoft Visual Studio 8\VC\ce\bin\x86_arm\armasm"
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cr16/
excp_test.d 17 e: ce 00 excp dbg

Completed in 1826 milliseconds

1 23 4 5 6 7 8 91011>>