OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:operations_
(Results
1 - 18
of
18
) sorted by null
/external/chromium_org/cc/animation/
transform_operations.cc
19
operations_
= other.
operations_
;
32
for (size_t i = 0; i <
operations_
.size(); ++i)
33
to_return.PreconcatTransform(
operations_
[i].matrix);
48
if (
operations_
.size() != other.
operations_
.size())
51
for (size_t i = 0; i <
operations_
.size(); ++i) {
52
if (
operations_
[i].type != other.
operations_
[i].type
53
&& !
operations_
[i].IsIdentity(
[
all
...]
transform_operations.h
70
std::vector<TransformOperation>
operations_
;
member in class:cc::TransformOperations
/external/chromium_org/cc/output/
filter_operations.cc
17
:
operations_
(other.
operations_
) {}
22
operations_
= other.
operations_
;
37
operations_
.push_back(filter);
41
operations_
.clear();
45
return
operations_
.empty();
61
for (size_t i = 0; i <
operations_
.size(); ++i) {
62
const FilterOperation op =
operations_
[i];
82
for (size_t i = 0; i <
operations_
.size(); ++i)
[
all
...]
filter_operations.h
49
return
operations_
.size();
54
return
operations_
[index];
73
std::vector<FilterOperation>
operations_
;
member in class:cc::FilterOperations
/external/chromium_org/chrome/installer/util/
product.cc
34
operations_
.reset(InstallUtil::IsChromeSxSProcess() ?
39
operations_
.reset(new ChromeFrameOperations());
42
operations_
.reset(new ChromeAppHostOperations());
45
operations_
.reset(new ChromeBinariesOperations());
57
operations_
->ReadOptions(prefs, &options_);
62
operations_
->ReadOptions(uninstall_command, &options_);
136
return
operations_
->ShouldCreateUninstallEntry(options_);
140
operations_
->AddKeyFiles(options_, key_files);
144
operations_
->AddComDllList(options_, com_dll_list);
148
operations_
->AppendProductFlags(options_, command_line)
[
all
...]
product.h
143
scoped_ptr<ProductOperations>
operations_
;
member in class:installer::Product
/external/chromium_org/chrome/browser/extensions/api/recovery_private/
recovery_operation_manager.cc
57
for (iter =
operations_
.begin();
58
iter !=
operations_
.end();
71
OperationMap::iterator existing_operation =
operations_
.find(extension_id);
73
if (existing_operation !=
operations_
.end())
80
operations_
.insert(make_pair(extension_id, operation));
154
OperationMap::iterator existing_operation =
operations_
.find(extension_id);
156
if (existing_operation ==
operations_
.end())
164
OperationMap::iterator existing_operation =
operations_
.find(extension_id);
165
if (existing_operation !=
operations_
.end()) {
166
operations_
.erase(existing_operation)
[
all
...]
recovery_operation_manager.h
84
OperationMap
operations_
;
member in class:extensions::recovery::RecoveryOperationManager
/external/chromium/chrome/browser/sync/engine/
change_reorder_buffer.h
51
operations_
[id] = OP_ADD;
58
operations_
[id] = OP_DELETE;
67
operations_
[id] = position_changed ? OP_UPDATE_POSITION_AND_PROPERTIES :
82
operations_
.clear();
86
return
operations_
.empty();
109
OperationMap
operations_
;
member in class:sync_api::ChangeReorderBuffer
change_reorder_buffer.cc
135
for (i =
operations_
.begin(); i !=
operations_
.end(); ++i) {
168
i =
operations_
.find(next);
169
if (i !=
operations_
.end()) {
208
if (
operations_
.find(handle) ==
operations_
.end())
209
operations_
[handle] = OP_UPDATE_POSITION_AND_PROPERTIES;
/external/chromium_org/webkit/browser/fileapi/
file_system_operation_runner.cc
26
operations_
.Clear();
40
OperationID id =
operations_
.Add(operation);
61
OperationID id =
operations_
.Add(operation);
81
OperationID id =
operations_
.Add(operation);
102
OperationID id =
operations_
.Add(operation);
122
OperationID id =
operations_
.Add(operation);
141
OperationID id =
operations_
.Add(operation);
160
OperationID id =
operations_
.Add(operation);
179
OperationID id =
operations_
.Add(operation);
198
OperationID id =
operations_
.Add(operation)
[
all
...]
file_system_operation_runner.h
284
// IDMap<FileSystemOperation, IDMapOwnPointer>
operations_
;
285
IDMap<FileSystemOperation, IDMapOwnPointer>
operations_
;
member in class:fileapi::FileSystemOperationRunner
/external/chromium_org/sync/internal_api/
change_reorder_buffer.cc
124
operations_
[id] = ChangeRecord::ACTION_ADD;
128
operations_
[id] = ChangeRecord::ACTION_DELETE;
132
operations_
[id] = ChangeRecord::ACTION_UPDATE;
148
operations_
.clear();
152
return
operations_
.empty();
169
for (i =
operations_
.begin(); i !=
operations_
.end(); ++i) {
192
i =
operations_
.find(next);
193
if (i !=
operations_
.end()) {
change_reorder_buffer.h
78
OperationMap
operations_
;
member in class:syncer::ChangeReorderBuffer
/external/chromium_org/content/browser/fileapi/
fileapi_message_filter.cc
146
operations_
.clear();
253
operations_
[request_id] = operation_runner()->Move(
271
operations_
[request_id] = operation_runner()->Copy(
286
operations_
[request_id] = operation_runner()->Remove(
301
operations_
[request_id] = operation_runner()->GetMetadata(
317
operations_
[request_id] = operation_runner()->CreateDirectory(
321
operations_
[request_id] = operation_runner()->CreateFile(
338
operations_
[request_id] = operation_runner()->DirectoryExists(
342
operations_
[request_id] = operation_runner()->FileExists(
358
operations_
[request_id] = operation_runner()->ReadDirectory
[
all
...]
fileapi_message_filter.h
213
OperationsMap
operations_
;
member in class:content::FileAPIMessageFilter
/external/chromium_org/chrome/browser/undo/
undo_manager.h
25
return
operations_
.get();
30
ScopedVector<UndoOperation>
operations_
;
member in class:UndoGroup
undo_manager.cc
27
operations_
.push_back(operation.release());
31
for (ScopedVector<UndoOperation>::reverse_iterator ri =
operations_
.rbegin();
32
ri !=
operations_
.rend(); ++ri) {
Completed in 635 milliseconds