HomeSort by relevance Sort by last modified time
    Searched refs:token_index (Results 1 - 10 of 10) sorted by null

  /external/libtextclassifier/tests/
feature-processor_test.cc 274 int token_index; local
277 token_index = internal::CenterTokenFromClick(
280 EXPECT_EQ(token_index, 1);
283 token_index = internal::CenterTokenFromClick(
286 EXPECT_EQ(token_index, 2);
289 token_index = internal::CenterTokenFromClick(
292 EXPECT_EQ(token_index, kInvalidIndex);
296 int token_index; local
299 token_index = internal::CenterTokenFromMiddleOfSelection(
303 EXPECT_EQ(token_index, 2)
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/
debug.rb 100 start_token.token_index, stop_token.token_index )
  /external/libtextclassifier/smartselect/
text-classification-model.cc 388 const int token_index = click_index + i; local
389 if (token_index >= 0 && token_index < tokens.size() &&
390 !tokens[token_index].is_padding) {
396 if (cached_features->Get(token_index, &features, &output_tokens)) {
feature-processor.cc 364 int token_index = FindTokenThatContainsSpan(selectable_tokens, span); local
365 if (token_index != kInvalidIndex) {
366 range_begin = token_index;
367 range_end = token_index + 1;
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/
socket.rb 208 token.token_index
233 [ token.token_index, token.type, token.channel,
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
token.rb 101 alias :token_index :index
102 alias :token_index= :index=
281 alias :token_index :index
282 alias :token_index= :index=
tree.rb 615 ( stop.token_index < start.token_index and stop.type != EOF )
633 i = @start.token_index
634 j = ( @stop.type == EOF ) ? @input.size : @stop.token_index
    [all...]
  /packages/providers/ContactsProvider/tests/assets/testUnsynced/
legacy_contacts.sql 39 CREATE TABLE peopleLookup (token TEXT,source INTEGER REFERENCES people(_id),token_index INTEGER);
47 CREATE TABLE peopleLookupWithPhoneticName (token TEXT,source INTEGER REFERENCES people(_id),token_index INTEGER);
  /packages/providers/ContactsProvider/tests/assets/test1/
legacy_contacts.sql 58 CREATE TABLE peopleLookup (token TEXT,source INTEGER REFERENCES people(_id),token_index INTEGER);
68 CREATE TABLE peopleLookupWithPhoneticName (token TEXT,source INTEGER REFERENCES people(_id),token_index INTEGER);
  /packages/providers/ContactsProvider/tests/assets/testSynced/
legacy_contacts.sql 56 CREATE TABLE peopleLookup (token TEXT,source INTEGER REFERENCES people(_id),token_index INTEGER);
77 CREATE TABLE peopleLookupWithPhoneticName (token TEXT,source INTEGER REFERENCES people(_id),token_index INTEGER);

Completed in 118 milliseconds