HomeSort by relevance Sort by last modified time
    Searched refs:Equal (Results 1 - 21 of 21) sorted by null

  /external/webkit/JavaScriptGlue/
JSBase.h 45 virtual UInt8 Equal(JSBase* other);
JSBase.cpp 75 UInt8 JSBase::Equal(JSBase* other)
JSObject.h 49 virtual UInt8 Equal(JSBase* other);
JSObject.cpp 112 UInt8 JSUserObject::Equal(JSBase* other)
118 if (fCallBacks.equal)
120 result = fCallBacks.equal(GetData(), obj->GetData());
JavaScriptGlue.cpp 110 result = ptr->Equal((JSBase*)ref2);
358 outCallBacks->equal = (CFArrayEqualCallBack)JSEqual;
391 callBacks.equal = CFJSObjectEqual;
  /external/webkit/JavaScriptCore/wtf/unicode/
Collator.h 44 enum Result { Equal = 0, Greater = 1, Less = -1 };
CollatorDefault.cpp 68 return Equal;
  /external/skia/include/core/
SkTypeface.h 73 static bool Equal(const SkTypeface* facea, const SkTypeface* faceb);
  /external/webkit/JavaScriptCore/wrec/
WRECGenerator.cpp 90 *failure = branch32(Equal, length, index);
97 failures.append(branch32(Equal, length, index));
136 Jump skipIfEmpty = branch32(Equal, Address(output, ((2 * subpatternId) + 1) * sizeof(int)), character);
166 branch32(Equal, repeatCount, Imm32(max), quantifierFailed);
278 // upper and lower cases are equal.)
319 isUpper = branch32(Equal, character, Imm32(upper));
355 matchDest.append(branch32(Equal, character, Imm32((unsigned short)matches[*matchIndex])));
393 matchDest.append(branch32(Equal, character, Imm32(ch)));
417 matchDest.append(branch32(Equal, character, Imm32((unsigned short)charClass.matches[matchIndex++])));
434 matchDest.append(branch32(Equal, character, Imm32((unsigned short)ch)))
    [all...]
  /external/skia/src/core/
