Home
last modified time | relevance | path

Searched refs:Is (Results 1 – 25 of 155) sorted by relevance

1234567

/freebsd/crypto/krb5/src/lib/krb5/unicode/ucdata/
H A Dapi.txt245 Is the character a C0 control character (< 32) ?
249 Is the character a format control character?
253 Is the character a symbol?
257 Is the character a number or digit?
261 Is the character non-spacing?
265 Is the character an open/left punctuation (i.e. '[')
269 Is the character an close/right punctuation (i.e. ']')
273 Is the character an initial punctuation (i.e. U+2018 LEFT SINGLE QUOTATION
278 Is the character a final punctuation (i.e. U+2019 RIGHT SINGLE QUOTATION
287 Is the character one of the many quotation marks?
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/
H A DM68k.td23 "Is M68000 ISA supported">;
27 "Is M68010 ISA supported",
32 "Is M68020 ISA supported",
37 "Is M68030 ISA supported",
42 "Is M68881 (FPU) ISA supported">;
46 "Is M68882 (FPU) ISA supported",
51 "Is M68040 ISA supported",
56 "Is M68060 ISA supported",
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/
H A DRefactoringActionRulesInternal.h46 template <typename RuleType, typename... RequirementTypes, size_t... Is>
50 std::index_sequence<Is...>) { in invokeRuleAfterValidatingRequirements() argument
53 std::make_tuple(std::get<Is>(Requirements).evaluate(Context)...); in invokeRuleAfterValidatingRequirements()
54 auto Err = findError(std::get<Is>(Values)...); in invokeRuleAfterValidatingRequirements()
60 RuleType::initiate(Context, std::move((*std::get<Is>(Values)))...); in invokeRuleAfterValidatingRequirements()
86 template <typename... RequirementTypes, size_t... Is>
90 std::index_sequence<Is...>) { in visitRefactoringOptions() argument
91 visitRefactoringOptionsImpl(Visitor, std::get<Is>(Requirements)...); in visitRefactoringOptions()
/freebsd/contrib/llvm-project/lldb/source/ValueObject/
H A DDILParser.cpp196 if (CurToken().Is(Token::l_paren)) { in ParsePrimaryExpression()
229 if (m_dil_lexer.LookAhead(1).Is(Token::identifier) && in ParseNestedNameSpecifier()
231 m_dil_lexer.LookAhead(2).Is(Token::identifier) && in ParseNestedNameSpecifier()
233 m_dil_lexer.LookAhead(3).Is(Token::r_paren) && in ParseNestedNameSpecifier()
234 m_dil_lexer.LookAhead(4).Is(Token::coloncolon)) { in ParseNestedNameSpecifier()
239 if (!CurToken().Is(Token::identifier) && !CurToken().Is(Token::l_paren)) { in ParseNestedNameSpecifier()
254 if (m_dil_lexer.LookAhead(1).Is(Token::coloncolon)) { in ParseNestedNameSpecifier()
287 if (CurToken().Is(Token::coloncolon)) { in ParseIdExpression()
305 if (!CurToken().Is(Token::identifier)) in ParseIdExpression()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DInterleavedLoadCombinePass.cpp666 std::set<Instruction *> Is; member
768 Result.Is.insert(Old.Is.begin(), Old.Is.end()); in computeFromBCI()
769 Result.Is.insert(BCI); in computeFromBCI()
827 Result.Is.insert(LHS.Is.begin(), LHS.Is.end()); in computeFromSVI()
831 Result.Is.insert(RHS.Is.begin(), RHS.Is.end()); in computeFromSVI()
833 Result.Is.insert(SVI); in computeFromSVI()
888 Result.Is.insert(LI); in computeFromLI()
1131 std::set<Instruction *> Is; in combine() local
1149 Is.insert(VI.Is.begin(), VI.Is.end()); in combine()
1162 for (const auto &I : Is) { in combine()
[all …]
/freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A Dllvm-objcopy.cpp62 auto Is = [=](StringRef Tool) { in getDriverConfig() local
74 if (Is("bitcode-strip") || Is("bitcode_strip")) in getDriverConfig()
76 else if (Is("strip")) in getDriverConfig()
78 else if (Is("install-name-tool") || Is("install_name_tool")) in getDriverConfig()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormat.h95 template <std::size_t... Is>
97 std::index_sequence<Is...>) const {
99 return _snprintf(Buffer, BufferSize, Fmt, std::get<Is>(Vals)...);
101 return snprintf(Buffer, BufferSize, Fmt, std::get<Is>(Vals)...);
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMachineLocation.h48 void setIsRegister(bool Is) { IsRegister = Is; } in setIsRegister() argument
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DEHScopeStack.h212 template <std::size_t... Is>
213 T restore(CodeGenFunction &CGF, std::index_sequence<Is...>) {
216 return T{DominatingValue<As>::restore(CGF, std::get<Is>(Saved))...};
/freebsd/sys/contrib/device-tree/src/arm/nxp/imx/
H A Dimx6ul-isiot-emmc.dts12 model = "Engicam Is.IoT MX6UL eMMC Starter kit";
H A Dimx6ul-isiot-nand.dts12 model = "Engicam Is.IoT MX6UL NAND Starter kit";
/freebsd/contrib/googletest/googletest/cmake/
H A Dlibgtest.la.in10 # Is this an already installed library?
/freebsd/sys/contrib/device-tree/Bindings/iio/dac/
H A Dti,dac7612.txt5 Is is programmable through an SPI interface.
/freebsd/contrib/llvm-project/llvm/include/llvm/Target/
H A DTarget.td553 // Is the instruction decoder method able to completely determine if the
633 bit isReturn = false; // Is this instruction a return instruction?
634 bit isBranch = false; // Is this instruction a branch instruction?
636 bit isIndirectBranch = false; // Is this instruction an indirect branch?
637 bit isCompare = false; // Is this instruction a comparison instruction?
638 bit isMoveImm = false; // Is this instruction a move immediate instruction?
639 bit isMoveReg = false; // Is this instruction a move register instruction?
640 bit isBitcast = false; // Is this instruction a bitcast instruction?
641 bit isSelect = false; // Is this instruction a select instruction?
643 bit isCall = false; // Is this instruction a call instruction?
[all …]
/freebsd/sys/i386/i386/
H A Ddb_disasm.c73 #define Is 20 /* immediate, signed */ macro
582 /*05*/ { "add", false, LONG, op2(Is, A), 0 },
600 /*15*/ { "adc", false, LONG, op2(Is, A), 0 },
609 /*1d*/ { "sbb", false, LONG, op2(Is, A), 0 },
627 /*2d*/ { "sub", false, LONG, op2(Is, A), 0 },
645 /*3d*/ { "cmp", false, LONG, op2(Is, A), 0 },
1428 case Is: in db_disasm()
/freebsd/lib/libc++/
H A D__config_site23 #define _LIBCPP_HAS_THREAD_API_C11 0 // FIXME: Is this guarding dead code?
/freebsd/lib/libc/nls/
H A Dfi_FI.ISO8859-1.msg114 54 Is�nt� nollasi yhteyden
134 64 Is�nt� ei vastaa
/freebsd/crypto/openssl/doc/designs/
H A Dthread-api.md67 /* Is thread pool functionality supported at all? */
71 * Is the default model supported? If THREAD_POOL is supported but DEFAULT_SPAWN
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltinsBase.td20 class MultiIndexAttribute<string baseMangling, list<int> Is>
22 list<int> Indices = Is;
/freebsd/sys/amd64/amd64/
H A Ddb_disasm.c86 #define Is 20 /* immediate, signed */ macro
687 /*05*/ { "add", false, LONG, op2(Is, A), 0 },
705 /*15*/ { "adc", false, LONG, op2(Is, A), 0 },
714 /*1d*/ { "sbb", false, LONG, op2(Is, A), 0 },
732 /*2d*/ { "sub", false, LONG, op2(Is, A), 0 },
750 /*3d*/ { "cmp", false, LONG, op2(Is, A), 0 },
1663 case Is: in db_disasm()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/SandboxVectorizer/
H A DDependencyGraph.cpp175 bool Is = IsOrdered(I); in isOrdered() local
176 assert((!Is || DGNode::isMemDepCandidate(I)) && in isOrdered()
178 return Is; in isOrdered()
/freebsd/sys/netgraph/bluetooth/l2cap/
H A DTODO41 Is there a better way to handle this?
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanPatternMatch.h267 template <typename Fn, std::size_t... Is>
268 bool all_of_tuple_elements(std::index_sequence<Is...>, Fn P) const { in all_of_tuple_elements()
269 return (P(std::get<Is>(Ops), Is) && ...); in all_of_tuple_elements()
/freebsd/contrib/googletest/googlemock/
H A DREADME.md29 - Is easy to learn and use.
/freebsd/contrib/llvm-project/lldb/include/lldb/ValueObject/
H A DDILLexer.h49 bool Is(Kind kind) const { return m_kind == kind; } in Is() function

1234567