OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:to_return
(Results
1 - 20
of
20
) sorted by null
/external/chromium_org/third_party/openssl/openssl/crypto/engine/
eng_init.c
62
int
to_return
= 1;
local
67
to_return
= e->init(e);
68
if(
to_return
)
77
return
to_return
;
84
int
to_return
= 1;
local
98
to_return
= e->finish(e);
101
if(!
to_return
)
117
return
to_return
;
138
int
to_return
= 1;
local
146
to_return
= engine_unlocked_finish(e, 1)
[
all
...]
enginetest.c
102
int
to_return
= 1;
local
265
to_return
= 0;
267
if(
to_return
)
281
return
to_return
;
eng_list.c
272
int
to_return
= 1;
local
289
to_return
= 0;
292
return
to_return
;
298
int
to_return
= 1;
local
310
to_return
= 0;
313
return
to_return
;
/external/openssl/crypto/engine/
eng_init.c
62
int
to_return
= 1;
local
67
to_return
= e->init(e);
68
if(
to_return
)
77
return
to_return
;
84
int
to_return
= 1;
local
98
to_return
= e->finish(e);
101
if(!
to_return
)
117
return
to_return
;
138
int
to_return
= 1;
local
146
to_return
= engine_unlocked_finish(e, 1)
[
all
...]
enginetest.c
102
int
to_return
= 1;
local
265
to_return
= 0;
267
if(
to_return
)
281
return
to_return
;
eng_list.c
272
int
to_return
= 1;
local
289
to_return
= 0;
292
return
to_return
;
298
int
to_return
= 1;
local
310
to_return
= 0;
313
return
to_return
;
/external/chromium_org/cc/animation/
animation_registrar.cc
23
scoped_refptr<LayerAnimationController>
to_return
;
local
25
to_return
= LayerAnimationController::Create(id);
26
to_return
->SetAnimationRegistrar(this);
27
all_animation_controllers_[id] =
to_return
.get();
29
to_return
= all_animation_controllers_[id];
31
return
to_return
;
transform_operations.cc
32
gfx::Transform
to_return
;
local
34
to_return
.PreconcatTransform(operations_[i].matrix);
35
return
to_return
;
40
gfx::Transform
to_return
;
local
41
BlendInternal(from, progress, &
to_return
);
42
return
to_return
;
211
gfx::DecomposedTransform
to_return
;
212
if (!gfx::BlendDecomposedTransforms(&
to_return
,
218
*result = ComposeTransform(
to_return
);
/external/chromium_org/chrome/browser/content_settings/
content_settings_rule.cc
63
const Rule&
to_return
= (*current_iterator)->Next();
local
66
return
to_return
;
/external/chromium_org/ui/compositor/
transform_animation_curve_adapter.cc
30
scoped_ptr<TransformAnimationCurveAdapter>
to_return
(
35
return
to_return
.PassAs<cc::AnimationCurve>();
46
gfx::DecomposedTransform
to_return
;
local
47
gfx::BlendDecomposedTransforms(&
to_return
,
52
return gfx::ComposeTransform(
to_return
);
82
scoped_ptr<InverseTransformCurveAdapter>
to_return
(
86
return
to_return
.PassAs<cc::AnimationCurve>();
96
gfx::Transform
to_return
(gfx::Transform::kSkipInitialization);
97
bool is_invertible = base_transform.GetInverse(&
to_return
);
100
to_return
.PreconcatTransform(effective_initial_value_)
[
all
...]
layer_animator.cc
456
linked_ptr<LayerAnimationSequence>
to_return
;
local
474
to_return
= *queue_iter;
480
if (!
to_return
.get() ||
481
!
to_return
->waiting_for_group_start() ||
482
!
to_return
->IsFirstElementThreaded())
483
return
to_return
.release();
489
int group_id =
to_return
->animation_group_id();
500
return
to_return
.release();
513
return
to_return
.release();
/external/chromium_org/chrome/renderer/extensions/
v8_schema_registry.cc
101
v8::Local<v8::Object>
to_return
=
local
104
return handle_scope.Escape(
to_return
);
/external/chromium/chrome/browser/chromeos/login/
signed_settings_helper_unittest.cc
90
em::PolicyData
to_return
;
local
92
to_return
.set_policy_type(SignedSettings::kDevicePolicyType);
93
to_return
.set_policy_value(pol.SerializeAsString());
94
return
to_return
;
signed_settings_unittest.cc
131
em::PolicyData
to_return
;
local
146
to_return
.set_policy_type(SignedSettings::kDevicePolicyType);
147
to_return
.set_policy_value(pol.SerializeAsString());
148
return
to_return
;
/external/chromium/chrome/common/net/gaia/
gaia_auth_fetcher.cc
125
URLFetcher*
to_return
=
local
130
to_return
->set_request_context(getter);
131
to_return
->set_load_flags(net::LOAD_DO_NOT_SEND_COOKIES);
132
to_return
->set_upload_data("application/x-www-form-urlencoded", body);
133
return
to_return
;
/external/chromium_org/ui/gfx/
transform_util.cc
234
Transform
to_return
;
local
235
to_return
.matrix() = matrix;
236
return
to_return
;
/external/chromium_org/chrome/browser/profiles/
profile_manager.cc
406
std::vector<Profile*>
to_return
;
local
419
to_return
.push_back(GetProfile(user_data_dir.AppendASCII(profile)));
422
return
to_return
;
[
all
...]
/external/chromium_org/google_apis/gaia/
gaia_auth_fetcher.cc
209
net::URLFetcher*
to_return
= net::URLFetcher::Create(
local
213
to_return
->SetRequestContext(getter);
214
to_return
->SetUploadData("application/x-www-form-urlencoded", body);
225
to_return
->SetLoadFlags(load_flags);
231
to_return
->SetAutomaticallyRetryOnNetworkChanges(3);
234
to_return
->SetExtraRequestHeaders(headers);
236
return
to_return
;
[
all
...]
/external/chromium_org/cc/resources/
resource_provider.cc
1069
ReturnedResourceArray
to_return
;
local
[
all
...]
/external/chromium_org/cc/trees/
layer_tree_host_common_unittest.cc
206
scoped_refptr<ContentLayer>
to_return
= ContentLayer::Create(delegate);
local
207
to_return
->SetIsDrawable(true);
208
return
to_return
;
6143
scoped_refptr<NoScaleContentLayer>
to_return
=
local
[
all
...]
Completed in 855 milliseconds