/bionic/libc/include/ |
sched.h | 109 # define CPU_ZERO(set_) \ 111 (set_)->__bits[0] = 0; \ 114 # define CPU_SET(cpu_,set_) \ 118 (set_)->__bits[0] |= __CPU_MASK(__cpu); \ 121 # define CPU_CLR(cpu_,set_) \ 125 (set_)->__bits[0] &= ~__CPU_MASK(__cpu); \ 128 # define CPU_ISSET(cpu_, set_) \ 132 ? ((set_)->__bits[0] & __CPU_MASK(__cpu)) != 0 \ 144 # define CPU_COUNT(set_) __builtin_popcountl((set_)->__bits[0] [all...] |
/external/chromium_org/content/browser/indexed_db/ |
list_set.h | 26 list_set(const list_set<T>& other) : list_(other.list_), set_(other.set_) {} 29 set_ = other.set_; 34 if (set_.find(elem) != set_.end()) 36 set_.insert(elem); 41 if (set_.find(elem) == set_.end()) 43 set_.erase(elem) 154 std::set<T> set_; member in class:list_set [all...] |
/art/runtime/ |
signal_set.h | 29 if (sigemptyset(&set_) == -1) { 35 if (sigaddset(&set_, signal) == -1) { 41 if (sigprocmask(SIG_BLOCK, &set_, NULL) == -1) { 49 int rc = TEMP_FAILURE_RETRY(sigwait(&set_, &signal_number)); 57 sigset_t set_; member in class:art::SignalSet
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/buildbot/ |
prefs.js | 22 set_: function(key, value) { 35 this.set_("use_notifications", use_notifications); 43 this.set_("try_job_username", try_job_username);
|
/external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/app/ |
model.js | 44 return this.operand ? this.set_({operand: null}) : 45 this.operator ? this.set_({operator: null}) : 49 return (length > 1) ? this.set_({operand: this.operand.slice(0, -1)}) : 50 this.operand ? this.set_({operand: null}) : 51 this.set_({operator: null}); 54 return (initial === '-') ? this.set_({operand: this.operand.slice(1)}) : 55 (initial !== '0') ? this.set_({operand: '-' + this.operand}) : 56 this.set_({}); 61 return operand.match(/^0[0-9]/) ? this.set_({operand: operand[1]}) : 62 (!duplicate && !overflow) ? this.set_({operand: operand}) [all...] |
/external/chromium_org/tools/gn/ |
ordered_set.h | 36 return set_.find(t) != set_.end(); 42 std::pair<set_iterator, bool> result = set_.insert(t); 65 set_type set_; member in class:OrderedSet
|
/external/llvm/include/llvm/ADT/ |
SetVector.h | 103 bool result = set_.insert(X); 113 if (set_.insert(*Start)) 119 if (set_.erase(X)) { 146 TestAndEraseFromSet<UnaryPredicate>(P, set_)); 157 return set_.count(key); 162 set_.clear(); 169 set_.erase(back()); 191 /// call set_.erase(x) on each element which is slated for removal. 195 set_type &set_; 200 TestAndEraseFromSet(UnaryPredicate P, set_type &set_) : P(P), set_(set_) { [all...] |
/external/openfst/src/include/fst/ |
util.h | 387 : set_(compact_set.set_), 392 set_.insert(key); 400 set_.erase(key); 401 if (set_.empty()) { 411 set_.clear(); 418 return set_.end(); 420 return set_.find(key); 426 } else if (min_key_ != NoKey && max_key_ + 1 == min_key_ + set_.size()) { 429 return set_.find(key) != set_.end() 444 set<Key> set_; member in class:fst::CompactSet [all...] |
/external/chromium_org/cc/resources/ |
picture_layer_tiling_set.cc | 152 : set_(set), 159 static_cast<size_t>(ideal_tiling_) < set_->tilings_.size(); 161 PictureLayerTiling* tiling = set_->tilings_[ideal_tiling_]; 169 DCHECK_LE(set_->tilings_.size(), 172 int num_tilings = set_->tilings_.size(); 218 if (static_cast<size_t>(current_tiling_) >= set_->tilings_.size()) 220 return set_->tilings_[current_tiling_]; 270 current_tiling_ = set_->tilings_.size(); 275 if (current_tiling_ >= static_cast<int>(set_->tilings_.size())) 285 if (current_tiling_ >= static_cast<int>(set_->tilings_.size()) [all...] |
picture_layer_tiling_set.h | 106 const PictureLayerTilingSet* set_; member in class:cc::PictureLayerTilingSet::CoverageIterator
|
/external/chromium_org/ui/views/examples/ |
textfield_example.cc | 28 set_(NULL), 45 set_ = new LabelButton(this, ASCIIToUTF16("Set")); 74 layout->AddView(set_); 113 } else if (sender == set_) {
|
textfield_example.h | 55 LabelButton* set_; member in class:views::examples::TextfieldExample
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_string_field.cc | 111 "inline void set_$name$(const ::std::string& value)$deprecation$;\n" 112 "inline void set_$name$(const char* value)$deprecation$;\n" 113 "inline void set_$name$(const $pointer_type$* value, size_t size)" 133 "inline void $classname$::set_$name$(const ::std::string& value) {\n" 140 "inline void $classname$::set_$name$(const char* value) {\n" 148 "void $classname$::set_$name$(const $pointer_type$* value, size_t size) {\n" 219 printer->Print(variables_, "set_$name$(from.$name$());\n"); 340 "inline void set_$name$(int index, const ::std::string& value)$deprecation$;\n" 341 "inline void set_$name$(int index, const char* value)$deprecation$;\n" 343 "void set_$name$(int index, const $pointer_type$* value, size_t size) [all...] |
cpp_enum_field.cc | 79 "inline void set_$name$($type$ value)$deprecation$;\n"); 88 "inline void $classname$::set_$name$($type$ value) {\n" 102 printer->Print(variables_, "set_$name$(from.$name$());\n"); 123 " set_$name$(static_cast< $type$ >(value));\n"); 179 "inline void set_$name$(int index, $type$ value)$deprecation$;\n" 192 "inline void $classname$::set_$name$(int index, $type$ value) {\n"
|
cpp_primitive_field.cc | 120 "inline void set_$name$($type$ value)$deprecation$;\n"); 129 "inline void $classname$::set_$name$($type$ value) {\n" 142 printer->Print(variables_, "set_$name$(from.$name$());\n"); 225 "inline void set_$name$(int index, $type$ value)$deprecation$;\n" 240 "inline void $classname$::set_$name$(int index, $type$ value) {\n"
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_string_field.cc | 104 "inline void set_$name$(const ::std::string& value)$deprecation$;\n" 105 "inline void set_$name$(const char* value)$deprecation$;\n" 106 "inline void set_$name$(const $pointer_type$* value, size_t size)" 123 "inline void $classname$::set_$name$(const ::std::string& value) {\n" 130 "inline void $classname$::set_$name$(const char* value) {\n" 138 "void $classname$::set_$name$(const $pointer_type$* value, size_t size) {\n" 189 printer->Print(variables_, "set_$name$(from.$name$());\n"); 292 "inline void set_$name$(int index, const ::std::string& value)$deprecation$;\n" 293 "inline void set_$name$(int index, const char* value)$deprecation$;\n" 295 "void set_$name$(int index, const $pointer_type$* value, size_t size) [all...] |
cpp_enum_field.cc | 77 "inline void set_$name$($type$ value)$deprecation$;\n"); 86 "inline void $classname$::set_$name$($type$ value) {\n" 100 printer->Print(variables_, "set_$name$(from.$name$());\n"); 121 " set_$name$(static_cast< $type$ >(value));\n"); 176 "inline void set_$name$(int index, $type$ value)$deprecation$;\n" 189 "inline void $classname$::set_$name$(int index, $type$ value) {\n"
|
cpp_primitive_field.cc | 118 "inline void set_$name$($type$ value)$deprecation$;\n"); 127 "inline void $classname$::set_$name$($type$ value) {\n" 140 printer->Print(variables_, "set_$name$(from.$name$());\n"); 222 "inline void set_$name$(int index, $type$ value)$deprecation$;\n" 237 "inline void $classname$::set_$name$(int index, $type$ value) {\n"
|
/external/chromium_org/mojo/public/bindings/generators/ |
mojom_cpp_generator.py | 48 " clone->set_$FIELD(mojo::internal::Clone($NAME->$FIELD(), buf));") 66 " params->set_$NAME($NAME);") 68 " params->set_$NAME($NAME.release());") 70 " params->set_$NAME(\n" 80 Template(" void set_$FIELD($TYPE $FIELD) { ${FIELD}_ = $FIELD; }") 82 Template(" void set_$FIELD($TYPE $FIELD) { ${FIELD}_.ptr = $FIELD; }") 91 Template(" void set_$FIELD($TYPE $FIELD) { " \ 92 "data_->set_$FIELD($FIELD); }") 94 Template(" void set_$FIELD($TYPE $FIELD) { " \ 95 "data_->set_$FIELD(mojo::internal::Unwrap($FIELD)); }" [all...] |
/external/chromium_org/third_party/libjingle/source/talk/media/base/ |
mediachannel.h | 74 Settable() : set_(false), val_() {} 75 explicit Settable(T val) : set_(true), val_(val) {} 78 return set_; 83 return set_; 87 return set_ ? val_ : default_value; 91 set_ = true; 97 set_ = false; 110 return set_ ? talk_base::ToString(val_) : ""; 115 return (set_ == o.set_) && (!set_ || (val_ == o.val_)) 128 bool set_; member in class:cricket::Settable [all...] |
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/ |
gl_table.py | 196 print 'static inline void SET_%s(struct _glapi_table *disp, %s (GLAPIENTRYP fn)(%s)) {' % (f.name, f.return_type, arg_string) 209 print '#define SET_%s(disp, fn) SET_%s(disp, fn)' % (name, f.name)
|
/external/mesa3d/src/mapi/glapi/gen/ |
gl_table.py | 196 print 'static inline void SET_%s(struct _glapi_table *disp, %s (GLAPIENTRYP fn)(%s)) {' % (f.name, f.return_type, arg_string) 209 print '#define SET_%s(disp, fn) SET_%s(disp, fn)' % (name, f.name)
|
/external/chromium_org/chrome/browser/ |
io_thread.h | 83 Optional() : set_(false) {} 86 set_ = true; 90 if (set_) { 96 bool set_; member in class:IOThread::Globals::Optional
|
/external/chromium_org/content/browser/ssl/ |
ssl_manager.cc | 39 std::set<SSLManager*>& get() { return set_; } 42 std::set<SSLManager*> set_; member in class:content::__anon7942::SSLManagerSet
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/ |
test_util_lite.h | 54 // Use the repeated versions of the set_*() accessors to modify all the
|