Home
last modified time | relevance | path

Searched refs:lastindex (Results 1 - 12 of 12) sorted by relevance

/third_party/protobuf/src/google/protobuf/compiler/php/
H A Dphp_generator.cc346 int lastindex = proto_file.find_last_of("."); in GeneratedMetadataFileName() local
350 file_no_suffix = proto_file.substr(0, lastindex); in GeneratedMetadataFileName()
1181 int lastindex = filename.find_last_of("."); in FilenameToClassname() local
1182 std::string result = filename.substr(0, lastindex); in FilenameToClassname()
1204 int lastindex = fullname.find_last_of("\\"); in GenerateMetadataFile() local
1206 if (lastindex != string::npos) { in GenerateMetadataFile()
1209 "name", fullname.substr(0, lastindex)); in GenerateMetadataFile()
1214 "name", fullname.substr(lastindex + 1)); in GenerateMetadataFile()
1278 int lastindex = fullname.find_last_of("\\"); in GenerateEnumFile() local
1280 if (lastindex ! in GenerateEnumFile()
1390 int lastindex = fullname.find_last_of("\\\\"); GenerateMessageFile() local
1496 int lastindex = fullname.find_last_of("\\\\"); GenerateServiceFile() local
[all...]
/third_party/python/Modules/_sre/
H A Dsre.h50 Py_ssize_t lastindex; /* last index marker seen by the engine (-1 if none) */ member
78 int lastindex; member
H A Dsre.c363 state->lastindex = -1; in state_reset()
428 state->lastindex = -1; in state_init()
2400 if (self->lastindex >= 0) in match_lastindex_get()
2401 return PyLong_FromSsize_t(self->lastindex); in match_lastindex_get()
2409 self->lastindex >= 0 && in match_lastgroup_get()
2410 self->lastindex < PyTuple_GET_SIZE(self->pattern->indexgroup)) in match_lastgroup_get()
2413 self->lastindex); in match_lastgroup_get()
2505 match->lastindex = state->lastindex; in pattern_new_match()
2848 {"lastindex", (gette
[all...]
H A Dsre_lib.h367 ctx->lastindex = state->lastindex; \
372 state->lastindex = ctx->lastindex; \
519 int lastindex; member
616 state->lastindex = i/2 + 1; in match()
1628 do { state->lastmark = state->lastindex = -1; } while (0)
/third_party/ffmpeg/libavfilter/
H A Dvf_signature.c192 fs->index = sc->lastindex++; in filter_frame()
495 uint32_t numofsegments = (sc->lastindex + 44)/45; in binary_export()
501 sc->lastindex * (2 + 32 + 6*8 + 608)) / 8; in binary_export()
523 put_bits32(&buf, sc->lastindex); /* NumOfFrames */ in binary_export()
670 sc->lastindex = 0; in init()
H A Dsignature.h122 uint32_t lastindex; /* helper to store amount of frames */ member
/third_party/protobuf/src/google/protobuf/compiler/csharp/
H A Dcsharp_helpers.cc110 int lastindex = proto_file.find_last_of("."); in StripDotProto() local
111 return proto_file.substr(0, lastindex); in StripDotProto()
/third_party/protobuf/src/google/protobuf/compiler/ruby/
H A Druby_generator.cc71 int lastindex = proto_file.find_last_of("."); in GetRequireName() local
72 return proto_file.substr(0, lastindex) + "_pb"; in GetRequireName()
/third_party/python/Lib/re/
H A D__init__.py367 action = self.lexicon[m.lastindex-1][1]
/third_party/littlefs/scripts/
H A Dbench.py113 if m.lastindex <= 1:
H A Dtest.py116 if m.lastindex <= 1:
/third_party/python/Lib/test/
H A Dtest_re.py1367 self.assertIsNone(re.match(r'(a)?a','a').lastindex)
1368 self.assertEqual(re.match(r'(a)(b)?b','ab').lastindex, 1)
1371 self.assertEqual(re.match(r"((a))", "a").lastindex, 1)

Completed in 20 milliseconds