Home
last modified time | relevance | path

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

12

/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
Dproxy.h100 MethodCall0(C* c, Method m) : c_(c), m_(m) {} in MethodCall0()
108 void OnMessage(talk_base::Message*) { r_.Invoke(c_, m_);} in OnMessage()
110 C* c_; variable
120 ConstMethodCall0(C* c, Method m) : c_(c), m_(m) {} in ConstMethodCall0()
128 void OnMessage(talk_base::Message*) { r_.Invoke(c_, m_); } in OnMessage()
130 C* c_; variable
140 MethodCall1(C* c, Method m, T1 a1) : c_(c), m_(m), a1_(a1) {} in MethodCall1()
148 void OnMessage(talk_base::Message*) { r_.Invoke(c_, m_, a1_); } in OnMessage()
150 C* c_; variable
161 ConstMethodCall1(C* c, Method m, T1 a1) : c_(c), m_(m), a1_(a1) {} in ConstMethodCall1()
[all …]
/external/chromium_org/tools/gn/
Dheader_checker_unittest.cc20 c_(setup_.settings(), Label(SourceDir("//c/"), "c")) { in HeaderCheckerTest()
22 b_.deps().push_back(LabelTargetPair(&c_)); in HeaderCheckerTest()
27 c_.visibility().SetPublic(); in HeaderCheckerTest()
31 targets_.push_back(&c_); in HeaderCheckerTest()
43 Target c_; member in __anon3ee65d030111::HeaderCheckerTest
64 EXPECT_TRUE(checker->IsDependencyOf(&c_, &a_, &chain)); in TEST_F()
66 EXPECT_EQ(&c_, chain[0]); in TEST_F()
71 EXPECT_FALSE(checker->IsDependencyOf(&a_, &c_, &chain)); in TEST_F()
89 c_.set_all_headers_public(true); in TEST_F()
94 c_.sources().push_back(c_private); in TEST_F()
[all …]
/external/compiler-rt/lib/tsan/rtl/
Dtsan_stack_trace.cc23 , c_() { in StackTrace()
29 , c_(cnt) { in StackTrace()
39 if (s_ && !c_) { in Reset()
51 if (c_) { in Init()
53 CHECK_LE(cnt, c_); in Init()
67 if (c_) { in ObtainCurrent()
69 if (n_ + !!toppc > c_) { in ObtainCurrent()
70 start = n_ - c_ + !!toppc; in ObtainCurrent()
71 n_ = c_ - !!toppc; in ObtainCurrent()
Dtsan_stack_trace.h46 const uptr c_; variable
/external/chromium_org/courgette/
Dmemory_monitor.cc20 m_[s], c_[s], h_[s], h_[s] * s); in ~H()
53 for (M::iterator p = c_.begin(); p != c_.end(); ++p) { in tick()
77 c_[s] += 1; in add()
79 if (c_[s] > h_[s]) h_[s] = c_[s]; in add()
92 c_[s] -= 1; in sub()
102 M c_; member
/external/ceres-solver/internal/ceres/
Dloss_function.cc63 const double sum = 1.0 + s * c_; in Evaluate()
68 rho[2] = - (c_ * rho[1]) / (2.0 * sum); in Evaluate()
72 const double sum = 1.0 + s * c_; in Evaluate()
77 rho[2] = - c_ * (inv * inv); in Evaluate()
92 c_(b * log(1.0 + exp(-a / b))) { in TolerantLoss()
105 rho[0] = s - a_ - c_; in Evaluate()
110 rho[0] = b_ * log(1.0 + e_x) - c_; in Evaluate()
/external/ceres-solver/include/ceres/
Dloss_function.h193 explicit SoftLOneLoss(double a) : b_(a * a), c_(1 / b_) { } in SoftLOneLoss()
200 const double c_; variable
210 explicit CauchyLoss(double a) : b_(a * a), c_(1 / b_) { } in CauchyLoss()
217 const double c_; variable
274 const double a_, b_, c_;
/external/protobuf/src/google/protobuf/stubs/
Dcommon_unittest.cc169 void SetCMethod(string c) { c_ = c; } in SetCMethod()
172 static void SetCFunction(string c) { current_instance_->c_ = c; } in SetCFunction()
184 c_.clear(); in SetUp()
189 string c_; member in google::protobuf::__anon8d039f540111::ClosureTest
228 EXPECT_NE("test", c_); in TEST_F()
230 EXPECT_EQ("test", c_); in TEST_F()
236 EXPECT_NE("test", c_); in TEST_F()
238 EXPECT_EQ("test", c_); in TEST_F()
/external/libcxx/test/utilities/utility/pairs/pair.piecewise/
Dpiecewise_construct.pass.cpp24 char c_; member in A
26 A(int i, char c) : i_(i), c_(c) {} in A()
28 char get_c() const {return c_;} in get_c()
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
Dcommon_unittest.cc169 void SetCMethod(string c) { c_ = c; } in SetCMethod()
172 static void SetCFunction(string c) { current_instance_->c_ = c; } in SetCFunction()
184 c_.clear(); in SetUp()
194 string c_; member in google::protobuf::__anonb05e63c70111::ClosureTest
234 EXPECT_NE("test", c_); in TEST_F()
236 EXPECT_EQ("test", c_); in TEST_F()
242 EXPECT_NE("test", c_); in TEST_F()
244 EXPECT_EQ("test", c_); in TEST_F()
/external/clang/test/Sema/
Dwarn-thread-safety-analysis.c47 int c_ GUARDED_VAR;
48 int *d_ PT_GUARDED_VAR = &c_;
112 c_ = 0; // expected-warning{{writing variable 'c_' requires holding any mutex exclusively}} in main()
115 c_ = 1; in main()
/external/clang/test/CodeGenCXX/
Dconstructor-destructor-return-this.cpp54 char *c_; member in C
57 C::C(int *i, char *c) : B(i), c_(c) { } in C()
/external/chromium_org/ppapi/utility/
Dcompletion_callback_factory.h769 c_() {
775 c_(c) {
779 (object->*method_)(result, a_, b_, c_);
785 C c_;
799 c_(),
807 c_(c),
816 a_, b_, c_);
828 C c_;
/external/chromium_org/v8/test/webkit/fast/regex/
Dmalformed-escapes-expected.txt38 Testing regexp: /\c_/gm
39 PASS regexp.test('\\c_') is true
57 Testing regexp: /^[\c_]$/
/external/harfbuzz_ng/src/
Dhb-ot-layout-common-private.hh673 inline void init (const struct CoverageFormat1 &c_) { c = &c_; i = 0; }; in init()
770 inline void init (const CoverageFormat2 &c_) { in init()
771 c = &c_; in init()
774 j = c->rangeRecord.len ? c_.rangeRecord[0].start : 0; in init()
874 inline void init (const Coverage &c_) { in init()
875 format = c_.u.format; in init()
877 case 1: u.format1.init (c_.u.format1); return; in init()
878 case 2: u.format2.init (c_.u.format2); return; in init()
/external/chromium_org/third_party/harfbuzz-ng/src/
Dhb-ot-layout-common-private.hh672 inline void init (const struct CoverageFormat1 &c_) { c = &c_; i = 0; }; in init()
769 inline void init (const CoverageFormat2 &c_) { in init()
770 c = &c_; in init()
773 j = c->rangeRecord.len ? c_.rangeRecord[0].start : 0; in init()
873 inline void init (const Coverage &c_) { in init()
874 format = c_.u.format; in init()
876 case 1: u.format1.init (c_.u.format1); return; in init()
877 case 2: u.format2.init (c_.u.format2); return; in init()
/external/clang/test/Modules/Inputs/separate_map_tree/src/
Dprivate-in-c.h3 const int c_ = 2; variable
/external/clang/test/Modules/
Dseparate_map_tree.cpp8 const int val = common + b + c + c_; // expected-error {{undeclared identifier}}
/external/stressapptest/src/
Dfinelock_queue.cc95 c_ = c; in FineLockPEQueue()
343 next_try = (a_ * next_try + c_) % (modlength_); in GetRandomWithPredicateTag()
347 next_try = (a_ * next_try + c_) % (modlength_); in GetRandomWithPredicateTag()
Dfinelock_queue.h105 int64 c_; // 'c' additive value for prgressing randomly variable
/external/chromium_org/third_party/webrtc/modules/audio_processing/aec/
Daec_rdft_sse2.c282 const __m128 c_ = _mm_mul_ps(wkr_, xi_); in rftfsub_128_SSE2() local
285 const __m128 yi_ = _mm_add_ps(c_, d_); // 3-127, 5-125, 7-123, 9-121, in rftfsub_128_SSE2()
373 const __m128 c_ = _mm_mul_ps(wkr_, xi_); in rftbsub_128_SSE2() local
376 const __m128 yi_ = _mm_sub_ps(c_, d_); // 3-127, 5-125, 7-123, 9-121, in rftbsub_128_SSE2()
/external/webrtc/src/modules/audio_processing/aec/
Daec_rdft_sse2.c284 const __m128 c_ = _mm_mul_ps(wkr_, xi_); in rftfsub_128_SSE2() local
287 const __m128 yi_ = _mm_add_ps(c_, d_); // 3-127, 5-125, 7-123, 9-121, in rftfsub_128_SSE2()
375 const __m128 c_ = _mm_mul_ps(wkr_, xi_); in rftbsub_128_SSE2() local
378 const __m128 yi_ = _mm_sub_ps(c_, d_); // 3-127, 5-125, 7-123, 9-121, in rftbsub_128_SSE2()
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_source_files/pkb/de-DE/
Dde-DE_gl0_kdt_mgc3.pkb54 ��E��:sN�`�Ř�trvO`�������\k����K)�l��#p(4!�hF�>2��hF�>HI,;�������c_�?�6�8B��…
/external/bzip2/
Dbzip2.1.preformatted86 _b_z_c_a_t (or _b_z_i_p_2 _‐_d_c_) decompresses all specified files to
112 _b_z_i_p_2_r_e_c_o_v_e_r to try to recover data from damaged files.
125 … Force decompression. _b_z_i_p_2_, _b_u_n_z_i_p_2 and _b_z_c_a_t are
297 _b_z_i_p_2_r_e_c_o_v_e_r is a simple program whose purpose is to
303 _b_z_i_p_2_r_e_c_o_v_e_r takes a single argument, the name of the dam­
311 _b_z_i_p_2_r_e_c_o_v_e_r should be of most use dealing with large .bz2
360 _b_z_i_p_2_r_e_c_o_v_e_r versions prior to 1.0.2 used 32‐bit integers
/external/smali/
Dgradlew.bat83 rem the _cmd.exe /c_ return code!

12