Home
last modified time | relevance | path

Searched refs:Construct (Results 1 – 25 of 152) sorted by relevance

1234567

/external/webrtc/webrtc/base/
Dbytebuffer.cc26 Construct(NULL, DEFAULT_SIZE, ORDER_NETWORK); in ByteBuffer()
30 Construct(NULL, DEFAULT_SIZE, byte_order); in ByteBuffer()
34 Construct(bytes, len, ORDER_NETWORK); in ByteBuffer()
38 Construct(bytes, len, byte_order); in ByteBuffer()
42 Construct(bytes, strlen(bytes), ORDER_NETWORK); in ByteBuffer()
46 Construct(buf.data<char>(), buf.size(), ORDER_NETWORK); in ByteBuffer()
49 void ByteBuffer::Construct(const char* bytes, size_t len, in Construct() function in rtc::ByteBuffer
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/
DBaseConstructor.java47 protected final Map<NodeId, Construct> yamlClassConstructors = new EnumMap<NodeId, Construct>(
56 protected final Map<Tag, Construct> yamlConstructors = new HashMap<Tag, Construct>();
61 protected final Map<String, Construct> yamlMultiConstructors = new HashMap<String, Construct>();
181 Construct constructor = getConstructor(node); in constructObject()
200 protected Construct getConstructor(Node node) { in getConstructor()
204 Construct constructor = yamlConstructors.get(node.getTag()); in getConstructor()
DConstructor.java140 protected class ConstructMapping implements Construct {
333 protected class ConstructYamlObject implements Construct {
335 private Construct getConstructor(Node node) { in getConstructor()
339 Construct constructor = yamlClassConstructors.get(node.getNodeId()); in getConstructor()
434 Construct stringConstructor = yamlConstructors.get(Tag.STR); in constructStandardJavaInstance()
437 Construct boolConstructor = yamlConstructors.get(Tag.BOOL); in constructStandardJavaInstance()
440 Construct charConstructor = yamlConstructors.get(Tag.STR); in constructStandardJavaInstance()
451 Construct dateConstructor = yamlConstructors.get(Tag.TIMESTAMP); in constructStandardJavaInstance()
470 Construct doubleConstructor = yamlConstructors.get(Tag.FLOAT); in constructStandardJavaInstance()
479 Construct intConstructor = yamlConstructors.get(Tag.INT); in constructStandardJavaInstance()
[all …]
DConstruct.java28 public interface Construct { interface
DAbstractConstruct.java25 public abstract class AbstractConstruct implements Construct {
/external/snakeyaml/src/test/java/examples/jodatime/
DJodaTimeExampleTest.java27 import org.yaml.snakeyaml.constructor.Construct;
73 Construct dateConstructor = yamlConstructors.get(Tag.TIMESTAMP); in construct()
88 private final Construct javaDateConstruct;
89 private final Construct jodaDateConstruct;
DJodaTimeFlowStylesTest.java28 import org.yaml.snakeyaml.constructor.Construct;
144 Construct dateConstructor = yamlConstructors.get(Tag.TIMESTAMP); in construct()
/external/google-breakpad/src/common/
Dmodule_unittest.cc252 TEST(Construct, AddFunctions) { in TEST() argument
291 TEST(Construct, AddFrames) { in TEST() argument
378 TEST(Construct, UniqueFiles) { in TEST() argument
391 TEST(Construct, DuplicateFunctions) { in TEST() argument
410 TEST(Construct, FunctionsWithSameAddress) { in TEST() argument
433 TEST(Construct, Externs) { in TEST() argument
458 TEST(Construct, DuplicateExterns) { in TEST() argument
482 TEST(Construct, FunctionsAndExternsWithSameAddress) { in TEST() argument
513 TEST(Construct, FunctionsAndThumbExternsWithSameAddress) { in TEST() argument
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue94/
DChangeRuntimeClassTest.java23 import org.yaml.snakeyaml.constructor.Construct;
79 private Construct getConstructor(Node node) { in getConstructor()
87 Construct constructor = yamlClassConstructors.get(node.getNodeId()); in getConstructor()
/external/webrtc/talk/media/base/
Dvideocommon.h197 Construct(0, 0, 0, 0); in VideoFormat()
201 Construct(w, h, interval_ns, cc); in VideoFormat()
205 Construct(format.width, format.height, format.interval, format.fourcc); in VideoFormat()
208 void Construct(int w, int h, int64_t interval_ns, uint32_t cc) { in Construct() function
Drtpdataengine.cc82 Construct(timing); in RtpDataMediaChannel()
86 Construct(NULL); in RtpDataMediaChannel()
89 void RtpDataMediaChannel::Construct(rtc::Timing* timing) { in Construct() function in cricket::RtpDataMediaChannel
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/extensions/compactnotation/
DCompactConstructor.java27 import org.yaml.snakeyaml.constructor.Construct;
46 private Construct compactConstruct;
123 private Construct getCompactConstruct() { in getCompactConstruct()
130 protected Construct createCompactConstruct() { in createCompactConstruct()
135 protected Construct getConstructor(Node node) { in getConstructor()
/external/webrtc/webrtc/system_wrappers/source/
Dcondition_variable_posix.cc30 const int error = ptr->Construct(); in Create()
42 int ConditionVariablePosix::Construct() { in Construct() function in webrtc::ConditionVariablePosix
Dcondition_variable_posix.h34 int Construct();
/external/snakeyaml/src/test/java/examples/
DIgnoreTagsExampleTest.java26 import org.yaml.snakeyaml.constructor.Construct;
56 private Construct original;
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/resolver/
DImplicitResolverTest.java27 import org.yaml.snakeyaml.constructor.Construct;
57 protected Construct getConstructor(Node node) { in getConstructor()
/external/mockftpserver/tags/2.x_Before_IDEA/src/main/groovy/org/mockftpserver/fake/filesystem/
DDirectoryEntry.groovy28 * Construct a new instance without setting its path
34 * Construct a new instance with the specified value for its path
DAbstractFileSystemEntry.groovy31 * Construct a new instance without setting its path
37 * Construct a new instance with the specified value for its path
DFileEntry.groovy39 * Construct a new instance without setting its path
45 * Construct a new instance with the specified value for its path
53 * Construct a new instance with the specified path and file contents
DFileInfo.groovy33 * Construct and return a new instance representing a directory entry.
43 * Construct and return a new instance representing a file entry.
/external/v8/src/base/
Dlazy-instance.h108 ConstructTrait::Construct(MutableInstance(storage)); in InitStorageUsingTrait()
131 static void Construct(T* allocated_ptr) { in Construct() function
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue56/
DPerlTest.java27 import org.yaml.snakeyaml.constructor.Construct;
113 protected Construct getConstructor(Node node) { in getConstructor()
/external/webrtc/webrtc/p2p/base/
Dstunrequest.cc47 request->Construct(); in SendDelayed()
164 void StunRequest::Construct() { in Construct() function in cricket::StunRequest
/external/clang/lib/AST/
DDeclPrinter.cpp593 } else if (CXXConstructExpr *Construct in VisitFunctionDecl() local
595 Args = Construct->getArgs(); in VisitFunctionDecl()
596 NumArgs = Construct->getNumArgs(); in VisitFunctionDecl()
755 if (CXXConstructExpr *Construct = in VisitVarDecl() local
758 !Construct->isListInitialization()) { in VisitVarDecl()
759 ImplicitInit = Construct->getNumArgs() == 0 || in VisitVarDecl()
760 Construct->getArg(0)->isDefaultArgument(); in VisitVarDecl()
/external/webrtc/talk/session/media/
Dchannelmanager.cc84 Construct(me, dme, cm, worker_thread); in ChannelManager()
89 Construct(me, in ChannelManager()
95 void ChannelManager::Construct(MediaEngineInterface* me, in Construct() function in cricket::ChannelManager

1234567