/third_party/node/deps/icu-small/source/common/ |
H A D | ulocale.cpp | 16 #define EXTERNAL(i) (reinterpret_cast<ULocale*>(i)) macro 24 return EXTERNAL(icu::Locale::createFromName(str.data()).clone()); in ulocale_openForLocaleID() 31 return EXTERNAL(l.clone());
|
H A D | ulocbuilder.cpp | 18 #define EXTERNAL(i) (reinterpret_cast<ULocaleBuilder*>(i)) macro 23 return EXTERNAL(new icu::LocaleBuilder()); in ulocbld_open()
|
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/ |
H A D | VkSemaphore.cpp | 223 template<class EXTERNAL> 227 vk::allocateHostMemory(sizeof(EXTERNAL), alignof(EXTERNAL), allocator, VK_SYSTEM_ALLOCATION_SCOPE_OBJECT)); in allocateExternal() 228 new(ext) EXTERNAL(); in allocateExternal()
|
H A D | VkSemaphore.hpp | 153 template<class EXTERNAL>
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/ |
H A D | cord_internal.h | 183 EXTERNAL = 4, enumerator 196 // data edge, i.e. an external or flat rep. By having FLAT == EXTERNAL + 1, we 197 // can perform this check in a single branch as 'tag >= EXTERNAL' 199 // so likewise align RING to EXTERNAL. 201 // DTRT when it sees a condition like `tag == EXTERNAL || tag >= FLAT`. 203 static_assert(EXTERNAL == RING + 1, "BTREE and EXTERNAL not consecutive"); 204 static_assert(FLAT == EXTERNAL + 1, "EXTERNAL and FLAT not consecutive"); 209 : length(l), refcount(immortal), tag(EXTERNAL), storag in CordRep() [all...] |
H A D | cord_rep_test_util.h | 70 this->tag = cord_internal::EXTERNAL; in MakeExternal() 131 } else if (rep->tag == cord_internal::EXTERNAL) { in CordToString()
|
H A D | cord_internal.cc | 61 } else if (rep->tag == EXTERNAL) { in Destroy()
|
H A D | cord_rep_ring.h | 155 // If the provided child is a FLAT or EXTERNAL node, or a SUBSTRING node 156 // containing a FLAT or EXTERNAL node, then flat or external the node is added 174 // If the provided child is a FLAT or EXTERNAL node, or a SUBSTRING node 175 // containing a FLAT or EXTERNAL node, then flat or external the node is 247 // Requires that the provided `rep` is either a FLAT or EXTERNAL CordRep. 251 // Requires that `rep` is either a FLAT, EXTERNAL, or SUBSTRING CordRep. 442 // Appends the provided leaf node. Requires `child` to be FLAT or EXTERNAL. 446 // Prepends the provided leaf node. Requires `child` to be FLAT or EXTERNAL. 461 // `child` to be FLAT or EXTERNAL. on `rep`. 498 return rep->tag != EXTERNAL in GetLeafData() [all...] |
H A D | cord_rep_btree.h | 39 // only. Allowed types of data edges are FLAT, EXTERNAL and SUBSTRINGs of FLAT 40 // or EXTERNAL nodes. The implementation allows for data to be added to either 141 // `edge` as being a plain data node: EXTERNAL / FLAT or SUBSTRING thereof. 265 // Returns true if the provided rep is a FLAT, EXTERNAL or a SUBSTRING node 266 // holding a FLAT or EXTERNAL child rep. 575 // The fast path is that `rep` is an EXTERNAL or FLAT node, making the below in IsDataEdge() 576 // if a single, well predicted branch. We then repeat the FLAT or EXTERNAL in IsDataEdge() 578 if (rep->tag == EXTERNAL || rep->tag >= FLAT) return true; in IsDataEdge() 580 return rep->tag == EXTERNAL || rep->tag >= FLAT; in IsDataEdge()
|
H A D | cord_rep_btree.cc | 54 // Rep may be a CordRepBtree tree, or a SUBSTRING / EXTERNAL / FLAT node. 101 } else if (rep->tag == EXTERNAL) { in DumpAll() 172 // Deletes a leaf node data edge. Requires `rep` to be an EXTERNAL or FLAT 173 // node, or a SUBSTRING of an EXTERNAL or FLAT node. 180 if (rep->tag == EXTERNAL) { in DeleteLeafEdge() 187 assert(rep->tag == EXTERNAL || rep->tag >= FLAT); in DeleteLeafEdge()
|
H A D | cordz_info.cc | 184 if (rep.rep->tag == EXTERNAL) { in CountLinearReps()
|
/third_party/node/deps/v8/src/profiler/ |
H A D | symbolizer.cc | 33 // DOM events handlers are reported as OTHER / EXTERNAL entries. in EntryForVMState() 37 case EXTERNAL: in EntryForVMState() 63 if (sample.has_external_callback && sample.state == EXTERNAL) { in SymbolizeTickSample()
|
H A D | tick-sample.cc | 175 if (state != StateTag::EXTERNAL) { in Init() 293 *out_state = StateTag::EXTERNAL; in GetStackSample()
|
H A D | sampling-heap-profiler.cc | 173 case EXTERNAL: in AddStack() 174 name = "(EXTERNAL)"; in AddStack()
|
H A D | cpu-profiler.cc | 64 if (sample->state == EXTERNAL) ++external_sample_count_;
|
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/mapper/ |
H A D | TransformsMapperTest.java | 11 import static org.unicode.icu.tool.cldrtoicu.mapper.TransformsMapperTest.Visibility.EXTERNAL; 60 INTERNAL, EXTERNAL; enum constant 121 cldrData(oneWay("foo", "bar", BACKWARD, "variant", EXTERNAL, "one two three", ++idx)); in testBackward()
|
/third_party/node/deps/v8/src/execution/ |
H A D | vm-state.h | 50 VMState<EXTERNAL> vm_state_;
|
H A D | thread-local-top.cc | 33 current_vm_state_ = EXTERNAL; in Clear()
|
H A D | vm-state-inl.h | 34 case EXTERNAL: in StateToString() 35 return "EXTERNAL"; in StateToString()
|
/third_party/node/deps/v8/include/ |
H A D | v8-unwinder.h | 43 EXTERNAL,
|
/third_party/node/deps/v8/include/v8-include/ |
H A D | v8-unwinder.h | 43 EXTERNAL,
|
/third_party/ffmpeg/libavutil/ |
H A D | error.c | 47 { ERROR_TAG(EXTERNAL), "Generic error in an external library" },
|
/third_party/rust/crates/clap/src/util/ |
H A D | id.rs | 14 pub(crate) const EXTERNAL: &'static str = "";
|
/third_party/rust/crates/clap/src/parser/ |
H A D | arg_matcher.rs | 160 let id = Id::from_static_ref(Id::EXTERNAL);
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
H A D | cord_ring_test.cc | 48 using ::absl::cord_internal::EXTERNAL; 210 this->tag = EXTERNAL; in MakeExternal() 225 this->tag = EXTERNAL; in MakeFakeExternal()
|