SkTypeface.cpp 24 bool SkTypeface::Equal(const SkTypeface* facea, const SkTypeface* faceb) {
  /external/webkit/JavaScriptCore/jit/
JITOpcodes.cpp 76 Jump isNativeFunc2 = branch32(Equal, Address(regT2, OBJECT_OFFSETOF(FunctionExecutable, m_numParameters)), Imm32(0));
88 Jump arityCheckOkay2 = branch32(Equal, Address(regT2, OBJECT_OFFSETOF(FunctionExecutable, m_numParameters)), regT1);
115 Jump isNativeFunc3 = branch32(Equal, Address(regT2, OBJECT_OFFSETOF(FunctionExecutable, m_numParameters)), Imm32(0));
127 Jump arityCheckOkay3 = branch32(Equal, Address(regT2, OBJECT_OFFSETOF(FunctionExecutable, m_numParameters)), regT1);
497 // Load the prototype of the cell in regT2. If this is equal to regT1 - WIN!
501 Jump isInstance = branchPtr(Equal, regT2, regT1);
756 Jump isTrue = branch32(Equal, regT1, Imm32(JSValue::TrueTag));
757 addJump(branch32(Equal, regT1, Imm32(JSValue::FalseTag)), target);
797 Jump isFalse = branch32(Equal, regT1, Imm32(JSValue::FalseTag));
798 addJump(branch32(Equal, regT1, Imm32(JSValue::TrueTag)), target)
    [all...]
JITArithmetic.cpp 59 addSlowCase(branch32(Equal, regT0, Imm32(0)));
    [all...]
JITPropertyAccess.cpp 288 addSlowCase(branch32(Equal, regT1, Imm32(JSValue::EmptyValueTag)));
327 Jump empty = branch32(Equal, BaseIndex(regT3, regT2, TimesEight, OBJECT_OFFSETOF(ArrayStorage, m_vector[0]) + 4), Imm32(JSValue::EmptyValueTag));
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
equal.h 28 bool Equal(const Fst<Arc> &fst1, const Fst<Arc> &fst2) {
33 VLOG(1) << "Equal: mismatched start states";
42 VLOG(1) << "Equal: mismatched # of states";
48 VLOG(1) << "Equal: mismatched states:"
56 VLOG(1) << "Equal: mismatched final weights:"
66 VLOG(1) << "Equal: mismatched # of arcs"
73 VLOG(1) << "Equal: mismatched arc input labels:"
80 VLOG(1) << "Equal: mismatched arc output labels:"
87 VLOG(1) << "Equal: mismatched arc weights:"
94 VLOG(1) << "Equal: mismatched input label:
    [all...]
  /external/webkit/WebCore/platform/graphics/chromium/
FontPlatformDataLinux.cpp 142 // call SkTypeface::Equal on the valid pointers.
150 typefacesEqual = SkTypeface::Equal(m_typeface, a.m_typeface);
  /external/webkit/JavaScriptCore/yarr/
RegexJIT.cpp 117 matchDest.append(branch32(Equal, character, Imm32((unsigned short)matches[*matchIndex])));
155 matchDest.append(branch32(Equal, character, Imm32(ch)));
179 matchDest.append(branch32(Equal, character, Imm32((unsigned short)charClass->m_matches[matchIndex++])));
196 matchDest.append(branch32(Equal, character, Imm32((unsigned short)ch)));
202 matchDest.append(branch32(Equal, character, Imm32(matchesAZaz[i])));
230 return branch32(Equal, index, length);
240 return branch16(Equal, BaseIndex(input, index, TimesTwo, inputPosition * sizeof(UChar)), Imm32(ch));
422 matchDest.append(branch32(Equal, index, Imm32(state.checkedTotal)));
484 atBegin = branch32(Equal, index, Imm32(state.checkedTotal));
639 branch32(Equal, countRegister, Imm32(term.quantityCount), hardFail)
    [all...]
  /external/webkit/JavaScriptCore/assembler/
MacroAssemblerX86Common.h 46 Equal = X86Assembler::ConditionE,
473 return branch32(Equal, dest, Imm32(0x80000000));
488 // Convert the integer result back to float & compare to the original value - if not equal or unordered (NaN) then jump.
617 // treated as a signed 32bit value, is less than or equal to 5.
619 // jz and jnz test whether the first operand is equal to zero, and take
631 if (((cond == Equal) || (cond == NotEqual)) && !right.m_value)
888 if (((cond == Equal) || (cond == NotEqual)) && !right.m_value)
904 if (((cond == Equal) || (cond == NotEqual)) && !right.m_value)
MacroAssemblerX86_64.h 294 if (((cond == Equal) || (cond == NotEqual)) && !right.m_value)
MacroAssemblerARM.h 46 Equal = ARMAssembler::EQ,
835 // Convert the integer result back to float & compare to the original value - if not equal or unordered (NaN) then jump.
MacroAssemblerARMv7.h 81 Equal = ARMv7Assembler::ConditionEQ,
564 // We get here if either unordered, or equal.
679 // treated as a signed 32bit value, is less than or equal to 5.
681 // jz and jnz test whether the first operand is equal to zero, and take
685 // Should we be using TEQ for equal/not-equal?
    [all...]
  /external/chromium/sdch/open-vcdiff/src/
gflags.cc 243 bool Equal(const FlagValue& x) const;
419 bool FlagValue::Equal(const FlagValue& x) const {
573 if (!modified_ && !current_->Equal(*defvalue_)) {
581 if (!current_->Equal(*src.current_)) current_->CopyFrom(*src.current_);
582 if (!defvalue_->Equal(*src.defvalue_)) defvalue_->CopyFrom(*src.defvalue_);
    [all...]

Completed in 425 milliseconds