/prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/source/val/ |
Construct.cpp | 27 #include "val/Construct.h" 34 Construct::Construct(ConstructType construct_type, 36 std::vector<Construct*> constructs) 42 ConstructType Construct::type() const { return type_; } 44 const std::vector<Construct*>& Construct::corresponding_constructs() const { 47 std::vector<Construct*>& Construct::corresponding_constructs() { 62 void Construct::set_corresponding_constructs [all...] |
Construct.h | 45 /// continue construct 48 /// set of blocks dominated by the OpSwitch's merge block (this construct is 57 class Construct { 59 Construct(ConstructType type, BasicBlock* dominator, 61 std::vector<Construct*> constructs = {}); 63 /// Returns the type of the construct 66 const std::vector<Construct*>& corresponding_constructs() const; 67 std::vector<Construct*>& corresponding_constructs(); 68 void set_corresponding_constructs(std::vector<Construct*> constructs); 70 /// Returns the dominator block of the construct [all...] |
Function.h | 47 class Construct; 84 /// Registers a loop merge construct in the function 92 /// Registers a selection merge construct in the function 132 const std::list<Construct>& constructs() const; 135 std::list<Construct>& constructs(); 245 std::list<Construct> cfg_constructs_;
|
Function.cpp | 35 #include "val/Construct.h" 116 Construct& loop_construct = cfg_constructs_.back(); 118 Construct& continue_construct = cfg_constructs_.back(); 262 const list<Construct>& Function::constructs() const { return cfg_constructs_; } 263 list<Construct>& Function::constructs() { return cfg_constructs_; }
|
/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/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...] |
JodaTimeFlowStylesTest.java | 28 import org.yaml.snakeyaml.constructor.Construct; 142 public Object construct(Node nnode) { method in class:JodaTimeFlowStylesTest.JodaPropertyConstructor.TimeStampConstruct 144 Construct dateConstructor = yamlConstructors.get(Tag.TIMESTAMP); 145 Date date = (Date) dateConstructor.construct(nnode); 148 return super.construct(nnode);
|
/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,
|
bytebuffer.h | 106 void Construct(const char* bytes, size_t size, ByteOrder byte_order);
|
/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(MyClass* allocated_ptr) { 108 ConstructTrait::Construct(MutableInstance(storage)); 131 static void Construct(T* allocated_ptr) {
|
/frameworks/native/libs/vr/libpdx/private/pdx/rpc/ |
variant.h | 136 std::int32_t Construct(TypeTag<Type>, Args&&... args) { 141 EnableIfConstructible<std::int32_t, Type, Args...> Construct(Args&&... args) { 195 Construct(TypeTag<Type>{}, std::forward<Args>(args)...); 259 std::int32_t Construct(TypeTag<First>, Args&&... args) { 264 std::int32_t Construct(TypeTag<T>, Args&&... args) { 266 rest_.template Construct(TypeTag<T>{}, std::forward<Args>(args)...); 270 EnableIfConstructible<std::int32_t, First, Args...> Construct( 276 EnableIfNotConstructible<std::int32_t, First, Args...> Construct( 278 return 1 + rest_.template Construct(std::forward<Args>(args)...); 340 Construct(TypeTag<First>{}, std::forward<Args>(args)...) [all...] |
/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();
|
/system/update_engine/ |
p2p_manager.h | 177 static P2PManager* 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) {
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue56/ |
PerlTest.java | 27 import org.yaml.snakeyaml.constructor.Construct; 113 protected Construct getConstructor(Node node) {
|