OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:operations_
(Results
1 - 18
of
18
) sorted by null
/external/chromium_org/cc/animation/
transform_operations.cc
20
operations_
= other.
operations_
;
33
for (size_t i = 0; i <
operations_
.size(); ++i)
34
to_return.PreconcatTransform(
operations_
[i].matrix);
61
std::max(from_identity ? 0 : from.
operations_
.size(),
62
to_identity ? 0 :
operations_
.size());
66
from_identity ? NULL : &from.
operations_
[i];
67
const TransformOperation* to_op = to_identity ? NULL : &
operations_
[i];
85
if (
operations_
.size() != other.
operations_
.size()
[
all
...]
transform_operations.h
83
std::vector<TransformOperation>
operations_
;
member in class:cc::TransformOperations
/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/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/cc/output/
filter_operations.h
50
return
operations_
.size();
55
return
operations_
[index];
74
std::vector<FilterOperation>
operations_
;
member in class:cc::FilterOperations
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];
85
for (size_t i = 0; i <
operations_
.size(); ++i)
[
all
...]
/external/chromium_org/chrome/browser/extensions/api/image_writer_private/
operation_manager.cc
48
for (OperationMap::iterator iter =
operations_
.begin();
49
iter !=
operations_
.end();
67
OperationMap::iterator existing_operation =
operations_
.find(extension_id);
69
if (existing_operation !=
operations_
.end()) {
82
operations_
[extension_id] = operation;
97
OperationMap::iterator existing_operation =
operations_
.find(extension_id);
99
if (existing_operation !=
operations_
.end()) {
109
operations_
[extension_id] = operation;
192
OperationMap::iterator existing_operation =
operations_
.find(extension_id);
194
if (existing_operation ==
operations_
.end()
[
all
...]
operation_manager.h
102
OperationMap
operations_
;
member in class:extensions::image_writer::OperationManager
/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) {
/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
130
operations_
.clear();
257
operations_
[request_id] = operation_runner()->Move(
279
operations_
[request_id] = operation_runner()->Copy(
298
operations_
[request_id] = operation_runner()->Remove(
315
operations_
[request_id] = operation_runner()->GetMetadata(
333
operations_
[request_id] = operation_runner()->CreateDirectory(
337
operations_
[request_id] = operation_runner()->CreateFile(
356
operations_
[request_id] = operation_runner()->DirectoryExists(
360
operations_
[request_id] = operation_runner()->FileExists(
378
operations_
[request_id] = operation_runner()->ReadDirectory
[
all
...]
fileapi_message_filter.h
217
OperationsMap
operations_
;
member in class:content::FileAPIMessageFilter
/external/chromium_org/webkit/browser/fileapi/
file_system_operation_runner.cc
39
operations_
.Clear();
308
FileSystemOperation* operation =
operations_
.Lookup(id);
651
handle.id =
operations_
.Add(operation);
671
//
operations_
.Lookup(id) here.
673
operations_
.Remove(id);
file_system_operation_runner.h
304
// IDMap<FileSystemOperation, IDMapOwnPointer>
operations_
;
305
IDMap<FileSystemOperation, IDMapOwnPointer>
operations_
;
member in class:fileapi::FileSystemOperationRunner
Completed in 594 milliseconds