OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:value_start
(Results
1 - 4
of
4
) sorted by null
/external/chromium/net/base/
sdch_manager.cc
227
size_t
value_start
= dictionary_text.find_first_not_of(" \t",
local
229
if (std::string::npos !=
value_start
) {
230
if (
value_start
>= line_end)
233
std::string value(dictionary_text,
value_start
, line_end -
value_start
);
/external/dbus/bus/
desktop-file.c
455
int
value_start
;
local
518
value_start
= p;
520
value = unescape_string (parser, &parser->data,
value_start
, line_end, error);
/frameworks/base/media/libmediaplayerservice/
StagefrightRecorder.cpp
598
const char *
value_start
= equal_pos + 1;
local
599
const char *semicolon_pos = strchr(
value_start
, ';');
602
value.setTo(
value_start
);
604
value.setTo(
value_start
, semicolon_pos -
value_start
);
[
all
...]
/external/bluetooth/glib/glib/
gkeyfile.c
836
gchar *key, *value, *key_end, *
value_start
, *locale;
local
847
key_end =
value_start
= strchr (line, '=');
852
value_start
++;
876
while (g_ascii_isspace (*
value_start
))
877
value_start
++;
879
value_len = line + length -
value_start
+ 1;
881
value = g_strndup (
value_start
, value_len);
[
all
...]
Completed in 59 milliseconds