Searched refs:change (Results 1 - 25 of 376) sorted by relevance

1234567891011>>

/external/chromium_org/crypto/
H A DPRESUBMIT.py11 def GetPreferredTrySlaves(project, change):
/external/chromium_org/skia/
H A DPRESUBMIT.py11 def GetPreferredTrySlaves(project, change):
/external/chromium_org/net/
H A DPRESUBMIT.py11 def GetPreferredTrySlaves(project, change):
19 if any('nss' in f.LocalPath() for f in change.AffectedFiles()):
/external/valgrind/main/none/tests/x86/
H A Dpushpopseg.stdout.exp1 sp change after push = -2
2 sp change after pop = 2
4 sp change after push = -4
5 sp change after pop = 4
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_debug_refcnt.h43 void debug_reference_slowpath(const struct pipe_reference* p, debug_reference_descriptor get_desc, int change);
45 static INLINE void debug_reference(const struct pipe_reference* p, debug_reference_descriptor get_desc, int change) argument
48 debug_reference_slowpath(p, get_desc, change);
53 static INLINE void debug_reference(const struct pipe_reference* p, debug_reference_descriptor get_desc, int change) argument
H A Du_ringbuffer.c19 pipe_condvar change; member in struct:util_ringbuffer
38 pipe_condvar_init(ring->change);
50 pipe_condvar_destroy(ring->change);
88 pipe_condvar_wait(ring->change, ring->mutex);
103 /* Signal change:
105 pipe_condvar_signal(ring->change);
126 pipe_condvar_wait(ring->change, ring->mutex);
155 /* Signal change:
157 pipe_condvar_signal(ring->change);
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_debug_refcnt.h43 void debug_reference_slowpath(const struct pipe_reference* p, debug_reference_descriptor get_desc, int change);
45 static INLINE void debug_reference(const struct pipe_reference* p, debug_reference_descriptor get_desc, int change) argument
48 debug_reference_slowpath(p, get_desc, change);
53 static INLINE void debug_reference(const struct pipe_reference* p, debug_reference_descriptor get_desc, int change) argument
H A Du_ringbuffer.c19 pipe_condvar change; member in struct:util_ringbuffer
38 pipe_condvar_init(ring->change);
50 pipe_condvar_destroy(ring->change);
88 pipe_condvar_wait(ring->change, ring->mutex);
103 /* Signal change:
105 pipe_condvar_signal(ring->change);
126 pipe_condvar_wait(ring->change, ring->mutex);
155 /* Signal change:
157 pipe_condvar_signal(ring->change);
/external/chromium_org/ppapi/generators/
H A Didl_diff.py30 # A Change object contains the previous lines, new news and change type.
55 # Return True if this change is only a one line change in the copyright notice
58 def IsCopyright(change):
59 if len(change.now) != 1 or len(change.was) != 1: return False
60 if 'Copyright (c)' not in change.now[0]: return False
61 if 'Copyright (c)' not in change.was[0]: return False
67 # Return True if this change only removes a blank line from a comment
69 def IsBlankComment(change)
[all...]
/external/openssh/
H A Dauth2-passwd.c54 int change; local
57 change = packet_get_char();
59 if (change) {
67 if (change)
68 logit("password change not supported");
/external/chromium/chrome/browser/webdata/
H A Dautofill_change.cc30 const AutofillProfileChange& change) const {
31 return type() == change.type() &&
32 key() == change.key() &&
33 (type() != REMOVE) ? *profile() == *change.profile() : true;
48 const AutofillCreditCardChange& change) const {
49 return type() == change.type() &&
50 key() == change.key() &&
51 (type() != REMOVE) ? *credit_card() == *change.credit_card() : true;
H A Dautofill_change.h43 bool operator==(const AutofillChange& change) const {
44 return type() == change.type() && key() == change.key();
51 // The |type| input specifies the change type. The |key| input is the key,
62 bool operator==(const AutofillProfileChange& change) const;
72 // The |type| input specifies the change type. The |key| input is the key,
83 bool operator==(const AutofillCreditCardChange& change) const;
/external/chromium_org/chrome/browser/value_store/
H A Dvalue_store_change_unittest.cc22 ValueStoreChange change("key", NULL, Value::CreateStringValue("value"));
24 EXPECT_EQ("key", change.key());
25 EXPECT_EQ(NULL, change.old_value());
28 EXPECT_TRUE(change.new_value()->Equals(expected.get()));
33 ValueStoreChange change("key", Value::CreateStringValue("value"), NULL);
35 EXPECT_EQ("key", change.key());
38 EXPECT_TRUE(change.old_value()->Equals(expected.get()));
40 EXPECT_EQ(NULL, change.new_value());
44 ValueStoreChange change("key",
48 EXPECT_EQ("key", change
[all...]
/external/chromium_org/components/autofill/core/browser/webdata/
H A Dautofill_change.cc33 const AutofillProfileChange& change) const {
34 return type() == change.type() &&
35 key() == change.key() &&
36 (type() != REMOVE) ? *profile() == *change.profile() : true;
H A Dautofill_change.h46 bool operator==(const AutofillChange& change) const {
47 return type() == change.type() && key() == change.key();
56 // The |type| input specifies the change type. The |key| input is the key,
67 bool operator==(const AutofillProfileChange& change) const;
H A Dautofill_webdata_service_observer.h19 virtual void AutofillProfileChanged(const AutofillProfileChange& change) {} argument
/external/chromium_org/v8/src/
H A Dhydrogen-minus-zero.cc39 HChange* change = HChange::cast(current); local
42 Representation from = change->value()->representation();
43 ASSERT(from.Equals(change->from()));
45 ASSERT(change->to().IsTagged() ||
46 change->to().IsDouble() ||
47 change->to().IsSmiOrInteger32());
49 PropagateMinusZeroChecks(change->value());
/external/chromium_org/chrome/browser/sync_file_system/
H A Dfile_change.cc14 ChangeType change,
16 : change_(change),
21 switch (change()) {
59 if (last.change() == new_change.change())
13 FileChange( ChangeType change, SyncFileType file_type) argument
H A Dmock_local_change_processor.h21 void(const FileChange& change,
29 const FileChange& change,
H A Dfile_change.h25 FileChange(ChangeType change, SyncFileType file_type);
34 ChangeType change() const { return change_; } function in class:sync_file_system::FileChange
40 return change() == that.change() &&
/external/srec/config/en.us/
H A Drun-chmod.sh5 chmod 777 ./run-change-sample-rate2.sh
/external/iproute2/testsuite/tests/
H A Ddsmark.t17 class change dev $DEV parent 10:0 classid 10:12 \
21 class change dev $DEV parent 10:0 classid 10:13 \
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DShadowTreeStyleSheetCollection.cpp98 StyleSheetChange change; local
99 analyzeStyleSheetChange(updateMode, collection, change);
103 // Need to change "false" to some valid condition.
105 if (change.styleResolverUpdateType != Additive) {
115 if (change.requiresFullStyleRecalc)
122 return change.requiresFullStyleRecalc;
H A DDocumentStyleSheetCollection.cpp162 StyleSheetChange change; local
163 analyzeStyleSheetChange(updateMode, collection, change);
165 if (change.styleResolverUpdateType == Reconstruct) {
170 // Need to change "false" to some valid condition.
172 if (change.styleResolverUpdateType != Additive) {
173 ASSERT(change.styleResolverUpdateType == Reset || change.styleResolverUpdateType == ResetStyleResolverAndFontSelector);
175 if (change.styleResolverUpdateType == ResetStyleResolverAndFontSelector)
182 } else if (change.styleResolverUpdateType == ResetStyleResolverAndFontSelector) {
189 return change
[all...]
/external/chromium_org/content/browser/
H A Dhost_zoom_map_impl.cc110 HostZoomMap::ZoomLevelChange change; local
111 change.mode = HostZoomMap::ZOOM_CHANGED_FOR_HOST;
112 change.host = host;
113 change.zoom_level = level;
115 zoom_level_changed_callbacks_.Notify(change);
138 HostZoomMap::ZoomLevelChange change; local
139 change.mode = HostZoomMap::ZOOM_CHANGED_FOR_SCHEME_AND_HOST;
140 change.host = host;
141 change.scheme = scheme;
142 change
202 HostZoomMap::ZoomLevelChange change; local
[all...]

Completed in 849 milliseconds

1234567891011>>