Searched refs:operation (Results 1 - 25 of 531) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/page/
H A DDragSession.h34 DragOperation operation; member in struct:blink::DragSession
39 : operation(DragOperationNone)
/external/chromium_org/net/disk_cache/blockfile/
H A Din_flight_io.cc66 BackgroundIO* operation = it->get(); local
67 operation->Cancel();
68 DCHECK(io_list_.find(operation) != io_list_.end());
69 io_list_.erase(make_scoped_refptr(operation));
74 void InFlightIO::OnIOComplete(BackgroundIO* operation) { argument
83 FROM_HERE, base::Bind(&BackgroundIO::OnIOSignalled, operation));
84 operation->io_completed()->Signal();
88 void InFlightIO::InvokeCallback(BackgroundIO* operation, bool cancel_task) { argument
92 operation->io_completed()->Wait();
97 operation
108 OnOperationPosted(BackgroundIO* operation) argument
[all...]
H A Din_flight_backend_io.cc337 scoped_refptr<BackendIO> operation(new BackendIO(this, backend_, callback));
338 operation->Init();
339 PostOperation(operation.get());
344 scoped_refptr<BackendIO> operation(new BackendIO(this, backend_, callback));
345 operation->OpenEntry(key, entry);
346 PostOperation(operation.get());
351 scoped_refptr<BackendIO> operation(new BackendIO(this, backend_, callback));
352 operation->CreateEntry(key, entry);
353 PostOperation(operation.get());
358 scoped_refptr<BackendIO> operation(ne
494 OnOperationComplete(BackgroundIO* operation, bool cancel) argument
503 PostOperation(BackendIO* operation) argument
[all...]
/external/iptables/include/linux/netfilter/
H A Dxt_CHECKSUM.h17 __u8 operation; /* bitset of operations */ member in struct:xt_CHECKSUM_info
/external/kernel-headers/original/uapi/linux/netfilter/
H A Dxt_CHECKSUM.h17 __u8 operation; /* bitset of operations */ member in struct:xt_CHECKSUM_info
/external/proguard/src/proguard/evaluation/value/
H A DCompositeDoubleValue.java24 * This DoubleValue represents the result of a binary operation on two double
39 private final byte operation; field in class:CompositeDoubleValue
45 * and the given operation.
48 byte operation,
52 this.operation = operation;
64 this.operation == ((CompositeDoubleValue)object).operation &&
79 return "("+doubleValue1+((char)operation)+doubleValue2+")";
47 CompositeDoubleValue(DoubleValue doubleValue1, byte operation, DoubleValue doubleValue2) argument
H A DCompositeFloatValue.java24 * This FloatValue represents the result of a binary operation on two float
39 private final byte operation; field in class:CompositeFloatValue
45 * and the given operation.
48 byte operation,
52 this.operation = operation;
64 this.operation == ((CompositeFloatValue)object).operation &&
79 return "("+floatValue1+((char)operation)+floatValue2+")";
47 CompositeFloatValue(FloatValue floatValue1, byte operation, FloatValue floatValue2) argument
H A DCompositeIntegerValue.java24 * This IntegerValue represents the result of a binary operation on two integer
45 private final byte operation; field in class:CompositeIntegerValue
51 * and the given operation.
54 byte operation,
58 this.operation = operation;
70 this.operation == ((CompositeIntegerValue)object).operation &&
85 return "("+integerValue1+((char)operation)+integerValue2+")";
53 CompositeIntegerValue(IntegerValue integerValue1, byte operation, IntegerValue integerValue2) argument
H A DCompositeLongValue.java24 * This LongValue represents the result of a binary operation on two long
45 private final byte operation; field in class:CompositeLongValue
51 * and the given operation.
54 byte operation,
58 this.operation = operation;
70 this.operation == ((CompositeLongValue)object).operation &&
85 return "("+longValue1+((char)operation)+longValue2+")";
53 CompositeLongValue(LongValue longValue1, byte operation, Value longValue2) argument
/external/chromium_org/third_party/skia/src/utils/
H A DSkMD5.cpp115 static inline void operation(T operation, uint32_t& a, uint32_t b, uint32_t c, uint32_t d, argument
117 a = b + rotate_left(a + operation(b, c, d) + x + t, s);
127 operation(F(), a, b, c, d, X[ 0], 7, 0xd76aa478); // 1
128 operation(F(), d, a, b, c, X[ 1], 12, 0xe8c7b756); // 2
129 operation(F(), c, d, a, b, X[ 2], 17, 0x242070db); // 3
130 operation(F(), b, c, d, a, X[ 3], 22, 0xc1bdceee); // 4
131 operation(F(), a, b, c, d, X[ 4], 7, 0xf57c0faf); // 5
132 operation(F(), d, a, b, c, X[ 5], 12, 0x4787c62a); // 6
133 operation(
[all...]
H A DSkSHA1.cpp116 static inline void operation(T operation, argument
119 E += rotate_left(A, 5) + operation(B, C, D) + w + k;
151 operation(F1(), A, B, C, D, E, W[ 0], K[0]);
152 operation(F1(), E, A, B, C, D, W[ 1], K[0]);
153 operation(F1(), D, E, A, B, C, W[ 2], K[0]);
154 operation(F1(), C, D, E, A, B, W[ 3], K[0]);
155 operation(F1(), B, C, D, E, A, W[ 4], K[0]);
156 operation(F1(), A, B, C, D, E, W[ 5], K[0]);
157 operation(F
[all...]
/external/skia/src/utils/
H A DSkMD5.cpp115 static inline void operation(T operation, uint32_t& a, uint32_t b, uint32_t c, uint32_t d, argument
117 a = b + rotate_left(a + operation(b, c, d) + x + t, s);
127 operation(F(), a, b, c, d, X[ 0], 7, 0xd76aa478); // 1
128 operation(F(), d, a, b, c, X[ 1], 12, 0xe8c7b756); // 2
129 operation(F(), c, d, a, b, X[ 2], 17, 0x242070db); // 3
130 operation(F(), b, c, d, a, X[ 3], 22, 0xc1bdceee); // 4
131 operation(F(), a, b, c, d, X[ 4], 7, 0xf57c0faf); // 5
132 operation(F(), d, a, b, c, X[ 5], 12, 0x4787c62a); // 6
133 operation(
[all...]
H A DSkSHA1.cpp116 static inline void operation(T operation, argument
119 E += rotate_left(A, 5) + operation(B, C, D) + w + k;
151 operation(F1(), A, B, C, D, E, W[ 0], K[0]);
152 operation(F1(), E, A, B, C, D, W[ 1], K[0]);
153 operation(F1(), D, E, A, B, C, W[ 2], K[0]);
154 operation(F1(), C, D, E, A, B, W[ 3], K[0]);
155 operation(F1(), B, C, D, E, A, W[ 4], K[0]);
156 operation(F1(), A, B, C, D, E, W[ 5], K[0]);
157 operation(F
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSTransformValue.cpp59 static inline String transformValueToCssString(CSSTransformValue::TransformOperationType operation, const String& value) argument
61 if (operation != CSSTransformValue::UnknownTransformOperation) {
62 ASSERT_WITH_SECURITY_IMPLICATION(static_cast<size_t>(operation) < WTF_ARRAY_LENGTH(transformNamePrefixes));
63 return transformNamePrefixes[operation] + value + ")";
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowAlarmManager.java24 public void set(int type, long triggerAtTime, PendingIntent operation) { argument
25 internalSet(type, triggerAtTime, 0L, operation);
29 public void setRepeating (int type, long triggerAtTime, long interval, PendingIntent operation){ argument
30 internalSet(type, triggerAtTime, interval, operation);
33 private void internalSet(int type, long triggerAtTime, long interval, PendingIntent operation) { argument
34 Intent intent = shadowOf(operation).getSavedIntent();
36 Intent scheduledIntent = shadowOf(scheduledAlarm.operation).getSavedIntent();
42 scheduledAlarms.add(new ScheduledAlarm(type, triggerAtTime, interval, operation));
83 final Intent alarmIntent = shadowOf(scheduledAlarm.operation).getSavedIntent();
98 public PendingIntent operation; field in class:ShadowAlarmManager.ScheduledAlarm
100 ScheduledAlarm(int type, long triggerAtTime, PendingIntent operation) argument
104 ScheduledAlarm(int type, long triggerAtTime, long interval, PendingIntent operation) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/scripts/
H A Dv8_callback_interface.py81 'methods': [method_context(operation)
82 for operation in callback_interface.operations],
86 def add_includes_for_operation(operation):
87 operation.idl_type.add_includes_for_type()
88 for argument in operation.arguments:
92 def method_context(operation):
93 extended_attributes = operation.extended_attributes
94 idl_type = operation.idl_type
100 add_includes_for_operation(operation)
108 'name': operation
[all...]
/external/chromium_org/ui/views/examples/
H A Dexamples_window_with_content.cc13 void ShowExamplesWindowWithContent(Operation operation, argument
19 ShowExamplesWindow(operation, window_context, extra_examples.Pass());
H A Dexamples_window_with_content.h21 Operation operation,
/external/chromium_org/third_party/boringssl/src/crypto/dh/
H A Ddh_asn1.c64 static int dh_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, argument
66 if (operation == ASN1_OP_NEW_PRE) {
72 } else if (operation == ASN1_OP_FREE_PRE) {
/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
H A DAnimatableClipPathOperation.h42 static PassRefPtrWillBeRawPtr<AnimatableClipPathOperation> create(ClipPathOperation* operation) argument
44 return adoptRefWillBeNoop(new AnimatableClipPathOperation(operation));
55 AnimatableClipPathOperation(ClipPathOperation* operation) argument
56 : m_operation(operation)
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DTextInsertionBaseCommand.h52 void forEachLineInString(const String& string, const LineOperation& operation) argument
57 operation(offset, newline - offset, false);
61 operation(0, string.length(), true);
65 operation(offset, length - offset, true);
/external/chromium_org/storage/browser/fileapi/
H A Dfile_system_operation_runner.cc47 FileSystemOperation* operation = local
51 OperationHandle handle = BeginOperation(operation, scope.AsWeakPtr());
52 if (!operation) {
57 operation->CreateFile(
70 FileSystemOperation* operation = local
73 OperationHandle handle = BeginOperation(operation, scope.AsWeakPtr());
74 if (!operation) {
79 operation->CreateDirectory(
93 FileSystemOperation* operation = local
96 OperationHandle handle = BeginOperation(operation, scop
120 FileSystemOperation* operation = local
141 FileSystemOperation* operation = local
161 FileSystemOperation* operation = local
181 FileSystemOperation* operation = local
201 FileSystemOperation* operation = local
222 FileSystemOperation* operation = local
245 FileSystemOperation* operation = local
286 FileSystemOperation* operation = local
310 FileSystemOperation* operation = operations_.Lookup(id); local
325 FileSystemOperation* operation = local
346 FileSystemOperation* operation = local
375 FileSystemOperation* operation = local
397 FileSystemOperation* operation = local
417 FileSystemOperation* operation = local
437 FileSystemOperation* operation = local
460 FileSystemOperation* operation = local
483 FileSystemOperation* operation = local
654 BeginOperation( FileSystemOperation* operation, base::WeakPtr<BeginOperationScoper> scope) argument
[all...]
/external/openssl/crypto/evp/
H A Dpmeth_fn.c91 ctx->operation = EVP_PKEY_OP_SIGN;
96 ctx->operation = EVP_PKEY_OP_UNDEFINED;
110 if (ctx->operation != EVP_PKEY_OP_SIGN)
128 ctx->operation = EVP_PKEY_OP_VERIFY;
133 ctx->operation = EVP_PKEY_OP_UNDEFINED;
147 if (ctx->operation != EVP_PKEY_OP_VERIFY)
164 ctx->operation = EVP_PKEY_OP_VERIFYRECOVER;
169 ctx->operation = EVP_PKEY_OP_UNDEFINED;
183 if (ctx->operation != EVP_PKEY_OP_VERIFYRECOVER)
201 ctx->operation
[all...]
/external/chromium_org/win8/delegate_execute/
H A Ddelegate_execute.cc94 int RelaunchChrome(const DelegateExecuteOperation& operation) { argument
96 operation.mutex().c_str(), operation.relaunch_flags().c_str());
97 ScopedHandle mutex(OpenMutexW(SYNCHRONIZE, FALSE, operation.mutex().c_str()));
110 DWORD pid = operation.GetParentPid();
129 base::string16 relaunch_flags(operation.relaunch_flags());
133 sei.lpFile = operation.shortcut().value().c_str();
162 sei.lpFile = (launch_ash || operation.shortcut().empty()) ?
164 operation.shortcut().value().c_str();
186 DelegateExecuteOperation operation; local
[all...]
/external/iptables/extensions/
H A Dlibxt_ecn.c47 einfo->operation |= XT_ECN_OP_MATCH_CWR;
52 einfo->operation |= XT_ECN_OP_MATCH_ECE;
59 einfo->operation |= XT_ECN_OP_MATCH_IP;
80 if (einfo->operation & XT_ECN_OP_MATCH_ECE) {
85 if (einfo->operation & XT_ECN_OP_MATCH_CWR) {
90 if (einfo->operation & XT_ECN_OP_MATCH_IP) {
102 if (einfo->operation & XT_ECN_OP_MATCH_ECE) {
108 if (einfo->operation & XT_ECN_OP_MATCH_CWR) {
114 if (einfo->operation & XT_ECN_OP_MATCH_IP) {

Completed in 1269 milliseconds

1234567891011>>