/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
V8PersistentValueMap.h | 44 * The parameter is_weak will determine whether the references are 'weak'. 48 template<class KeyType, class ValueType, bool is_weak> 82 static const v8::PersistentContainerCallbackType kCallbackType = is_weak ? v8::kWeak : v8::kNotWeak; 83 typedef v8::PersistentValueMap<KeyType, ValueType, V8PersistentValueMapTraits<KeyType, ValueType, is_weak> > MapType; 116 * If is_weak is set, values will be held weakly and map entries will be 119 template<class KeyType, class ValueType, bool is_weak = true> 120 class V8PersistentValueMap : public v8::PersistentValueMap<KeyType, ValueType, V8PersistentValueMapTraits<KeyType, ValueType, is_weak> > { 122 typedef V8PersistentValueMapTraits<KeyType, ValueType, is_weak> Traits;
|
/external/chromium_org/tools/clang/blink_gc_plugin/ |
process-graph.py | 144 def is_weak(self): member in class:Edge 187 if edge.is_weak() or not edge.is_super():
|
/external/elfutils/0.153/src/ |
nm.c | 994 bool is_weak = GELF_ST_BIND (syms[cnt].sym.st_info) == STB_WEAK; local 996 ? (is_tls ? "@" : (is_weak ? "*" : " ")) : ""); 1005 else if (is_weak) 1020 else if (is_weak) [all...] |
/external/chromium_org/third_party/libjingle/source/talk/base/ |
httpclient.cc | 181 bool is_weak = (strnicmp(value.c_str(), "W/", 2) == 0); local 182 return is_weak ? HVS_WEAK : HVS_STRONG;
|
/external/chromium_org/third_party/webrtc/base/ |
httpclient.cc | 164 bool is_weak = (strnicmp(value.c_str(), "W/", 2) == 0); local 165 return is_weak ? HVS_WEAK : HVS_STRONG;
|
/external/chromium_org/v8/src/ |
heap-snapshot-generator.h | 444 VisitorSynchronization::SyncTag tag, bool is_weak, Object* child);
|
heap-snapshot-generator.cc | 1602 bool is_weak = weak_containers_.Contains(array); local [all...] |