Home
last modified time | relevance | path

Searched refs:Declare (Results 1 - 25 of 33) sorted by relevance

12

/third_party/gn/src/gn/
H A Dfunctions_target.cc119 "action: Declare a target that runs a script a single time.";
121 R"(action: Declare a target that runs a script a single time.
209 "action_foreach: Declare a target that runs a script over a set of files.";
211 R"(action_foreach: Declare a target that runs a script over a set of files.
293 "bundle_data: [iOS/macOS] Declare a target without output.";
295 R"(bundle_data: [iOS/macOS] Declare a target without output.
532 const char kCopy_HelpShort[] = "copy: Declare a target that copies files.";
534 R"(copy: Declare a target that copies files.
617 "executable: Declare an executable target.";
619 R"(executable: Declare a
[all...]
/third_party/skia/src/gpu/effects/
H A DGrGaussianConvolutionFragmentProcessor.cpp59 Declare(increment); in emitCode()
76 Declare(kernel); in emitCode()
81 Declare(offsets); in emitCode()
85 Declare(color); in emitCode()
88 Declare(coord); in emitCode()
99 For(Declare(i), i < width, i++, in emitCode()
106 Declare(kernelWidth); in emitCode()
109 For(Declare(i), i < kernelWidth, i++, in emitCode()
H A DGrConvexPolyEffect.cpp110 Declare(edgeArray); in onMakeProgramImpl()
113 Declare(alpha); in onMakeProgramImpl()
115 Declare(edge); in onMakeProgramImpl()
/third_party/node/deps/v8/src/torque/
H A Ddeclarations.cc162 return Declare(name, std::make_unique<Namespace>(name)); in DeclareNamespace()
167 return Declare(name->value, std::unique_ptr<TypeAlias>( in DeclareType()
177 return Declare(name->value, std::move(alias_ptr)); in PredeclareTypeAlias()
221 Declare(name, macro); in DeclareMacro()
253 Declare(name, result); in DeclareIntrinsic()
273 return Declare(name, CreateBuiltin(name, name, kind, signature, body)); in DeclareBuiltin()
279 return Declare(name, RegisterDeclarable(std::unique_ptr<RuntimeFunction>( in DeclareRuntimeFunction()
287 return Declare(name->value, std::unique_ptr<ExternConstant>( in DeclareExternConstant()
299 Declare(name->value, std::move(namespaceConstant)); in DeclareNamespaceConstant()
305 return Declare(nam in DeclareGenericCallable()
[all...]
H A Ddeclarations.h148 static T* Declare(const std::string& name, T* d) { in Declare() function in v8::internal::torque::Declarations
153 static T* Declare(const std::string& name, std::unique_ptr<T> d) { in Declare() function in v8::internal::torque::Declarations
H A Ddeclaration-visitor.cc126 Declarations::Declare(decl->name->value, builtin); in Visit()
185 Declarations::Declare(decl->name->value, builtin); in Visit()
/third_party/vixl/tools/test_generator/
H A Ddata_types.py64 def Declare(): member in OperandBase
110 def Declare(self): member in Operand
153 def Declare(self): member in OperandWrapper
158 return "\n".join([operand.Declare() for operand in self.operand_list])
226 def Declare(): member in Input
310 def Declare(self): member in Scalar
560 def Declare(self): member in MemOperand
562 Declare the input as a two element array.
H A Dgenerator.py130 # Declare functions that will be callable from Python expressions in
364 return "".join([operand.Declare() for operand in self.operands])
375 return "".join([input.Declare() for input in self.inputs])
/third_party/skia/gm/
H A Ddsl_processor_test.cpp38 Declare(x);
42 Declare(blueAlpha);
45 Declare(coords);
/third_party/skia/src/sksl/dsl/
H A DDSLCore.cpp144 static void Declare(const DSLModifiers& modifiers) { in Declare() function in SkSL::dsl::DSLCore
149 static DSLStatement Declare(DSLVar& var, PositionInfo pos) { in Declare() function in SkSL::dsl::DSLCore
157 static DSLStatement Declare(SkTArray<DSLVar>& vars, PositionInfo pos) { in Declare() function in SkSL::dsl::DSLCore
160 statements.push_back(Declare(v, pos).release()); in Declare()
165 static void Declare(DSLGlobalVar& var, PositionInfo pos) { in Declare() function in SkSL::dsl::DSLCore
188 static void Declare(SkTArray<DSLGlobalVar>& vars, PositionInfo pos) { in Declare() function in SkSL::dsl::DSLCore
190 Declare(v, pos); in Declare()
387 void Declare(const DSLModifiers& modifiers, PositionInfo pos) { in Declare() function
395 DSLCore::Declare(modifiers); in Declare()
398 // Logically, we'd want the variable's initial value to appear on here in Declare, sinc
410 DSLStatement Declare(DSLVar& var, PositionInfo pos) { Declare() function
414 DSLStatement Declare(SkTArray<DSLVar>& vars, PositionInfo pos) { Declare() function
418 void Declare(DSLGlobalVar& var, PositionInfo pos) { Declare() function
422 void Declare(SkTArray<DSLGlobalVar>& vars, PositionInfo pos) { Declare() function
[all...]
/third_party/skia/tests/
H A DSkSLDSLTest.cpp41 * don't have to sprinkle all the tests with a bunch of Declare(foo).release() calls just to avoid
164 EXPECT_EQUAL(Declare(x), "int x;"); in DEF_GPUTEST_FOR_MOCK_CONTEXT()
180 EXPECT_EQUAL(Declare(x), "int _0_x;"); in DEF_GPUTEST_FOR_MOCK_CONTEXT()
1283 EXPECT_EQUAL(Block(Declare(a), Declare(b), a = b), "{ int a = 1; int b = 2; (a = b); }");
1297 For(Declare(i), i < 10, ++i, Block( in DEF_GPUTEST_FOR_MOCK_CONTEXT()
1317 For(Declare(i), i < 10, ++i, Block( in DEF_GPUTEST_FOR_MOCK_CONTEXT()
1337 EXPECT_EQUAL(Declare(a), "half4 a;");
1338 EXPECT_EQUAL(Declare(b), "half4 b = half4(1.0);");
1346 EXPECT_EQUAL(Declare(var
[all...]
H A DSkDSLRuntimeEffectTest.cpp136 Declare(gColor); in test_RuntimeEffect_Shaders()
152 Declare(gColor); in test_RuntimeEffect_Shaders()
256 Declare(child); in test_RuntimeEffect_Shaders()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
H A DStripSymbols.cpp254 Function *Declare = M.getFunction("llvm.dbg.declare"); in runOnModule()
257 if (Declare) { in runOnModule()
258 while (!Declare->use_empty()) { in runOnModule()
259 CallInst *CI = cast<CallInst>(Declare->user_back()); in runOnModule()
274 Declare->eraseFromParent(); in runOnModule()
/third_party/skia/src/sksl/dsl/priv/
H A DDSLWriter.cpp102 block.children().push_back(Declare(additional).release()); in AddVarDeclaration()
107 stmts.push_back(Declare(additional).release()); in AddVarDeclaration()
111 existing.fStatement = Declare(additional).release(); in AddVarDeclaration()
/third_party/skia/third_party/externals/tint/src/resolver/
H A Ddependency_graph.cc144 Declare(str->name, str); in Scan()
151 Declare(alias->name, alias); in Scan()
156 Declare(func->symbol, func); in Scan()
162 Declare(var->symbol, var); in Scan()
183 Declare(param->symbol, param); in TraverseFunction()
266 Declare(v->variable->symbol, v->variable); in TraverseStatement()
279 void Declare(Symbol symbol, const ast::Node* node) { in Declare() function in tint::resolver::__anon26049::DependencyScanner
/third_party/skia/include/sksl/
H A DDSLCore.h94 void Declare(const DSLModifiers& modifiers, PositionInfo pos = PositionInfo::Capture());
99 DSLStatement Declare(DSLVar& var, PositionInfo pos = PositionInfo::Capture());
104 DSLStatement Declare(SkTArray<DSLVar>& vars, PositionInfo pos = PositionInfo::Capture());
109 void Declare(DSLGlobalVar& var, PositionInfo pos = PositionInfo::Capture());
114 void Declare(SkTArray<DSLGlobalVar>& vars, PositionInfo pos = PositionInfo::Capture());
/third_party/node/deps/v8/src/ast/
H A Dscopes.cc34 // When inserting a new variable via Declare(), we rely on the fact that
49 Variable* VariableMap::Declare(Zone* zone, Scope* scope, in Declare() function in v8::internal::VariableMap
118 Variable* home_object_variable = Declare( in DeclareHomeObjectVariable()
132 Declare(zone(), ast_value_factory->dot_static_home_object_string(), in DeclareStaticHomeObjectVariable()
304 Declare(zone, catch_variable_name, VariableMode::kVar, NORMAL_VARIABLE, in Scope()
759 // Declare 'arguments' variable which exists in all non arrow functions. Note in DeclareArguments()
765 Declare(zone(), ast_value_factory->arguments_string(), VariableMode::kVar, in DeclareArguments()
785 new_target_ = Declare(zone(), ast_value_factory->new_target_string(), in DeclareDefaultFunctionVariables()
792 EnsureRareData()->this_function = Declare( in DeclareDefaultFunctionVariables()
1000 Variable* var = cache->variables_.Declare( in LookupInScopeInfo()
[all...]
H A Dscopes.h66 Variable* Declare(Zone* zone, Scope* scope, const AstRawString* name,
202 // Declare a local variable in this scope. If the variable has been
650 Variable* Declare(Zone* zone, const AstRawString* name, VariableMode mode, in Declare() function in v8::internal::Scope
654 Variable* result = variables_.Declare( in Declare()
1003 // Declare the function variable for a function literal. This variable
1014 // Declare some special internal variables which must be accessible to
1018 // Declare a parameter in this scope. When there are duplicated
1028 // Declare an implicit global variable in this scope which must be a
1417 // Declare a private name in the private name map and add it to the
/third_party/node/deps/v8/src/parsing/
H A Dexpression-scope.h58 Variable* var = Declare(name, pos); in NewVariable()
111 Variable* Declare(const AstRawString* name, int pos = kNoSourcePosition) { in Declare() function in v8::internal::ExpressionScope
113 return AsParameterDeclarationParsingScope()->Declare(name, pos); in Declare()
115 return AsVariableDeclarationParsingScope()->Declare(name, pos); in Declare()
371 Variable* Declare(const AstRawString* name, int pos) { in Declare() function in v8::internal::VariableDeclarationParsingScope
439 Variable* Declare(const AstRawString* name, int pos) { in Declare() function in v8::internal::ParameterDeclarationParsingScope
H A Dparser.h428 void Declare(Declaration* declaration, const AstRawString* name,
832 expression_scope()->Declare(name, start_position); in DeclareIdentifier()
/third_party/ltp/scripts/
H A Dcheckpatch.pl528 our $Declare;
1003 $Declare = qr{(?:$Storage\s+(?:$Inline\s+)?)?$Type};
1063 } elsif ($line =~ /^\s*$Declare\s+(\w*(?:[A-Z][a-z]|[a-z][A-Z])\w*)\s*[\(\[,;]/) {
3789 $sline =~ /^\+\t+( +)(?:$c90_Keywords\b|\{\s*$|\}\s*(?:else\b|while\b|\s*$)|$Declare\s*$Ident\s*[;=])/) {
3802 $prevline =~ /^\+([ \t]*)((?:$c90_Keywords(?:\s+if)\s*)|(?:$Declare\s*)?(?:$Ident|\(\s*\*\s*$Ident\s*\))\s*|(?:\*\s*)*$Lval\s*=\s*$Ident\s*)\(.*(\&\&|\|\||,)\s*$/) {
3942 if (($pl =~ /^\+\s+$Declare\s*$Ident\s*[=,;:\[]/ ||
3944 $pl =~ /^\+\s+$Declare\s*\(\s*\*\s*$Ident\s*\)\s*[=,;:\[\(]/ ||
3956 !($sl =~ /^\+\s+$Declare\s*$Ident\s*[=,;:\[]/ ||
3958 $sl =~ /^\+\s+$Declare\s*\(\s*\*\s*$Ident\s*\)\s*[=,;:\[\(]/ ||
4323 if ($line =~ /^\+\s*(?:$Declare)
[all...]
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
H A DSpirvShaderDebugger.cpp327 struct Declare;
338 Declare,
386 case Object::Kind::Declare: return "Declare";
857 Declare *declaration = nullptr; // Used if definition == Definition::Declaration
887 // Declare represents the OpenCL.DebugInfo.100 DebugDeclare instruction.
889 struct Declare : ObjectImpl<Declare, Object, Object::Kind::Declare>
1770 defineOrEmit(insn, pass, [&](debug::Declare *dec
[all...]
/third_party/skia/third_party/externals/angle2/tools/flex-bison/third_party/skeletons/
H A Dyacc.c170 # Declare the variables that are global, or local to YYPARSE if
196 # Declare all the variables that are needed to maintain the parser state
/third_party/skia/src/sksl/
H A DSkSLDSLParser.cpp328 Declare(modifiers, position(lookahead)); in declaration()
458 Declare(first); in globalVarDeclarationEnd()
476 Declare(next); in globalVarDeclarationEnd()
497 DSLStatement result = Declare(first); in localVarDeclarationEnd()
/third_party/typescript/tests/baselines/reference/
H A DparserRealSource10.js26 Declare,
215 setTokenInfo(TokenID.Declare, Reservation.TypeScript, OperatorPrecedence.None, NodeType.None, OperatorPrecedence.None, NodeType.None, "declare", ErrorRecoverySet.Stmt);
498 TokenID[TokenID["Declare"] = 16] = "Declare";
687 setTokenInfo(TokenID.Declare, Reservation.TypeScript, OperatorPrecedence.None, NodeType.None, OperatorPrecedence.None, NodeType.None, "declare", ErrorRecoverySet.Stmt);

Completed in 33 milliseconds

12