Home
last modified time | relevance | path

Searched refs:isBlock (Results 1 – 25 of 68) sorted by relevance

123

/third_party/jsframework/runtime/main/model/
DdomHelper.ts31 import { FragBlockInterface, isBlock } from './compiler';
67 if (isBlock(element)) {
70 if (isBlock(updateMark)) {
129 if (isBlock(dest)) {
137 if (isBlock(target)) {
143 } else if (isBlock(target)) {
150 if (isBlock(target)) {
166 if (isBlock(target)) {
219 if (isBlock(target)) {
Dselector.ts28 isBlock
269 if (isBlock(element)) {
Dcompiler.ts478 if (isBlock(dest) && dest.children) {
504 if (isBlock(dest) && dest.children) {
645 if (!isBlock(dest) && dest.ref === '_documentElement') {
945 export function isBlock(node: FragBlockInterface | Node): node is FragBlockInterface { function
/third_party/typescript/src/services/codefixes/
DfixUnreachableCode.ts29 const container = (isBlock(statement.parent) ? statement.parent : statement).parent;
30 if (!isBlock(statement.parent) || statement === first(statement.parent.statements)) {
34 if (isBlock(statement.parent)) {
50 if (isBlock(statement.parent)) {
DreturnValueCorrect.ts83 …if (!declaration.body || !isBlock(declaration.body) || length(declaration.body.statements) !== 1) …
114 else if (isBlock(firstStatement) && length(firstStatement.statements) === 1) {
DconvertToAsyncFunction.ts68 …const returnStatements = functionToConvertRenamed.body && isBlock(functionToConvertRenamed.body) ?…
408 if (isBlock(funcBody)) {
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/
DFormat.h43 bool isBlock,
103 bool isBlock; member
141 bool isBlock, in Format() argument
169 isBlock(isBlock), in Format()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
DFormat.h43 bool isBlock,
107 bool isBlock; member
147 bool isBlock, in Format() argument
177 isBlock(isBlock), in Format()
/third_party/typescript/src/compiler/transformers/
Des2019.ts32 visitNode(node.block, visitor, isBlock)
Des2018.ts515 let block = visitNode(node.block, visitor, isBlock);
610 if (isBlock(node.statement)) {
652 if (isBlock(statement)) {
1006 if (isBlock(body)) {
Des2015.ts346 || isBlock(node));
1885 if (isBlock(body)) {
1896 if (isBlock(body)) {
1949 if (isBlock(body) && arrayIsEqualTo(statements, body.statements)) {
2416 if (isBlock(statement)) {
3053 isBlock
3143 if (isBlock(statement)) {
3154 if (isBlock(statement)) setOriginalNode(loopBody, statement);
3666 … const body = cast(cast(skipOuterExpressions(node.expression), isArrowFunction).body, isBlock);
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
Dvk_format_utils.cpp119 if (format.isSnorm() || format.isBlock) in initImageFallback()
235 if (angleFormat.isBlock) in initialize()
379 if (angleFormat.isBlock) in MapSwizzleState()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
Dvk_format_utils.cpp162 !format.isBlock) in initImageFallback()
263 if (intendedAngleFormat.isBlock) in initialize()
478 if (!angleFormat.isBlock) in GetFormatSwizzle()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DDIEHash.cpp290 case DIEValue::isBlock: in hashAttribute()
296 if (Value.getType() == DIEValue::isBlock) { in hashAttribute()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Remarks/
DBitstreamRemarkParser.cpp249 static Expected<bool> isBlock(BitstreamCursor &Stream, unsigned BlockID) { in isBlock() function
274 return isBlock(Stream, META_BLOCK_ID); in isMetaBlock()
278 return isBlock(Stream, META_BLOCK_ID); in isRemarkBlock()
/third_party/typescript/src/services/refactors/
DaddOrRemoveBracesToArrowFunction.ts114 …else if (refactorKindBeginsWith(removeBracesAction.kind, kind) && isBlock(func.body) && func.body.…
DextractSymbol.ts1355 if (isBlock(body) && !hasWritesOrVariableDeclarations && substitutions.size === 0) {
1361 …const statements = factory.createNodeArray(isBlock(body) ? body.statements.slice(0) : [isStatement…
1423 if (isBlock(body)) {
1621 if (isArrowFunction(scope) && !isBlock(scope.body)) {
/third_party/typescript/src/compiler/factory/
DnodeConverters.ts16 if (isBlock(node)) return node;
DparenthesizerRules.ts356 …if (!isBlock(body) && (isCommaSequence(body) || getLeftmostExpression(body, /*stopAtCallExpression…
/third_party/typescript_eslint/packages/eslint-plugin/src/rules/
Dreturn-await.ts94 tsutils.isBlock(ancestor) &&
/third_party/node/deps/acorn/acorn/dist/
Dacorn.d.ts28 isBlock: boolean, text: string, start: number, end: number, startLoc?: Position,
/third_party/typescript/src/services/
DsuggestionDiagnostics.ts116 isBlock(node.body) &&
DsmartSelection.ts27 if (isBlock(node)
DjsDoc.ts396 …|| isFunctionLikeDeclaration(node) && node.body && isBlock(node.body) && !!forEachReturnStatement(…
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DLiveIntervals.cpp732 if (RI->end.isBlock()) in addKillFlags()
834 if (Start.isBlock()) in intervalIsInOneMBB()
838 if (Stop.isBlock()) in intervalIsInOneMBB()
1577 if (!isEndValid && !LII->end.isBlock()) in repairOldRegInRange()

123