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

1 2 3 4 5 6

  /external/deqp-deps/SPIRV-Tools/source/val/
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...]
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...]
function.h 30 #include "source/val/construct.h"
85 /// Registers a loop merge construct in the function
93 /// Registers a selection merge construct in the function
133 const std::list<Construct>& constructs() const;
136 std::list<Construct>& constructs();
240 // Adds a copy of the given Construct, and tracks it by its entry block.
241 // Returns a reference to the stored construct.
242 Construct& AddConstruct(const Construct& new_construct);
244 // Returns a reference to the construct corresponding to the given entr
    [all...]
function.cpp 27 #include "source/val/construct.h"
81 Construct& loop_construct =
83 Construct& continue_construct =
200 const std::list<Construct>& Function::constructs() const {
203 std::list<Construct>& Function::constructs() { return cfg_constructs_; }
281 Construct& Function::AddConstruct(const Construct& new_construct) {
289 Construct& Function::FindConstructForEntryBlock(const BasicBlock* entry_block,
322 Construct* continue_construct =
325 // Continue construct has only 1 corresponding construct (loop header)
    [all...]
  /external/swiftshader/third_party/SPIRV-Tools/source/val/
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...]
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...]
function.h 30 #include "source/val/construct.h"
85 /// Registers a loop merge construct in the function
93 /// Registers a selection merge construct in the function
133 const std::list<Construct>& constructs() const;
136 std::list<Construct>& constructs();
240 // Adds a copy of the given Construct, and tracks it by its entry block.
241 // Returns a reference to the stored construct.
242 Construct& AddConstruct(const Construct& new_construct);
244 // Returns a reference to the construct corresponding to the given entr
    [all...]
function.cpp 27 #include "source/val/construct.h"
81 Construct& loop_construct =
83 Construct& continue_construct =
200 const std::list<Construct>& Function::constructs() const {
203 std::list<Construct>& Function::constructs() { return cfg_constructs_; }
281 Construct& Function::AddConstruct(const Construct& new_construct) {
289 Construct& Function::FindConstructForEntryBlock(const BasicBlock* entry_block,
322 Construct* continue_construct =
325 // Continue construct has only 1 corresponding construct (loop header)
    [all...]
  /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
AbstractConstruct.java 25 public abstract class AbstractConstruct implements Construct {
31 * @see org.yaml.snakeyaml.constructor.Construct#construct2ndStep(org.yaml.snakeyaml.nodes.Node,
BaseConstructor.java 44 * It maps the node kind to the the Construct implementation. When the
47 protected final Map<NodeId, Construct> yamlClassConstructors = new EnumMap<NodeId, Construct>(
50 * It maps the (explicit or implicit) tag to the Construct implementation.
56 protected final Map<Tag, Construct> yamlConstructors = new HashMap<Tag, Construct>();
58 * It maps the (explicit or implicit) tag to the Construct implementation.
61 protected final Map<String, Construct> yamlMultiConstructors = new HashMap<String, Construct>();
97 * Construct and return the next documen
    [all...]
  /external/webrtc/webrtc/system_wrappers/source/
condition_variable_posix.h 34 int Construct();
condition_variable_posix.cc 30 const int error = ptr->Construct();
42 int ConditionVariablePosix::Construct() {
  /external/deqp-deps/glslang/Test/
sample.frag.out 8 0:39 Construct vec4 (4-component vector of float)
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue94/
ChangeRuntimeClassTest.java 23 import org.yaml.snakeyaml.constructor.Construct;
79 private Construct getConstructor(Node node) {
87 Construct constructor = yamlClassConstructors.get(node.getNodeId());
91 public Object construct(Node node) { method in class:ChangeRuntimeClassTest.MyConstructor.ConstructProxy
92 return getConstructor(node).construct(node);
  /external/snakeyaml/src/test/java/examples/jodatime/
JodaTimeExampleTest.java 27 import org.yaml.snakeyaml.constructor.Construct;
71 public Object construct(Node nnode) { method in class:JodaTimeExampleTest.JodaPropertyConstructor.TimeStampConstruct
73 Construct dateConstructor = yamlConstructors.get(Tag.TIMESTAMP);
74 Date date = (Date) dateConstructor.construct(nnode);
77 return super.construct(nnode);
88 private final Construct javaDateConstruct;
89 private final Construct jodaDateConstruct;
103 public Object construct(Node node) { method in class:JodaTimeExampleTest.JodaTimeConstructor.ConstructJodaTimestamp
104 Date date = (Date) javaDateConstruct.construct(node);
111 public Object construct(Node nnode) method in class:JodaTimeExampleTest.JodaTimeConstructor.TimeStampConstruct
    [all...]
  /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/snakeyaml/src/test/java/examples/
IgnoreTagsExampleTest.java 26 import org.yaml.snakeyaml.constructor.Construct;
56 private Construct original;
64 public Object construct(Node node) { method in class:IgnoreTagsExampleTest.MyConstructor.IgnoringConstruct
66 return original.construct(node);
70 return yamlConstructors.get(Tag.STR).construct(node);
72 return yamlConstructors.get(Tag.SEQ).construct(node);
74 return yamlConstructors.get(Tag.MAP).construct(node);
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/resolver/
ImplicitResolverTest.java 27 import org.yaml.snakeyaml.constructor.Construct;
50 public Object construct(Node node) { method in class:ImplicitResolverTest.ConfigurationConstructor.ConfigObjectConstruct
57 protected Construct getConstructor(Node node) {
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/extensions/compactnotation/
CompactConstructor.java 27 import org.yaml.snakeyaml.constructor.Construct;
38 * Construct a custom Java instance out of a compact object notation format.
46 private Construct compactConstruct;
123 private Construct getCompactConstruct() {
130 protected Construct createCompactConstruct() {
135 protected Construct getConstructor(Node node) {
181 public Object construct(Node node) { method in class:CompactConstructor.ConstructCompactObject
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/Ia32/
EbcLowLevel.S 49 # Construct new stack
73 # Construct new stack
  /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/
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/p2p/base/
stunrequest.h 81 void Construct();
  /external/google-breakpad/src/common/
module_unittest.cc 252 TEST(Construct, AddFunctions) {
291 TEST(Construct, AddFrames) {
378 TEST(Construct, UniqueFiles) {
391 TEST(Construct, DuplicateFunctions) {
410 TEST(Construct, FunctionsWithSameAddress) {
433 TEST(Construct, Externs) {
458 TEST(Construct, DuplicateExterns) {
482 TEST(Construct, FunctionsAndExternsWithSameAddress) {
513 TEST(Construct, FunctionsAndThumbExternsWithSameAddress) {

Completed in 1315 milliseconds

1 2 3 4 5 6