OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Experiment
(Results
1 - 7
of
7
) sorted by null
/external/chromium/chrome/common/
attrition_experiments.h
14
enum
Experiment
{
/external/chromium_org/chrome/common/
attrition_experiments.h
13
enum
Experiment
{
/external/chromium/chrome/browser/
about_flags.h
23
//
Experiment
is used internally by about_flags to describe an
experiment
(and
26
struct
Experiment
{
28
// An
experiment
with a single value. This is typically what you want.
31
// The
experiment
has multiple values only one of which is ever enabled.
34
// command_line of the
Experiment
is not used. If the
experiment
is enabled
51
// The internal name of the
experiment
. This is never shown to the user.
56
// String id of the message containing the
experiment
's name.
59
// String id of the message containing the
experiment
's description
[
all
...]
/external/chromium/chrome/browser/net/
connection_tester.h
77
// The "
Experiment
" structure describes an individual test to run.
78
struct
Experiment
{
79
Experiment
(const GURL& url,
97
typedef std::vector<
Experiment
> ExperimentList;
111
// Called when an individual
experiment
is about to be started.
113
const
Experiment
&
experiment
) = 0;
115
// Called when an individual
experiment
has completed.
116
// |
experiment
| - the
experiment
that has completed
[
all
...]
/external/chromium_org/chrome/browser/net/
connection_tester.h
77
// The "
Experiment
" structure describes an individual test to run.
78
struct
Experiment
{
79
Experiment
(const GURL& url,
97
typedef std::vector<
Experiment
> ExperimentList;
109
// Called when an individual
experiment
is about to be started.
111
const
Experiment
&
experiment
) = 0;
113
// Called when an individual
experiment
has completed.
114
// |
experiment
| - the
experiment
that has completed
[
all
...]
/external/chromium_org/chrome/browser/
about_flags.h
29
//
Experiment
is used internally by about_flags to describe an
experiment
(and
32
struct
Experiment
{
34
// An
experiment
with a single value. This is typically what you want.
37
// The
experiment
has multiple values only one of which is ever enabled.
40
// command_line of the
Experiment
is not used. If the
experiment
is enabled
44
// The
experiment
has three possible values: Default, Enabled and Disabled.
63
// The internal name of the
experiment
. This is never shown to the user.
68
// String id of the message containing the
experiment
's name
[
all
...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
Settings.js
286
* @return {!Array.<!WebInspector.
Experiment
>}
304
* @return {!WebInspector.
Experiment
}
308
var
experiment
= new WebInspector.
Experiment
(this, experimentName, experimentTitle);
309
this._experiments.push(
experiment
);
310
return
experiment
;
367
WebInspector.
Experiment
= function(experimentsSettings, name, title)
374
WebInspector.
Experiment
.prototype = {
Completed in 115 milliseconds