Home
last modified time | relevance | path

Searched refs:token2 (Results 1 – 25 of 1360) sorted by relevance

12345678910>>...55

/dports/databases/sqlitestudio/sqlitestudio-3.3.3/SQLiteStudio3/coreSQLiteStudio/
H A Dcompletioncomparer.cpp16 if ((token1->priority > 0 || token2->priority > 0) && token1->priority != token2->priority) in operator ()()
17 return token1->priority > token2->priority; in operator ()()
19 if (token1->type != token2->type) in operator ()()
20 return token1->type < token2->type; in operator ()()
25 return compareColumns(token1, token2); in operator ()()
27 return compareTables(token1, token2); in operator ()()
29 return compareIndexes(token1, token2); in operator ()()
33 return compareViews(token1, token2); in operator ()()
104 return compareValues(token1, token2); in compareColumns()
264 return compareValues(token1, token2); in compareTriggers()
[all …]
H A Dcompletioncomparer.h14 bool operator()(const ExpectedTokenPtr& token1, const ExpectedTokenPtr& token2);
44 bool compareColumns(const ExpectedTokenPtr& token1, const ExpectedTokenPtr& token2);
49 bool compareTables(const ExpectedTokenPtr& token1, const ExpectedTokenPtr& token2);
50 bool compareIndexes(const ExpectedTokenPtr& token1, const ExpectedTokenPtr& token2);
51 bool compareTriggers(const ExpectedTokenPtr& token1, const ExpectedTokenPtr& token2);
52 bool compareViews(const ExpectedTokenPtr& token1, const ExpectedTokenPtr& token2);
56 bool compareByContext(const QString &token1, const QString &token2,
58 bool compareByContext(const QString &token1, const QString &token2,
60 bool compareByContext(const QString &token1, const QString &token2,
62 bool compareByContext(const QString &token1, const QString &token2,
[all …]
/dports/net/jgroups/jgroups-2.12.0/tests/junit-functional/org/jgroups/protocols/
H A DAUTHTest.java24 token2.setAuthValue("chris"); in testSimpleToken()
53 MD5Token token2=new MD5Token(); in testMD5Token() local
54 token2.setAuthValue("chris"); in testMD5Token()
55 token2.setHashType("MD5"); in testMD5Token()
72 MD5Token token2=new MD5Token(); in testMD5TokenMismatch() local
74 token2.setHashType("MD5"); in testMD5TokenMismatch()
91 MD5Token token2=new MD5Token(); in testSHAToken() local
92 token2.setAuthValue("chris"); in testSHAToken()
93 token2.setHashType("SHA"); in testSHAToken()
112 token2.setHashType("SHA"); in testSHATokenMismatch()
[all …]
/dports/devel/gitlist/gitlist/vendor/phpspec/prophecy/spec/Prophecy/Argument/
H A DArgumentsWildcardSpec.php22 TokenInterface $token2, argument
49 TokenInterface $token2, argument
55 $token2->isLast()->willReturn(false);
65 TokenInterface $token2, argument
71 $token2->isLast()->willReturn(false);
81 TokenInterface $token2, argument
87 $token2->isLast()->willReturn(false);
97 TokenInterface $token2, argument
103 $token2->isLast()->willReturn(false);
113 TokenInterface $token2, argument
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/common/tokens/
H A Dmulti_token_unittest.cc86 FooBarToken token2(bar); in TEST() local
91 EXPECT_TRUE(token2.Is<BarToken>()); in TEST()
95 token3 = token2; in TEST()
103 EXPECT_FALSE(token1 == token2); in TEST()
104 EXPECT_TRUE(token1 != token2); in TEST()
105 EXPECT_TRUE(token2 == token3); in TEST()
106 EXPECT_FALSE(token2 != token3); in TEST()
107 EXPECT_EQ(token1 < token2, token1.value() < token2.value()); in TEST()
108 EXPECT_FALSE(token2 < token3); in TEST()
109 EXPECT_FALSE(token3 < token2); in TEST()
[all …]
/dports/textproc/p5-Makefile-DOM/Makefile-DOM-0.008/t/mdom/
H A Dnode.t29 ok !$node->contains($token2), '$token2 not yet added';
30 $node->add_element($token2);
32 is $token2->parent, $node, '$token2\'s parent ok';
33 is $token2->previous_sibling, $token, '$token2\'s prev sibling is $token';
34 ok !$token2->next_sibling, 'no next sibling for $token2';
43 is $elems[1], $token2, '$token2 is the second one';
45 ok $node->contains($token2), 'contains $token2';
58 is $token3->previous_sibling, $token2, '$token3\'s prev sibling is $token2';
61 is $token2->previous_sibling, $token, '$token2\'s prev sibling is $token';
62 is $token2->next_sibling, $token3, '$token2\'s next sibling is $token3';
[all …]
/dports/textproc/py-mwparserfromhell/mwparserfromhell-0.6.3/tests/
H A Dtest_tokens.py44 assert "bar" == token2.foo
45 assert 123 == token2.baz
47 assert token2.bar is None
50 token2.foo = "ham"
51 del token2.baz
54 assert "ham" == token2.foo
55 assert token2.baz is None
75 token2 = tokens.Token()
81 assert token1 == token2
82 assert token2 == token1
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/base/util/type_safety/
H A Dtoken_type_unittest.cc19 FooToken token2(token1); in TEST() local
20 EXPECT_FALSE(token2.value().is_empty()); in TEST()
21 EXPECT_EQ(token1.value(), token2.value()); in TEST()
25 token3 = token2; in TEST()
27 EXPECT_EQ(token2.value(), token3.value()); in TEST()
32 EXPECT_TRUE(token1 == token2); in TEST()
33 EXPECT_TRUE(token2 == token3); in TEST()
35 EXPECT_FALSE(token1 != token2); in TEST()
39 EXPECT_EQ(FooToken::Hasher()(token2), in TEST()
40 base::UnguessableTokenHash()(token2.value())); in TEST()
[all …]
/dports/biology/py-python-libsbml/python-libsbml-5.19.0/libsbml_source/src/bindings/ruby/test/xml/
H A DTestXMLCopyAndClone.rb186 token2 = LibSBML::XMLToken.new()
187 token2 = token
191 assert( token2.isEnd() == true )
193 assert( token2.getLine() == 3 )
197 token2 = nil
210 token2 = token.clone()
214 assert( token2.isEnd() == true )
216 assert( token2.getLine() == 3 )
220 token2 = nil
239 assert( token2.getLine() == 3 )
[all …]
/dports/biology/libsbml/libsbml-5.19.0/src/bindings/ruby/test/xml/
H A DTestXMLCopyAndClone.rb186 token2 = LibSBML::XMLToken.new()
187 token2 = token
191 assert( token2.isEnd() == true )
193 assert( token2.getLine() == 3 )
197 token2 = nil
210 token2 = token.clone()
214 assert( token2.isEnd() == true )
216 assert( token2.getLine() == 3 )
220 token2 = nil
239 assert( token2.getLine() == 3 )
[all …]
/dports/chinese/enscript/enscript-1.6.6/src/
H A Dutil.c101 char *token, *token2; in read_config() local
187 token2, token)); in read_config()
193 strhash_put (download_fonts, token2, strlen (token2) + 1, NULL, in read_config()
203 token2, token)); in read_config()
215 token2, token)); in read_config()
256 name = token2; in read_config()
260 w = atoi (token2); in read_config()
264 h = atoi (token2); in read_config()
268 llx = atoi (token2); in read_config()
272 lly = atoi (token2); in read_config()
[all …]
/dports/print/enscript-letterdj/enscript-1.6.6/src/
H A Dutil.c101 char *token, *token2; in read_config() local
187 token2, token)); in read_config()
193 strhash_put (download_fonts, token2, strlen (token2) + 1, NULL, in read_config()
203 token2, token)); in read_config()
215 token2, token)); in read_config()
256 name = token2; in read_config()
260 w = atoi (token2); in read_config()
264 h = atoi (token2); in read_config()
268 llx = atoi (token2); in read_config()
272 lly = atoi (token2); in read_config()
[all …]
/dports/print/enscript-a4/enscript-1.6.6/src/
H A Dutil.c101 char *token, *token2; in read_config() local
187 token2, token)); in read_config()
193 strhash_put (download_fonts, token2, strlen (token2) + 1, NULL, in read_config()
203 token2, token)); in read_config()
215 token2, token)); in read_config()
256 name = token2; in read_config()
260 w = atoi (token2); in read_config()
264 h = atoi (token2); in read_config()
268 llx = atoi (token2); in read_config()
272 lly = atoi (token2); in read_config()
[all …]
/dports/print/enscript-letter/enscript-1.6.6/src/
H A Dutil.c101 char *token, *token2; in read_config() local
187 token2, token)); in read_config()
193 strhash_put (download_fonts, token2, strlen (token2) + 1, NULL, in read_config()
203 token2, token)); in read_config()
215 token2, token)); in read_config()
256 name = token2; in read_config()
260 w = atoi (token2); in read_config()
264 h = atoi (token2); in read_config()
268 llx = atoi (token2); in read_config()
272 lly = atoi (token2); in read_config()
[all …]
/dports/www/jesred/jesred-1.2pl1/
H A Dconfig.c81 char *token, *token2; in read_config() local
106 token2 = strchr(token,'='); in read_config()
107 if (token2) { in read_config()
108 *token2 = '\0'; in read_config()
112 token2++; in read_config()
113 token2 = CleanLine(token2); in read_config()
114 if (! token2) in read_config()
117 *allow = strdup(token2); in read_config()
119 *rules = strdup(token2); in read_config()
123 *rewrite = strdup(token2); in read_config()
[all …]
/dports/devel/hadoop/hadoop-1.2.1/src/test/org/apache/hadoop/security/authentication/client/
H A DTestAuthenticatedURL.java38 assertTrue(token1.equals(token2)); in testToken()
41 token2 = new AuthenticatedURL.Token("foo"); in testToken()
43 assertFalse(token1.equals(token2)); in testToken()
46 token2 = new AuthenticatedURL.Token(); in testToken()
48 assertFalse(token1.equals(token2)); in testToken()
51 token2 = new AuthenticatedURL.Token("foo"); in testToken()
53 assertTrue(token1.equals(token2)); in testToken()
56 token2 = new AuthenticatedURL.Token("foo"); in testToken()
58 assertFalse(token1.equals(token2)); in testToken()
61 token2 = new AuthenticatedURL.Token("bar"); in testToken()
[all …]
/dports/devel/py-graphql-core/graphql-core-3.1.6/tests/language/
H A Dtest_ast.py53 assert token2 == token1
54 assert not token2 != token1
74 assert token2 == token1
75 assert hash(token2) == hash(token1)
82 token2 = copy(token1)
83 assert token2 == token1
84 assert token2 is not token1
95 assert loc.end == token2.end
97 assert loc.end_token is token2
115 loc4 = Location(token2, token2, source)
[all …]
/dports/devel/p5-Asm-Preproc/Asm-Preproc-1.03/t/
H A DToken-new.t34 my $token2;
35 isa_ok $token2 = $token->clone,
37 is $token2->type, "WORD", "type";
38 is $token2->value, "hello", "value";
39 is $token2->line->text, "hello\n", "line text";
40 is $token2->line->line_nr, 10, "line line_nr";
41 is $token2->line->file, "f.asm", "line file";
49 is $token2->type, "WORD", "type";
50 is $token2->value, "hello", "value";
52 is $token2->line->line_nr, 10, "line line_nr";
[all …]
/dports/biology/libsbml/libsbml-5.19.0/src/bindings/csharp/test/xml/
H A DTestCopyAndClone.cs288 XMLToken token2 = new XMLToken(); in test_Token_assignmentOperator()
289 token2 = token; in test_Token_assignmentOperator()
293 assertTrue( token2.isEnd() == true ); in test_Token_assignmentOperator()
295 assertTrue( token2.getLine() == 3 ); in test_Token_assignmentOperator()
299 token2 = null; in test_Token_assignmentOperator()
317 assertTrue( token2.isEnd() == true ); in test_Token_clone()
319 assertTrue( token2.getLine() == 3 ); in test_Token_clone()
323 token2 = null; in test_Token_clone()
341 assertTrue( token2.isEnd() == true ); in test_Token_copyConstructor()
343 assertTrue( token2.getLine() == 3 ); in test_Token_copyConstructor()
[all …]
/dports/biology/py-python-libsbml/python-libsbml-5.19.0/libsbml_source/src/bindings/csharp/test/xml/
H A DTestCopyAndClone.cs288 XMLToken token2 = new XMLToken(); in test_Token_assignmentOperator()
289 token2 = token; in test_Token_assignmentOperator()
293 assertTrue( token2.isEnd() == true ); in test_Token_assignmentOperator()
295 assertTrue( token2.getLine() == 3 ); in test_Token_assignmentOperator()
299 token2 = null; in test_Token_assignmentOperator()
317 assertTrue( token2.isEnd() == true ); in test_Token_clone()
319 assertTrue( token2.getLine() == 3 ); in test_Token_clone()
323 token2 = null; in test_Token_clone()
341 assertTrue( token2.isEnd() == true ); in test_Token_copyConstructor()
343 assertTrue( token2.getLine() == 3 ); in test_Token_copyConstructor()
[all …]
/dports/biology/py-python-libsbml/python-libsbml-5.19.0/libsbml_source/src/sbml/xml/test/
H A DTestCopyAndClone.cpp200 fail_unless(token2->isEnd() == 1); in START_TEST()
201 fail_unless(token2->isEOF() == 0); in START_TEST()
207 delete token2; in START_TEST()
224 XMLToken *token2 = new XMLToken(); in START_TEST() local
225 (*token2) = *token; in START_TEST()
230 fail_unless(token2->isEnd() == 1); in START_TEST()
231 fail_unless(token2->isEOF() == 0); in START_TEST()
237 delete token2; in START_TEST()
259 fail_unless(token2->isEnd() == 1); in START_TEST()
260 fail_unless(token2->isEOF() == 0); in START_TEST()
[all …]
/dports/biology/libsbml/libsbml-5.19.0/src/sbml/xml/test/
H A DTestCopyAndClone.cpp200 fail_unless(token2->isEnd() == 1); in START_TEST()
201 fail_unless(token2->isEOF() == 0); in START_TEST()
207 delete token2; in START_TEST()
224 XMLToken *token2 = new XMLToken(); in START_TEST() local
225 (*token2) = *token; in START_TEST()
230 fail_unless(token2->isEnd() == 1); in START_TEST()
231 fail_unless(token2->isEOF() == 0); in START_TEST()
237 delete token2; in START_TEST()
259 fail_unless(token2->isEnd() == 1); in START_TEST()
260 fail_unless(token2->isEOF() == 0); in START_TEST()
[all …]
/dports/devel/gitlist/gitlist/vendor/phpspec/prophecy/spec/Prophecy/Argument/Token/
H A DLogicalAndTokenSpec.php25 TokenInterface $token2, argument
29 $token2->__toString()->willReturn('token_2');
32 $this->beConstructedWith(array($token1, $token2, $token3));
42 …he_maximum_score_from_all_scores_returned_by_tokens(TokenInterface $token1, TokenInterface $token2) argument
45 $token2->scoreArgument(1)->willReturn(5);
46 $this->beConstructedWith(array($token1, $token2));
56 …t_does_not_score_if_either_of_tokens_does_not_score(TokenInterface $token1, TokenInterface $token2) argument
61 $token2->scoreArgument(1)->willReturn(false);
62 $token2->scoreArgument(2)->willReturn(10);
64 $this->beConstructedWith(array($token1, $token2));
/dports/www/trafficserver/trafficserver-9.1.1/iocore/net/quic/test/
H A Dtest_QUICType.cc114 QUICRetryToken token2(token1.buf(), token1.length()); variable
117 CHECK(token2.is_valid(ep));
120 CHECK(token1 == token2);
121 CHECK(token1.length() == token2.length());
123 CHECK(token1.original_dcid() == token2.original_dcid());
124 CHECK(token1.scid() == token2.scid());
139 QUICResumptionToken token2(token1.buf(), token1.length()); variable
142 CHECK(token2.is_valid(ep));
145 CHECK(token1 == token2);
146 CHECK(token1.length() == token2.length());
[all …]
/dports/www/p5-HTML-TokeParser-Simple/HTML-TokeParser-Simple-3.16/t/
H A Dinternals.t23 my $token2 = $parser2->get_tag('body');
26 can_ok($token2, '_get_text');
27 is($token1->_get_text, $token2->_get_text,
32 can_ok($token2, '_get_attrseq');
33 is_deeply($token1->_get_attrseq, $token2->_get_attrseq,
41 can_ok($token2, '_get_attr');
42 is_deeply($token1->_get_attr, $token2->_get_attr,
53 can_ok($token2, '_get_tag');
54 is_deeply($token1->_get_tag, $token2->_get_tag,

12345678910>>...55