Home
last modified time | relevance | path

Searched refs:Declare (Results 1 – 25 of 232) sorted by relevance

12345678910

/third_party/boost/tools/boost_install/test/iostreams/zlib-1.2.11/old/
Dvisual-basic.txt32 Declare Function compress Lib "ZLIB.DLL" (ByVal compr As
35 Declare Function uncompress Lib "ZLIB.DLL" (ByVal uncompr
38 Declare Function gzopen Lib "ZLIB.DLL" (ByVal filePath As
40 Declare Function gzread Lib "ZLIB.DLL" (ByVal file As
43 Declare Function gzwrite Lib "ZLIB.DLL" (ByVal file As
46 Declare Function gzclose Lib "ZLIB.DLL" (ByVal file As
49 Declare Function compress Lib "ZLIB32.DLL"
52 Declare Function uncompress Lib "ZLIB32.DLL"
55 Declare Function gzopen Lib "ZLIB32.DLL"
57 Declare Function gzread Lib "ZLIB32.DLL"
[all …]
/third_party/boost/libs/beast/test/extern/zlib-1.2.11/old/
Dvisual-basic.txt32 Declare Function compress Lib "ZLIB.DLL" (ByVal compr As
35 Declare Function uncompress Lib "ZLIB.DLL" (ByVal uncompr
38 Declare Function gzopen Lib "ZLIB.DLL" (ByVal filePath As
40 Declare Function gzread Lib "ZLIB.DLL" (ByVal file As
43 Declare Function gzwrite Lib "ZLIB.DLL" (ByVal file As
46 Declare Function gzclose Lib "ZLIB.DLL" (ByVal file As
49 Declare Function compress Lib "ZLIB32.DLL"
52 Declare Function uncompress Lib "ZLIB32.DLL"
55 Declare Function gzopen Lib "ZLIB32.DLL"
57 Declare Function gzread Lib "ZLIB32.DLL"
[all …]
/third_party/zlib/old/
Dvisual-basic.txt32 Declare Function compress Lib "ZLIB.DLL" (ByVal compr As
35 Declare Function uncompress Lib "ZLIB.DLL" (ByVal uncompr
38 Declare Function gzopen Lib "ZLIB.DLL" (ByVal filePath As
40 Declare Function gzread Lib "ZLIB.DLL" (ByVal file As
43 Declare Function gzwrite Lib "ZLIB.DLL" (ByVal file As
46 Declare Function gzclose Lib "ZLIB.DLL" (ByVal file As
49 Declare Function compress Lib "ZLIB32.DLL"
52 Declare Function uncompress Lib "ZLIB32.DLL"
55 Declare Function gzopen Lib "ZLIB32.DLL"
57 Declare Function gzread Lib "ZLIB32.DLL"
[all …]
/third_party/gn/src/gn/
Dfunctions_target.cc511 const char kCopy_HelpShort[] = "copy: Declare a target that copies files."; in RunCreateBundle()
513 R"(copy: Declare a target that copies files. in RunCreateBundle()
563 "executable: Declare an executable target."; in RunCopy()
565 R"(executable: Declare an executable target. in RunCopy()
588 const char kGroup_HelpShort[] = "group: Declare a named group of targets."; in RunCopy()
590 R"(group: Declare a named group of targets. in RunCopy()
624 "loadable_module: Declare a loadable module target."; in RunGroup()
626 R"(loadable_module: Declare a loadable module target. in RunGroup()
658 "rust_library: Declare a Rust library target."; in RunGroup()
660 R"(rust_library: Declare a Rust library target. in RunGroup()
[all …]
/third_party/boost/libs/python/example/quickstart/
DJamfile14 # Declare a Python extension called hello.
17 # Declare an executable called embedding that embeds Python
20 # Declare a test of the extension module
23 # Declare a test of the embedding application
/third_party/skia/src/gpu/effects/
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()
DGrConvexPolyEffect.cpp103 Declare(edgeArray); in onMakeProgramImpl()
106 Declare(alpha); in onMakeProgramImpl()
108 Declare(edge); in onMakeProgramImpl()
/third_party/node/deps/npm/node_modules/es6-promisify/
DREADME.md20 // Declare variables
39 // Declare variables
60 // Declare functions
65 // Declare variables
/third_party/skia/gm/
Ddsl_processor_test.cpp38 Declare(x); in onMakeProgramImpl()
42 Declare(blueAlpha); in onMakeProgramImpl()
45 Declare(coords); in onMakeProgramImpl()
/third_party/skia/src/sksl/dsl/
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()
410 DSLStatement Declare(DSLVar& var, PositionInfo pos) { in Declare() function
[all …]
/third_party/skia/tests/
DSkSLDSLTest.cpp164 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); }"); in DEF_GPUTEST_FOR_MOCK_CONTEXT()
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;"); in DEF_GPUTEST_FOR_MOCK_CONTEXT()
1338 EXPECT_EQUAL(Declare(b), "half4 b = half4(1.0);"); in DEF_GPUTEST_FOR_MOCK_CONTEXT()
1346 EXPECT_EQUAL(Declare(vars), "bool a = true; float b;"); in DEF_GPUTEST_FOR_MOCK_CONTEXT()
1353 Declare(a); in DEF_GPUTEST_FOR_MOCK_CONTEXT()
1354 Declare(b); in DEF_GPUTEST_FOR_MOCK_CONTEXT()
[all …]
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/
DStripSymbols.cpp254 Function *Declare = M.getFunction("llvm.dbg.declare"); in runOnModule() local
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/boost/tools/build/example/gettext/
Djamfile.jam6 # Declare a main target.
9 # Declare an action for updating translations
/third_party/skia/src/sksl/dsl/priv/
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/ltp/tools/sparse/sparse-src/Documentation/release-notes/
Dv0.3.rst97 * Declare die_if_error extern in lib.h
99 * Declare do_error static
100 * Declare gcc_patchlevel extern in lib.h
101 * compile-i386.c: Declare regs_in_use static
102 * simplify.c: Declare delete_pseudo_user_list_entry static
/third_party/skia/third_party/externals/tint/src/resolver/
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::__anona1ed81430111::DependencyScanner
/third_party/skia/include/sksl/
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/boost/tools/build/src/tools/
Dmipspro.jam51 # Declare generators
66 # Declare flags and actions for compilation
101 # Declare flags and actions for linking
144 # Declare action for creating static libraries
Dpathscale.jam69 # Declare generators
75 # Declare flags and actions for compilation
135 # Declare flags and actions for linking
175 # Declare action for creating static libraries
Dpgi.jam45 # Declare generators
50 # Declare flags and actions for compilation
101 # Declare flags and actions for linking
Dwhale.jam40 # Declare the types.
46 # Declare standard generators.
/third_party/boost/tools/build/example/customization/
Dverbatim.jam13 # Declare a new target type. This allows B2 to do something sensible
18 # Declare a dependency scanner for the new target type. The
/third_party/boost/libs/hof/doc/html/_sources/include/boost/hof/
Dlift.hpp.txt38 /// // Declare a class named `name` that will forward to the function
48 /// // Declare the class `max_f`
/third_party/boost/tools/build/example/libraries/app/
Djamfile.jam6 # Declare a executable file, which uses a library. Note that

12345678910