HomeSort by relevance Sort by last modified time
    Searched defs:Construct (Results 1 - 25 of 36) sorted by null

1 2

  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/
Construct.java 21 * Provide a way to construct a Java instance out of the composed Node. Support
28 public interface Construct {
30 * Construct a Java instance with all the properties injected when it is
37 Object construct(Node node); method in interface:Construct
47 * <code>construct(Node node)</code> for the provided Node
  /external/deqp-deps/SPIRV-Tools/source/val/
construct.h 44 /// continue construct
47 /// set of blocks dominated by the OpSwitch's merge block (this construct is
56 class Construct {
58 Construct(ConstructType type, BasicBlock* dominator,
60 std::vector<Construct*> constructs = std::vector<Construct*>());
62 /// Returns the type of the construct
65 const std::vector<Construct*>& corresponding_constructs() const;
66 std::vector<Construct*>& corresponding_constructs();
67 void set_corresponding_constructs(std::vector<Construct*> constructs)
    [all...]
construct.cpp 15 #include "source/val/construct.h"
26 Construct::Construct(ConstructType construct_type, BasicBlock* entry,
27 BasicBlock* exit, std::vector<Construct*> constructs)
33 ConstructType Construct::type() const { return type_; }
35 const std::vector<Construct*>& Construct::corresponding_constructs() const {
38 std::vector<Construct*>& Construct::corresponding_constructs() {
58 void Construct::set_corresponding_constructs
    [all...]
  /external/swiftshader/third_party/SPIRV-Tools/source/val/
construct.h 44 /// continue construct
47 /// set of blocks dominated by the OpSwitch's merge block (this construct is
56 class Construct {
58 Construct(ConstructType type, BasicBlock* dominator,
60 std::vector<Construct*> constructs = std::vector<Construct*>());
62 /// Returns the type of the construct
65 const std::vector<Construct*>& corresponding_constructs() const;
66 std::vector<Construct*>& corresponding_constructs();
67 void set_corresponding_constructs(std::vector<Construct*> constructs)
    [all...]
construct.cpp 15 #include "source/val/construct.h"
26 Construct::Construct(ConstructType construct_type, BasicBlock* entry,
27 BasicBlock* exit, std::vector<Construct*> constructs)
33 ConstructType Construct::type() const { return type_; }
35 const std::vector<Construct*>& Construct::corresponding_constructs() const {
38 std::vector<Construct*>& Construct::corresponding_constructs() {
58 void Construct::set_corresponding_constructs
    [all...]
  /external/v8/src/
elements-kind.cc 73 static void Construct(void* fast_elements_kind_sequence_ptr_arg) {
assert-scope.cc 18 static void Construct(void* key_arg) {
allocation.cc 45 static void Construct(void* page_allocator_ptr_arg) {
code-factory.cc 265 Callable CodeFactory::Construct(Isolate* isolate) {
266 return Callable(BUILTIN_CODE(isolate, Construct), JSTrampolineDescriptor{});
register-configuration.cc 116 static void Construct(void* config) {
160 static void Construct(void* config) {
208 static void Construct(void* config) {
  /external/webrtc/webrtc/system_wrappers/source/
condition_variable_posix.cc 30 const int error = ptr->Construct();
42 int ConditionVariablePosix::Construct() {
  /external/v8/src/base/
lazy-instance.h 38 // static void Construct(void* allocated_ptr) {
108 ConstructTrait::Construct(storage);
131 static void Construct(void* allocated_ptr) { new (allocated_ptr) T(); }
  /external/webrtc/talk/media/base/
rtpdataengine.cc 82 Construct(timing);
86 Construct(NULL);
89 void RtpDataMediaChannel::Construct(rtc::Timing* timing) {
videocapturer.cc 105 Construct();
113 Construct();
116 void VideoCapturer::Construct() {
videocommon.h 197 Construct(0, 0, 0, 0);
201 Construct(w, h, interval_ns, cc);
205 Construct(format.width, format.height, format.interval, format.fourcc);
208 void Construct(int w, int h, int64_t interval_ns, uint32_t cc) {
  /external/webrtc/webrtc/base/
bytebuffer.cc 26 Construct(NULL, DEFAULT_SIZE, ORDER_NETWORK);
30 Construct(NULL, DEFAULT_SIZE, byte_order);
34 Construct(bytes, len, ORDER_NETWORK);
38 Construct(bytes, len, byte_order);
42 Construct(bytes, strlen(bytes), ORDER_NETWORK);
46 Construct(buf.data<char>(), buf.size(), ORDER_NETWORK);
49 void ByteBuffer::Construct(const char* bytes, size_t len,
  /external/webrtc/webrtc/p2p/base/
stunrequest.cc 47 request->Construct();
164 void StunRequest::Construct() {
  /external/tensorflow/tensorflow/compiler/xla/service/
indexed_array_analysis.h 330 T* Construct(Args&&... args) {
340 return Construct<ScalarIndexedConstantArray>(source, indices, source_dim,
344 return Construct<ScalarIndexedArray>(source, indices, source_dim,
  /external/v8/src/wasm/baseline/arm/
liftoff-assembler-arm.h 346 void LiftoffStackSlots::Construct() {
347 asm_->BAILOUT("LiftoffStackSlots::Construct");
  /external/v8/src/wasm/baseline/ppc/
liftoff-assembler-ppc.h 359 void LiftoffStackSlots::Construct() {
360 asm_->BAILOUT("LiftoffStackSlots::Construct");
  /external/v8/src/wasm/baseline/s390/
liftoff-assembler-s390.h 359 void LiftoffStackSlots::Construct() {
360 asm_->BAILOUT("LiftoffStackSlots::Construct");
  /external/v8/src/wasm/
wasm-engine.cc 272 static void Construct(void* raw_ptr) {
  /external/webrtc/talk/session/media/
channelmanager.cc 84 Construct(me, dme, cm, worker_thread);
89 Construct(me,
95 void ChannelManager::Construct(MediaEngineInterface* me,
  /external/v8/src/compiler/
js-operator.cc     [all...]
  /external/v8/src/wasm/baseline/arm64/
liftoff-assembler-arm64.h 929 void LiftoffStackSlots::Construct() {

Completed in 2296 milliseconds

1 2