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

1 2 3 4

  /external/v8/test/mjsunit/
new.js 28 function Construct(x) { return x; }
30 assertFalse(null == new Construct(null));
31 assertFalse(void 0 == new Construct(void 0));
32 assertFalse(0 == new Construct(0));
33 assertFalse(1 == new Construct(1));
34 assertFalse(4.2 == new Construct(4.2));
35 assertFalse('foo' == new Construct('foo'));
36 assertFalse(true == new Construct(true));
39 assertTrue(x === new Construct(x));
40 assertFalse(x === new Construct(null))
    [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...]
Constructor.java 48 * Construct a custom Java instance.
137 * Construct mapping instance (Map, JavaBean) when the runtime class is
140 protected class ConstructMapping implements Construct {
143 * Construct JavaBean. If type safe collections are used please look at
151 public Object construct(Node node) { method in class:Constructor.ConstructMapping
328 * Construct an instance when the runtime class is not known but a global
333 protected class ConstructYamlObject implements Construct {
335 private Construct getConstructor(Node node) {
339 Construct constructor = yamlClassConstructors.get(node.getNodeId());
343 public Object construct(Node node) method in class:Constructor.ConstructYamlObject
372 public Object construct(Node nnode) { method in class:Constructor.ConstructScalar
527 public Object construct(Node node) { method in class:Constructor.ConstructSequence
    [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
  /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) {
  /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) {
rtpdataengine.cc 82 Construct(timing);
86 Construct(NULL);
89 void RtpDataMediaChannel::Construct(rtc::Timing* timing) {
  /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) {
  /build/core/
dumpvar.mk 91 # Construct the shell commands that print the config banner.
109 @# Construct a special variable for report_config.
  /external/v8/src/
elements-kind.cc 65 static void Construct(
register-configuration.cc 105 static void Construct(ArchDefaultRegisterConfiguration* config) {

Completed in 862 milliseconds

1 2 3 4