/external/snakeyaml/src/test/java/org/yaml/snakeyaml/constructor/ |
ConstructorMappingTest.java | 35 Map<Object, Object> map = (Map<Object, Object>) construct(new CustomConstructor(), data); 43 Map<Object, Object> map = (Map<Object, Object>) construct(data); 48 private Object construct(String data) { method in class:ConstructorMappingTest 49 return construct(new Constructor(), data); 52 private Object construct(Constructor constructor, String data) { method in class:ConstructorMappingTest
|
ConstructorSequenceTest.java | 34 List<Object> list = construct(new CustomConstructor(), data); 41 List<Object> list = construct(data); 64 private List<Object> construct(String data) { method in class:ConstructorSequenceTest 65 return construct(new Constructor(), data); 69 private List<Object> construct(Constructor constructor, String data) { method in class:ConstructorSequenceTest
|
/external/libcxx/test/std/utilities/memory/default.allocator/allocator.members/ |
construct.pass.cpp | 13 // template <class... Args> void construct(pointer p, Args&&... args); 68 a.construct(ap); 76 a.construct(ap, A()); 84 a.construct(ap, 5); 92 a.construct(ap, 5, (int*)0); 116 a.construct(ap); 124 a.construct(ap, move_only());
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/default.allocator/allocator.members/ |
construct.pass.cpp | 13 // template <class... Args> void construct(pointer p, Args&&... args); 88 a.construct(ap); 96 a.construct(ap, A()); 104 a.construct(ap, 5); 112 a.construct(ap, 5, (int*)0); 133 a.construct(ap); 141 a.construct(ap, move_only());
|
/external/llvm/lib/Target/X86/MCTargetDesc/ |
X86MCTargetDesc.h | 76 /// Construct an X86 Windows COFF machine code streamer which will generate 84 /// Construct an X86 Mach-O object writer. 89 /// Construct an X86 ELF object writer. 92 /// Construct an X86 Win COFF object writer. 96 /// Construct X86-64 Mach-O relocation info. 99 /// Construct X86-64 ELF relocation info.
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/exception/ |
ConvergenceException.java | 34 * Construct the exception. 40 * Construct the exception with a specific context. 50 * Construct the exception with a specific context and arguments.
|
NoDataException.java | 34 * Construct the exception. 40 * Construct the exception with a specific context.
|
NotPositiveException.java | 33 * Construct the exception. 41 * Construct the exception with a specific context.
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/ |
SignerId.java | 23 * Construct a signer ID with the value of a public key's subjectKeyId. 33 * Construct a signer ID based on the issuer and serial number of the signer's associated 45 * Construct a signer ID based on the issuer and serial number of the signer's associated
|
/external/icu/icu4c/source/test/intltest/ |
itrbnfrt.cpp | 68 errcheckln(status, "failed to construct formatter - %s", u_errorName(status)); 86 errcheckln(status, "failed to construct formatter - %s", u_errorName(status)); 104 errcheckln(status, "failed to construct formatter - %s", u_errorName(status)); 122 errcheckln(status, "failed to construct formatter - %s", u_errorName(status)); 140 errcheckln(status, "failed to construct formatter - %s", u_errorName(status)); 158 errcheckln(status, "failed to construct formatter - %s", u_errorName(status)); 176 errcheckln(status, "failed to construct formatter - %s", u_errorName(status)); 194 errcheckln(status, "failed to construct formatter - %s", u_errorName(status)); 212 errcheckln(status, "failed to construct formatter - %s", u_errorName(status)); 230 errcheckln(status, "failed to construct formatter - %s", u_errorName(status)) [all...] |
/external/apache-http/src/org/apache/commons/logging/ |
LogConfigurationException.java | 38 * Construct a new exception with <code>null</code> as its detail message. 48 * Construct a new exception with the specified detail message. 60 * Construct a new exception with the specified cause and a derived 73 * Construct a new exception with the specified detail message and cause.
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
ArabicShapingException.java | 20 * Construct the exception with the given message
|
/external/icu/icu4c/source/tools/genrb/ |
rle.h | 26 * Construct a string representing a byte array. Use run-length encoding. 44 * Construct a string representing a char array. Use run-length encoding. 60 * Construct an array of bytes from a run-length encoded string. 65 * Construct an array of shorts from a run-length encoded string.
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
ArabicShapingException.java | 19 * Construct the exception with the given message
|
/external/libxml2/result/errors/ |
attr4.xml.err | 4 ./test/errors/attr4.xml:1: parser error : attributes construct error
|
/external/llvm/test/CodeGen/X86/ |
split-vector-bitcast.ll | 4 ; (This is primarily checking that this construct doesn't crash.)
|
/external/slf4j/jcl-over-slf4j/src/main/java/org/apache/commons/logging/ |
LogConfigurationException.java | 39 * Construct a new exception with <code>null</code> as its detail message. 46 * Construct a new exception with the specified detail message. 56 * Construct a new exception with the specified cause and a derived detail 69 * Construct a new exception with the specified detail message and cause.
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/ |
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...] |
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/v8/test/mjsunit/harmony/ |
proxies-revocable.js | 11 "defineProperty", "ownKeys", "apply", "construct"
|
/external/v8/test/mjsunit/regress/ |
regress-362870.js | 8 // we construct a dictionary, quite the opposite.
|
/toolchain/binutils/binutils-2.25/ld/testsuite/ld-cris/ |
globsymw1.s | 14 ;# construct is last, but is missing the actual symbol warned about.
|
globsymw2.s | 4 ;# symbol warning construct.
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/arm/neon/ |
sixtappredict4x4_neon.asm | 75 vext.8 d18, d6, d7, #5 ;construct src_ptr[3] 91 vzip.32 d6, d7 ;construct src_ptr[-2], and put 2-line data together 93 vshr.u64 q9, q4, #8 ;construct src_ptr[-1] 100 vshr.u64 q3, q4, #32 ;construct src_ptr[2] 107 vshr.u64 q9, q4, #16 ;construct src_ptr[0] 114 vshr.u64 q3, q4, #24 ;construct src_ptr[1] 139 vext.8 d18, d6, d7, #5 ;construct src_ptr[3] 149 vext.8 d31, d22, d23, #5 ;construct src_ptr[3] 157 vzip.32 d6, d7 ;construct src_ptr[-2], and put 2-line data together 159 vshr.u64 q9, q4, #8 ;construct src_ptr[-1 [all...] |
/art/tools/ahat/src/ |
Column.java | 36 * Construct a left-aligned column with a simple heading. 43 * Construct a column with a simple heading.
|