Home
last modified time | relevance | path

Searched refs:accept (Results 1 – 25 of 1793) sorted by relevance

12345678910>>...72

/third_party/libxml2/result/expr/
Dbase2 Subexp: a => accept, Ok
3 Subexp: a | a => accept, Ok
6 Subexp: a => accept, Ok
7 Subexp: b => accept, Ok
8 Subexp: a | b => accept, Ok
12 Subexp: a => accept, Ok
13 Subexp: b => accept, Ok
14 Subexp: a | b => accept, Ok
15 Subexp: b | a => accept, Ok
16 Subexp: a | b | b => accept, Ok
[all …]
/third_party/mesa3d/src/compiler/glsl/
Dir_hv_accept.cpp55 ir_visitor_status s = ir->accept(v); in visit_list_elements()
68 ir_rvalue::accept(ir_hierarchical_visitor *v) in accept() function in ir_rvalue
75 ir_variable::accept(ir_hierarchical_visitor *v) in accept() function in ir_variable
82 ir_loop::accept(ir_hierarchical_visitor *v) in accept() function in ir_loop
98 ir_loop_jump::accept(ir_hierarchical_visitor *v) in accept() function in ir_loop_jump
105 ir_function_signature::accept(ir_hierarchical_visitor *v) in accept() function in ir_function_signature
121 ir_function::accept(ir_hierarchical_visitor *v) in accept() function in ir_function
133 ir_expression::accept(ir_hierarchical_visitor *v) in accept() function in ir_expression
141 switch (this->operands[i]->accept(v)) { in accept()
159 ir_texture::accept(ir_hierarchical_visitor *v) in accept() function in ir_texture
[all …]
Dir_print_visitor.cpp45 deconsted->accept(&v); in fprint()
243 inst->accept(this); in visit()
258 inst->accept(this); in visit()
275 sig->accept(this); in visit()
293 ir->operands[i]->accept(this); in visit()
305 ir->sampler->accept(this); in visit()
307 ir->coordinate->accept(this); in visit()
315 ir->sampler->accept(this); in visit()
320 ir->coordinate->accept(this); in visit()
328 ir->offset->accept(this); in visit()
[all …]
Dir.h109 virtual void accept(ir_visitor *) = 0;
110 virtual ir_visitor_status accept(ir_hierarchical_visitor *) = 0;
223 virtual void accept(ir_visitor *v) in accept() function
228 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
424 virtual void accept(ir_visitor *v) in accept() function
429 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
1193 virtual void accept(ir_visitor *v) in accept() function
1198 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
1335 virtual void accept(ir_visitor *v) in accept() function
1340 virtual ir_visitor_status accept(ir_hierarchical_visitor *);
[all …]
/third_party/littlefs/scripts/
Dexplode_asserts.py232 def accept(self, *patterns): member in Parse
239 m = self.accept(*patterns)
252 p.expect('assert') ; p.accept('ws') ; p.expect('(') ; p.accept('ws')
253 p.expect('strcmp') ; p.accept('ws') ; p.expect('(') ; p.accept('ws')
254 lh = pexpr(p) ; p.accept('ws')
255 p.expect(',') ; p.accept('ws')
256 rh = pexpr(p) ; p.accept('ws')
257 p.expect(')') ; p.accept('ws')
258 comp = p.expect('comp') ; p.accept('ws')
259 p.expect('0') ; p.accept('ws')
[all …]
/third_party/typescript/tests/baselines/reference/
DfunctionCalls.errors.txt1 …ionCalls/functionCalls.ts(8,1): error TS2347: Untyped function calls may not accept type arguments.
2 …ionCalls/functionCalls.ts(9,1): error TS2347: Untyped function calls may not accept type arguments.
3 …onCalls/functionCalls.ts(10,1): error TS2347: Untyped function calls may not accept type arguments.
4 …onCalls/functionCalls.ts(25,1): error TS2347: Untyped function calls may not accept type arguments.
5 …onCalls/functionCalls.ts(26,1): error TS2347: Untyped function calls may not accept type arguments.
6 …onCalls/functionCalls.ts(27,1): error TS2347: Untyped function calls may not accept type arguments.
7 …onCalls/functionCalls.ts(32,1): error TS2347: Untyped function calls may not accept type arguments.
8 …onCalls/functionCalls.ts(33,1): error TS2347: Untyped function calls may not accept type arguments.
9 …onCalls/functionCalls.ts(34,1): error TS2347: Untyped function calls may not accept type arguments.
22 !!! error TS2347: Untyped function calls may not accept type arguments.
[all …]
DanyAsGenericFunctionCall.errors.txt1 …yAsGenericFunctionCall.ts(5,9): error TS2347: Untyped function calls may not accept type arguments.
2 …yAsGenericFunctionCall.ts(6,9): error TS2347: Untyped function calls may not accept type arguments.
3 …yAsGenericFunctionCall.ts(9,9): error TS2347: Untyped function calls may not accept type arguments.
4 …AsGenericFunctionCall.ts(10,9): error TS2347: Untyped function calls may not accept type arguments.
14 !!! error TS2347: Untyped function calls may not accept type arguments.
17 !!! error TS2347: Untyped function calls may not accept type arguments.
22 !!! error TS2347: Untyped function calls may not accept type arguments.
25 !!! error TS2347: Untyped function calls may not accept type arguments.
/third_party/skia/src/sksl/lex/
DRegexNode.cpp12 std::vector<int> RegexNode::createStates(NFA* nfa, const std::vector<int>& accept) const { in createStates()
16 result.push_back(nfa->addState(NFAState(fPayload.fChar, accept))); in createStates()
38 result.push_back(nfa->addState(NFAState(fPayload.fBool, chars, accept))); in createStates()
42 std::vector<int> right = fChildren[1].createStates(nfa, accept); in createStates()
47 result.push_back(nfa->addState(NFAState(NFAState::kDot_Kind, accept))); in createStates()
50 std::vector<int> states = fChildren[0].createStates(nfa, accept); in createStates()
52 states = fChildren[1].createStates(nfa, accept); in createStates()
57 std::vector<int> next = accept; in createStates()
66 result = fChildren[0].createStates(nfa, accept); in createStates()
67 result.insert(result.end(), accept.begin(), accept.end()); in createStates()
[all …]
DNFA.cpp15 if (fStates[id].accept(s[i])) { in match()
31 int accept = INVALID; in match() local
35 if (accept == INVALID || result < accept) { in match()
36 accept = result; in match()
40 return accept; in match()
/third_party/flutter/skia/src/sksl/lex/
DRegexNode.cpp12 std::vector<int> RegexNode::createStates(NFA* nfa, const std::vector<int>& accept) const { in createStates()
16 result.push_back(nfa->addState(NFAState(fPayload.fChar, accept))); in createStates()
38 result.push_back(nfa->addState(NFAState(fPayload.fBool, chars, accept))); in createStates()
42 std::vector<int> right = fChildren[1].createStates(nfa, accept); in createStates()
47 result.push_back(nfa->addState(NFAState(NFAState::kDot_Kind, accept))); in createStates()
50 std::vector<int> states = fChildren[0].createStates(nfa, accept); in createStates()
52 states = fChildren[1].createStates(nfa, accept); in createStates()
57 std::vector<int> next = accept; in createStates()
66 result = fChildren[0].createStates(nfa, accept); in createStates()
67 result.insert(result.end(), accept.begin(), accept.end()); in createStates()
[all …]
DNFA.cpp15 if (fStates[id].accept(s[i])) { in match()
31 int accept = INVALID; in match() local
35 if (accept == INVALID || result < accept) { in match()
36 accept = result; in match()
40 return accept; in match()
/third_party/openssl/doc/man3/
DBIO_s_accept.pod9 BIO_set_bind_mode, BIO_get_bind_mode, BIO_do_accept - accept BIO
40 BIO_s_accept() returns the accept BIO method. This is a wrapper
41 round the platform's TCP/IP socket accept routines.
43 Using accept BIOs, TCP/IP connections can be accepted and data
47 Read and write operations on an accept BIO will perform I/O
54 If the close flag is set on an accept BIO then any active
58 Calling BIO_reset() on an accept BIO will close any active
63 the accept socket. See L<BIO_s_fd(3)>
65 BIO_set_accept_name() uses the string B<name> to set the accept
75 BIO_set_accept_port() uses the string B<port> to set the accept
[all …]
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtc/
Dreciprocal.inl13 …GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'sec' only accept floating-point value…
20 GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'sec' only accept floating-point inputs");
28 …GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'csc' only accept floating-point value…
35 GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'csc' only accept floating-point inputs");
43 …GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'cot' only accept floating-point value…
52 GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'cot' only accept floating-point inputs");
60 …GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'asec' only accept floating-point valu…
67 GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'asec' only accept floating-point inputs");
75 …GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'acsc' only accept floating-point valu…
82 GLM_STATIC_ASSERT(std::numeric_limits<T>::is_iec559, "'acsc' only accept floating-point inputs");
[all …]
/third_party/node/test/es-module/
Dtest-esm-loader-stringify-text.mjs6 mustNotCall('Should not accept Arrays'),
13 mustNotCall('Should accept ArrayBuffers'),
16 mustNotCall('Should not accept null'),
29 mustNotCall('Should accept SharedArrayBuffers'),
33 mustNotCall('Should accept strings'),
36 mustNotCall('Should not accept wrapper Strings'),
43 mustNotCall('Should accept Uint8Arrays'),
46 mustNotCall('Should not accept undefined'),
/third_party/mesa3d/src/gallium/drivers/r600/sb/
Dsb_pass.cpp53 if (n.accept(*this, true)) { in run_on()
63 I->accept(*this, true); in run_on()
64 I->accept(*this, false); in run_on()
69 n.accept(*this, false); in run_on()
86 if (n.accept(*this, true)) { in run_on()
96 I->accept(*this, true); in run_on()
97 I->accept(*this, false); in run_on()
102 n.accept(*this, false); in run_on()
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_instr_export.h64 void accept(ConstInstrVisitor& visitor) const override;
65 void accept(InstrVisitor& visitor) override;
101 void accept(ConstInstrVisitor& visitor) const override;
102 void accept(InstrVisitor& visitor) override;
142 void accept(ConstInstrVisitor& visitor) const override;
143 void accept(InstrVisitor& visitor) override;
182 void accept(ConstInstrVisitor& visitor) const override;
183 void accept(InstrVisitor& visitor) override;
207 void accept(ConstInstrVisitor& visitor) const override;
208 void accept(InstrVisitor& visitor) override;
[all …]
/third_party/skia/third_party/externals/icu/source/i18n/
Dnumparse_symbols.cpp47 accept(segment, result); in match()
55 accept(segment, result); in match()
92 void IgnorablesMatcher::accept(StringSegment&, ParsedNumber&) const { in accept() function in IgnorablesMatcher
105 void InfinityMatcher::accept(StringSegment& segment, ParsedNumber& result) const { in accept() function in InfinityMatcher
120 void MinusSignMatcher::accept(StringSegment& segment, ParsedNumber& result) const { in accept() function in MinusSignMatcher
134 void NanMatcher::accept(StringSegment& segment, ParsedNumber& result) const { in accept() function in NanMatcher
151 void PaddingMatcher::accept(StringSegment&, ParsedNumber&) const { in accept() function in PaddingMatcher
164 void PercentMatcher::accept(StringSegment& segment, ParsedNumber& result) const { in accept() function in PercentMatcher
178 void PermilleMatcher::accept(StringSegment& segment, ParsedNumber& result) const { in accept() function in PermilleMatcher
193 void PlusSignMatcher::accept(StringSegment& segment, ParsedNumber& result) const { in accept() function in PlusSignMatcher
Dnumparse_symbols.h38 virtual void accept(StringSegment& segment, ParsedNumber& result) const = 0;
62 void accept(StringSegment& segment, ParsedNumber& result) const override;
75 void accept(StringSegment& segment, ParsedNumber& result) const override;
89 void accept(StringSegment& segment, ParsedNumber& result) const override;
105 void accept(StringSegment& segment, ParsedNumber& result) const override;
120 void accept(StringSegment& segment, ParsedNumber& result) const override;
134 void accept(StringSegment& segment, ParsedNumber& result) const override;
147 void accept(StringSegment& segment, ParsedNumber& result) const override;
161 void accept(StringSegment& segment, ParsedNumber& result) const override;
/third_party/icu/icu4c/source/i18n/
Dnumparse_symbols.cpp47 accept(segment, result); in match()
55 accept(segment, result); in match()
92 void IgnorablesMatcher::accept(StringSegment&, ParsedNumber&) const { in accept() function in IgnorablesMatcher
105 void InfinityMatcher::accept(StringSegment& segment, ParsedNumber& result) const { in accept() function in InfinityMatcher
120 void MinusSignMatcher::accept(StringSegment& segment, ParsedNumber& result) const { in accept() function in MinusSignMatcher
134 void NanMatcher::accept(StringSegment& segment, ParsedNumber& result) const { in accept() function in NanMatcher
151 void PaddingMatcher::accept(StringSegment&, ParsedNumber&) const { in accept() function in PaddingMatcher
164 void PercentMatcher::accept(StringSegment& segment, ParsedNumber& result) const { in accept() function in PercentMatcher
178 void PermilleMatcher::accept(StringSegment& segment, ParsedNumber& result) const { in accept() function in PermilleMatcher
193 void PlusSignMatcher::accept(StringSegment& segment, ParsedNumber& result) const { in accept() function in PlusSignMatcher
Dnumparse_symbols.h38 virtual void accept(StringSegment& segment, ParsedNumber& result) const = 0;
62 void accept(StringSegment& segment, ParsedNumber& result) const override;
75 void accept(StringSegment& segment, ParsedNumber& result) const override;
89 void accept(StringSegment& segment, ParsedNumber& result) const override;
105 void accept(StringSegment& segment, ParsedNumber& result) const override;
120 void accept(StringSegment& segment, ParsedNumber& result) const override;
134 void accept(StringSegment& segment, ParsedNumber& result) const override;
147 void accept(StringSegment& segment, ParsedNumber& result) const override;
161 void accept(StringSegment& segment, ParsedNumber& result) const override;
/third_party/flutter/skia/third_party/externals/icu/source/i18n/
Dnumparse_symbols.cpp46 accept(segment, result); in match()
54 accept(segment, result); in match()
87 void IgnorablesMatcher::accept(StringSegment&, ParsedNumber&) const { in accept() function in IgnorablesMatcher
100 void InfinityMatcher::accept(StringSegment& segment, ParsedNumber& result) const { in accept() function in InfinityMatcher
115 void MinusSignMatcher::accept(StringSegment& segment, ParsedNumber& result) const { in accept() function in MinusSignMatcher
129 void NanMatcher::accept(StringSegment& segment, ParsedNumber& result) const { in accept() function in NanMatcher
146 void PaddingMatcher::accept(StringSegment&, ParsedNumber&) const { in accept() function in PaddingMatcher
159 void PercentMatcher::accept(StringSegment& segment, ParsedNumber& result) const { in accept() function in PercentMatcher
173 void PermilleMatcher::accept(StringSegment& segment, ParsedNumber& result) const { in accept() function in PermilleMatcher
188 void PlusSignMatcher::accept(StringSegment& segment, ParsedNumber& result) const { in accept() function in PlusSignMatcher
Dnumparse_symbols.h38 virtual void accept(StringSegment& segment, ParsedNumber& result) const = 0;
62 void accept(StringSegment& segment, ParsedNumber& result) const override;
75 void accept(StringSegment& segment, ParsedNumber& result) const override;
89 void accept(StringSegment& segment, ParsedNumber& result) const override;
105 void accept(StringSegment& segment, ParsedNumber& result) const override;
120 void accept(StringSegment& segment, ParsedNumber& result) const override;
134 void accept(StringSegment& segment, ParsedNumber& result) const override;
147 void accept(StringSegment& segment, ParsedNumber& result) const override;
161 void accept(StringSegment& segment, ParsedNumber& result) const override;
/third_party/node/deps/icu-small/source/i18n/
Dnumparse_symbols.cpp47 accept(segment, result); in match()
55 accept(segment, result); in match()
92 void IgnorablesMatcher::accept(StringSegment&, ParsedNumber&) const { in accept() function in IgnorablesMatcher
105 void InfinityMatcher::accept(StringSegment& segment, ParsedNumber& result) const { in accept() function in InfinityMatcher
120 void MinusSignMatcher::accept(StringSegment& segment, ParsedNumber& result) const { in accept() function in MinusSignMatcher
134 void NanMatcher::accept(StringSegment& segment, ParsedNumber& result) const { in accept() function in NanMatcher
151 void PaddingMatcher::accept(StringSegment&, ParsedNumber&) const { in accept() function in PaddingMatcher
164 void PercentMatcher::accept(StringSegment& segment, ParsedNumber& result) const { in accept() function in PercentMatcher
178 void PermilleMatcher::accept(StringSegment& segment, ParsedNumber& result) const { in accept() function in PermilleMatcher
193 void PlusSignMatcher::accept(StringSegment& segment, ParsedNumber& result) const { in accept() function in PlusSignMatcher
Dnumparse_symbols.h38 virtual void accept(StringSegment& segment, ParsedNumber& result) const = 0;
62 void accept(StringSegment& segment, ParsedNumber& result) const override;
75 void accept(StringSegment& segment, ParsedNumber& result) const override;
89 void accept(StringSegment& segment, ParsedNumber& result) const override;
105 void accept(StringSegment& segment, ParsedNumber& result) const override;
120 void accept(StringSegment& segment, ParsedNumber& result) const override;
134 void accept(StringSegment& segment, ParsedNumber& result) const override;
147 void accept(StringSegment& segment, ParsedNumber& result) const override;
161 void accept(StringSegment& segment, ParsedNumber& result) const override;
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/build_system/
Dsource_test.dart43 fooSource.accept(visitor);
52 barSource.accept(visitor);
61 barSource.accept(visitor);
74 fizzSource.accept(visitor);
81 fizzSource.accept(visitor);
89 fizzSource.accept(visitor);
96 fizzSource.accept(visitor);
103 fizzSource.accept(visitor);
111 fizzSource.accept(visitor);
118 fizzSource.accept(visitor);
[all …]

12345678910>>...72