HomeSort by relevance Sort by last modified time
    Searched full:ismatch (Results 26 - 50 of 171) sorted by null

12 3 4 5 6 7

  /external/skqp/src/pathops/
SkPathOpsTSect.h 41 bool isMatch() const {
812 if (fCoinStart.isMatch()) {
816 if (fCoinEnd.isMatch()) {
937 if (work.fCoinStart.isMatch()) {
    [all...]
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
LZMAEncoder.java 233 rc.encodeBit(isMatch[state.get()], 0, 0);
257 rc.encodeBit(isMatch[state.get()], posState, 0);
261 rc.encodeBit(isMatch[state.get()], posState, 1);
359 return RangeEncoder.getBitPrice(isMatch[state.get()][posState], 1);
530 isMatch[state.get()][pos & posMask], 0);
LZMADecoder.java 55 if (rc.decodeBit(isMatch[state.get()], posState) == 0) {
  /external/deqp/modules/egl/
teglChooseConfigTests.cpp 201 bool isMatch = isSetMatch && (checkOrder ? isExactMatch : true);
203 if (isMatch)
210 if (!isMatch)
teglChooseConfigReference.cpp 391 bool isMatch (const SurfaceConfig& config) const
501 if (isMatch(*iter)) out.push_back(*iter);
  /external/lzma/CPP/7zip/Bundles/LzmaSpec/
LzmaSpec.cpp 435 CProb IsMatch[kNumStates << kNumPosBitsMax];
450 INIT_PROBS(IsMatch);
485 if (RangeDec.DecodeBit(&IsMatch[(state << kNumPosBitsMax) + posState]) == 0)
  /packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
LocaleUtils.java 66 // Don't use this directly, use #isMatch to test.
160 public static boolean isMatch(final int level) {
  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
LzmaDec.c 103 #define IsMatch 0
104 #define IsRep (IsMatch + (kNumStates << kNumPosBitsMax))
169 prob = probs + IsMatch + (state << kNumPosBitsMax) + posState;
593 prob = probs + IsMatch + (state << kNumPosBitsMax) + posState;
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
LzmaDec.c 105 #define IsMatch 0
106 #define IsRep (IsMatch + (kNumStates << kNumPosBitsMax))
171 prob = probs + IsMatch + (state << kNumPosBitsMax) + posState;
595 prob = probs + IsMatch + (state << kNumPosBitsMax) + posState;
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
LzmaDec.c 105 #define IsMatch 0
106 #define IsRep (IsMatch + (kNumStates << kNumPosBitsMax))
171 prob = probs + IsMatch + (state << kNumPosBitsMax) + posState;
595 prob = probs + IsMatch + (state << kNumPosBitsMax) + posState;
  /external/brotli/c/enc/
compress_fragment.c 59 static BROTLI_INLINE BROTLI_BOOL IsMatch(const uint8_t* p1, const uint8_t* p2) {
538 if (IsMatch(ip, candidate)) {
549 } while (BROTLI_PREDICT_TRUE(!IsMatch(ip, candidate)));
620 while (IsMatch(ip, candidate)) {
compress_fragment_two_pass.c 58 static BROTLI_INLINE BROTLI_BOOL IsMatch(const uint8_t* p1, const uint8_t* p2) {
297 if (IsMatch(ip, candidate)) {
308 } while (BROTLI_PREDICT_TRUE(!IsMatch(ip, candidate)));
369 while (ip - candidate <= MAX_DISTANCE && IsMatch(ip, candidate)) {
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
LigatureTree.java 41 boolean isMatch()
  /external/lzma/C/
LzmaDec.c 103 #define IsMatch 0
104 #define IsRep (IsMatch + (kNumStates << kNumPosBitsMax))
169 prob = probs + IsMatch + (state << kNumPosBitsMax) + posState;
593 prob = probs + IsMatch + (state << kNumPosBitsMax) + posState;
  /external/python/cpython3/PCbuild/
python3dll.vcxproj 129 <_Symbols Include="@(_DefLines)" Condition="$([System.Text.RegularExpressions.Regex]::IsMatch(`%(Identity)`, `$(_Pattern)`))">
  /frameworks/base/services/core/java/com/android/server/pm/
PackageSetting.java 168 public boolean isMatch(int flags) {
  /packages/apps/Dialer/java/com/android/dialer/phonenumberproto/
DialerPhoneNumberUtil.java 121 public boolean isMatch(
  /frameworks/base/core/java/android/content/pm/
PackageUserState.java 127 public boolean isMatch(ComponentInfo componentInfo, int flags) {
  /packages/apps/Dialer/java/com/android/dialer/calllog/database/
Coalescer.java 184 return dialerPhoneNumberUtil.isMatch(number1, number2);
  /external/lzma/DOC/
lzma-specification.txt 934 CProb IsMatch[kNumStates << kNumPosBitsMax];
962 "IsMatch" and "IsRep0Long" arrays:
970 IsMatch[state2] decode
992 If the value "0" was decoded with IsMatch[state2] decoding, we have "LITERAL" type.
1015 If the value "1" was decoded with IsMatch[state2] decoding,
    [all...]
  /external/protobuf/csharp/src/Google.Protobuf/Reflection/
DescriptorPool.cs 198 if (!ValidationRegex.IsMatch(descriptor.Name))
  /external/protobuf/src/google/protobuf/util/
message_differencer.h 299 virtual bool IsMatch(const Message& message1,
302 GOOGLE_CHECK(false) << "IsMatch() is not implemented.";
466 // will invoke the IsMatch method of the given 'key_comparator' to decide if
    [all...]
  /external/v8/src/ast/
ast-value-factory.cc 62 bool IsMatch(Object* other) override {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
BinaryDictionaryGetter.java 175 if (LocaleUtils.isMatch(matchLevel)) {
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/util/
message_differencer.h 299 virtual bool IsMatch(const Message& message1,
302 GOOGLE_CHECK(false) << "IsMatch() is not implemented.";
466 // will invoke the IsMatch method of the given 'key_comparator' to decide if
    [all...]

Completed in 1505 milliseconds

12 3 4 5 6 7