Home
last modified time | relevance | path

Searched refs:c_ (Results 1 – 25 of 83) sorted by relevance

1234

/third_party/gn/src/gn/
Dheader_checker_unittest.cc23 c_(setup_.settings(), Label(SourceDir("//c/"), "c")), in HeaderCheckerTest()
27 c_.set_output_type(Target::SOURCE_SET); in HeaderCheckerTest()
33 c_.SetToolchain(setup_.toolchain(), &err); in HeaderCheckerTest()
37 b_.public_deps().push_back(LabelTargetPair(&c_)); in HeaderCheckerTest()
42 c_.visibility().SetPublic(); in HeaderCheckerTest()
46 c_.OnResolved(&err); in HeaderCheckerTest()
52 targets_.push_back(&c_); in HeaderCheckerTest()
70 Target c_; member in __anon435914f00111::HeaderCheckerTest
92 p.private_deps().push_back(LabelTargetPair(&c_)); in TEST_F()
116 EXPECT_TRUE(checker->IsDependencyOf(&c_, &a_, &chain, &is_permitted)); in TEST_F()
[all …]
/third_party/mesa3d/src/amd/vulkan/radix_sort/common/
Dmacros.h80 #define STATIC_ASSERT_MACRO(c_,m_) static_assert(c_,m_) argument
82 #define STATIC_ASSERT_MACRO(c_,m_) _Static_assert(c_,m_) argument
85 #define STATIC_ASSERT_MACRO_1(c_) STATIC_ASSERT_MACRO(c_,#c_) argument
/third_party/openssl/crypto/chacha/asm/
Dchacha-x86.pl69 ($c,$c_)=("ecx","esi");
104 &mov (&DWP(4*$cp,"esp"),$c_) if ($ai>0 && $ai<3);
108 &mov ($c_,&DWP(4*$cn,"esp")) if ($ai>0 && $ai<3);
127 ($c,$c_)=($c_,$c);
197 &mov ($c_,&DWP(64+4*11,"esp"));
203 &mov (&DWP(4*11,"esp"),$c_);
212 &mov ($c_,&DWP(64+4*9,"esp"));
241 &add ($c_,&DWP(64+4*9,"esp"));
255 &xor ($c_,&DWP(4*9,$b));
260 &mov (&DWP(4*9,$a),$c_);
[all …]
/third_party/protobuf/src/google/protobuf/stubs/
Dcommon_unittest.cc170 void SetCMethod(string c) { c_ = c; } in SetCMethod()
173 static void SetCFunction(string c) { current_instance_->c_ = c; } in SetCFunction()
185 c_.clear(); in SetUp()
195 string c_; member in google::protobuf::__anond259a0e00111::ClosureTest
235 EXPECT_NE("test", c_); in TEST_F()
237 EXPECT_EQ("test", c_); in TEST_F()
243 EXPECT_NE("test", c_); in TEST_F()
245 EXPECT_EQ("test", c_); in TEST_F()
/third_party/skia/third_party/externals/freetype/src/base/
Dftcalc.c175 FT_Long c_ ) in FT_MulDiv() argument
184 c = (FT_UInt64)c_; in FT_MulDiv()
188 FT_MOVE_SIGN( c_, c, s ); in FT_MulDiv()
204 FT_Long c_ ) in FT_MulDiv_No_Round() argument
213 c = (FT_UInt64)c_; in FT_MulDiv_No_Round()
217 FT_MOVE_SIGN( c_, c, s ); in FT_MulDiv_No_Round()
417 FT_Long c_ ) in FT_MulDiv() argument
427 c = (FT_UInt32)c_; in FT_MulDiv()
431 FT_MOVE_SIGN( c_, c, s ); in FT_MulDiv()
465 FT_Long c_ ) in FT_MulDiv_No_Round() argument
[all …]
/third_party/flutter/skia/third_party/externals/freetype/src/base/
Dftcalc.c176 FT_Long c_ ) in FT_MulDiv() argument
185 c = (FT_UInt64)c_; in FT_MulDiv()
189 FT_MOVE_SIGN( c_, c, s ); in FT_MulDiv()
205 FT_Long c_ ) in FT_MulDiv_No_Round() argument
214 c = (FT_UInt64)c_; in FT_MulDiv_No_Round()
218 FT_MOVE_SIGN( c_, c, s ); in FT_MulDiv_No_Round()
418 FT_Long c_ ) in FT_MulDiv() argument
428 c = (FT_UInt32)c_; in FT_MulDiv()
432 FT_MOVE_SIGN( c_, c, s ); in FT_MulDiv()
466 FT_Long c_ ) in FT_MulDiv_No_Round() argument
[all …]
/third_party/freetype/src/base/
Dftcalc.c175 FT_Long c_ ) in FT_MulDiv() argument
184 c = (FT_UInt64)c_; in FT_MulDiv()
188 FT_MOVE_SIGN( c_, c, s ); in FT_MulDiv()
204 FT_Long c_ ) in FT_MulDiv_No_Round() argument
213 c = (FT_UInt64)c_; in FT_MulDiv_No_Round()
217 FT_MOVE_SIGN( c_, c, s ); in FT_MulDiv_No_Round()
417 FT_Long c_ ) in FT_MulDiv() argument
427 c = (FT_UInt32)c_; in FT_MulDiv()
431 FT_MOVE_SIGN( c_, c, s ); in FT_MulDiv()
465 FT_Long c_ ) in FT_MulDiv_No_Round() argument
[all …]
/third_party/typescript/tests/baselines/reference/
DcontextualTypingArrayDestructuringWithDefaults.symbols17 let [ c_ = {a: "a"} ]: I[] = [];
18 >c_ : Symbol(c_, Decl(contextualTypingArrayDestructuringWithDefaults.ts, 3, 5))
DcontextualTypingArrayDestructuringWithDefaults.js5 let [ c_ = {a: "a"} ]: I[] = [];
17 var _d = [][0], c_ = _d === void 0 ? { a: "a" } : _d; variable
DcontextualTypingArrayDestructuringWithDefaults.types22 let [ c_ = {a: "a"} ]: I[] = [];
23 >c_ : I
/third_party/jerryscript/tests/jerry/es2015/
Dmodule-import-03.js16 import incrementer, {aa, c_, x,} from "module-export-03.js"
24 assert (c_(x) == 84);
Dmodule-import-02.js17 import {b_, c_,} from "module-export-02.js";
22 assert (c_(b_) === 10)
Dmodule-export-02.js18 export {bb as b_, cc as c_} from "module-export-01.js";
/third_party/harfbuzz/src/
Dhb-aat-layout-kerx-table.hh126 hb_aat_apply_context_t *c_) : in accelerator_t()
127 table (table_), c (c_) {} in accelerator_t()
220 hb_aat_apply_context_t *c_) : in driver_context_t()
221 c (c_), in driver_context_t()
419 hb_aat_apply_context_t *c_) : in accelerator_t()
420 table (table_), c (c_) {} in accelerator_t()
485 hb_aat_apply_context_t *c_) : in driver_context_t()
486 c (c_), in driver_context_t()
697 hb_aat_apply_context_t *c_) : in accelerator_t()
698 table (table_), c (c_) {} in accelerator_t()
Dhb-aat-layout-morx-table.hh215 hb_aat_apply_context_t *c_) : in driver_context_t()
217 c (c_), in driver_context_t()
442 hb_aat_apply_context_t *c_) : in driver_context_t()
444 c (c_), in driver_context_t()
705 hb_aat_apply_context_t *c_) : in driver_context_t()
707 c (c_), in driver_context_t()
/third_party/skia/third_party/externals/harfbuzz/src/
Dhb-aat-layout-kerx-table.hh126 hb_aat_apply_context_t *c_) : in accelerator_t()
127 table (table_), c (c_) {} in accelerator_t()
220 hb_aat_apply_context_t *c_) : in driver_context_t()
221 c (c_), in driver_context_t()
419 hb_aat_apply_context_t *c_) : in accelerator_t()
420 table (table_), c (c_) {} in accelerator_t()
485 hb_aat_apply_context_t *c_) : in driver_context_t()
486 c (c_), in driver_context_t()
697 hb_aat_apply_context_t *c_) : in accelerator_t()
698 table (table_), c (c_) {} in accelerator_t()
Dhb-aat-layout-morx-table.hh216 hb_aat_apply_context_t *c_) : in driver_context_t()
218 c (c_), in driver_context_t()
453 hb_aat_apply_context_t *c_) : in driver_context_t()
455 c (c_), in driver_context_t()
722 hb_aat_apply_context_t *c_) : in driver_context_t()
724 c (c_), in driver_context_t()
/third_party/flutter/skia/third_party/externals/harfbuzz/src/
Dhb-aat-layout-kerx-table.hh126 hb_aat_apply_context_t *c_) : in accelerator_t()
127 table (table_), c (c_) {} in accelerator_t()
220 hb_aat_apply_context_t *c_) : in driver_context_t()
221 c (c_), in driver_context_t()
425 hb_aat_apply_context_t *c_) : in accelerator_t()
426 table (table_), c (c_) {} in accelerator_t()
491 hb_aat_apply_context_t *c_) : in driver_context_t()
492 c (c_), in driver_context_t()
699 hb_aat_apply_context_t *c_) : in accelerator_t()
700 table (table_), c (c_) {} in accelerator_t()
Dhb-aat-layout-morx-table.hh215 hb_aat_apply_context_t *c_) : in driver_context_t()
217 c (c_), in driver_context_t()
442 hb_aat_apply_context_t *c_) : in driver_context_t()
444 c (c_), in driver_context_t()
705 hb_aat_apply_context_t *c_) : in driver_context_t()
707 c (c_), in driver_context_t()
/third_party/node/deps/npm/node_modules/text-table/
Dindex.js18 return map(row, function (c_, ix) { argument
19 var c = String(c_);
/third_party/python/Modules/_xxtestfuzz/dictionaries/
Dfuzz_sre_compile.dict48 "\\c_"
51 "[\\c_]"
/third_party/typescript/tests/cases/compiler/
DcontextualTypingArrayDestructuringWithDefaults.ts4 let [ c_ = {a: "a"} ]: I[] = []; variable
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
Dstr_split.h158 explicit ByChar(char c) : c_(c) {} in ByChar()
162 char c_;
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
Dloop_dependence.h203 : Constraint(loop), a_(a), b_(b), c_(c) {} in DependenceLine()
212 SENode* GetC() const { return c_; } in GetC()
217 SENode* c_; variable
/third_party/skia/third_party/externals/spirv-tools/source/opt/
Dloop_dependence.h203 : Constraint(loop), a_(a), b_(b), c_(c) {} in DependenceLine()
212 SENode* GetC() const { return c_; } in GetC()
217 SENode* c_; variable

1234