/external/chromium_org/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/chromium_org/v8/test/webkit/ |
polymorphic-construct-expected.txt | 29 PASS construct(Foo).field is 'foo' 30 PASS construct(Foo).field is 'foo' 31 PASS construct(Foo).field is 'foo' 32 PASS construct(Foo).field is 'foo' 33 PASS construct(Bar).field is 'bar' 34 PASS construct(Baz).field is 'baz' 35 PASS construct(Foo).field is 'foo' 36 PASS construct(Bar).field is 'bar' 37 PASS construct(Baz).field is 'baz' 38 PASS construct(Foo).field is 'foo [all...] |
polymorphic-construct.js | 40 function construct(what) { function 45 shouldBe("construct(Foo).field", "'foo'"); 49 shouldBe("construct(Foo).field", "'foo'"); 50 shouldBe("construct(Bar).field", "'bar'"); 51 shouldBe("construct(Baz).field", "'baz'");
|
/external/javasqlite/src/main/java/SQLite/ |
Exception.java | 10 * Construct a new SQLite exception.
|
/external/libcxx/test/re/re.regex/re.regex.construct/ |
Android.mk | 17 test_makefile := external/libcxx/test/re/re.regex/re.regex.construct/Android.mk 19 test_name := re/re.regex/re.regex.construct/default 23 test_name := re/re.regex/re.regex.construct/string 27 test_name := re/re.regex/re.regex.construct/awk_oct 31 test_name := re/re.regex/re.regex.construct/iter_iter_flg 35 test_name := re/re.regex/re.regex.construct/iter_iter 39 test_name := re/re.regex/re.regex.construct/copy 43 test_name := re/re.regex/re.regex.construct/ptr_size_flg 47 test_name := re/re.regex/re.regex.construct/bad_escape 51 test_name := re/re.regex/re.regex.construct/pt [all...] |
/external/chromium_org/v8/test/mjsunit/compiler/ |
alloc-object.js | 28 // Flags: --allow-natives-syntax --inline-construct 34 function test_helper(construct, a, b) { 35 return new construct(a, b); 38 function test(construct) { 40 test_helper(construct, 0, 0); 41 test_helper(construct, 0, 0); 44 var o = test_helper(construct, 1, 2); 50 construct.prototype = { z:6 }; 51 var o = test_helper(construct, 4, 5); 59 function finalize_slack_tracking(construct) { 48 construct.prototype = { z:6 }; class [all...] |
/external/chromium_org/v8/test/mjsunit/harmony/ |
proxies-hash.js | 33 function TestWithProxies(test, construct, handler) { 34 test(construct, handler, Proxy.create) 35 test(construct, handler, function(h) { 43 function TestSet(construct, fix) { 44 TestWithProxies(TestSet2, construct, fix) 47 function TestSet2(construct, fix, create) { 54 var s = new construct(); 80 function TestMap(construct, fix) { 81 TestWithProxies(TestMap2, construct, fix) 84 function TestMap2(construct, fix, create) [all...] |
/external/chromium_org/third_party/webrtc/base/ |
buffer.h | 25 Construct(NULL, 0, 0); 28 Construct(data, length, length); 31 Construct(data, length, capacity); 34 Construct(buf.data(), buf.length(), buf.length()); 45 Construct(buf.data(), buf.length(), buf.length()); 86 Construct(NULL, 0, 0); 90 void Construct(const void* data, size_t length, size_t capacity) {
|
/external/llvm/include/llvm/ADT/ |
ArrayRef.h | 50 /// Construct an empty ArrayRef. 53 /// Construct an empty ArrayRef from None. 56 /// Construct an ArrayRef from a single element. 60 /// Construct an ArrayRef from a pointer and length. 64 /// Construct an ArrayRef from a range. 68 /// Construct an ArrayRef from a SmallVector. This is templated in order to 70 /// copy-construct an ArrayRef. 76 /// Construct an ArrayRef from a std::vector. 81 /// Construct an ArrayRef from a C array. 87 /// Construct an ArrayRef from a std::initializer_list [all...] |
/external/junit/src/org/junit/runners/model/ |
InitializationError.java | 14 * Construct a new {@code InitializationError} with one or more 26 * Construct a new {@code InitializationError} with one cause
|
/external/clang/test/CodeGenCXX/ |
const-base-cast.cpp | 3 // Check that the following construct, which is similar to one which occurs
|
/external/smack/src/org/xbill/DNS/ |
NSIDOption.java | 21 * Construct an NSID option.
|
/external/zlib/src/contrib/iostream/ |
test.cpp | 6 // Construct a stream object with this filebuffer. Anything sent
|
/external/chromium_org/tools/grit/grit/tool/ |
toolbar_postprocess.py | 112 node.AddChild(misc.IdentifierNode.Construct(node, 'IDS_COMMAND_gcFirst', '12000', '')) 113 node.AddChild(misc.IdentifierNode.Construct(node, 115 node.AddChild(misc.IdentifierNode.Construct(node, 'PCI_BUTTON', '0', '')) 116 node.AddChild(misc.IdentifierNode.Construct(node, 'PCI_MENU', '1', '')) 117 node.AddChild(misc.IdentifierNode.Construct(node, 'PCI_TIP', '2', '')) 118 node.AddChild(misc.IdentifierNode.Construct(node, 'PCI_OPTIONS_TEXT', '3', '')) 119 node.AddChild(misc.IdentifierNode.Construct(node, 'PCI_TIP_DISABLED', '4', '')) 120 node.AddChild(misc.IdentifierNode.Construct(node, 'PCI_TIP_MENU', '5', '')) 121 node.AddChild(misc.IdentifierNode.Construct(node, 'PCI_TIP_MENU_DISABLED', '6', '')) 122 node.AddChild(misc.IdentifierNode.Construct(node, 'PCI_TIP_OPTIONS', '7', '') [all...] |
/external/chromium_org/third_party/angle/src/compiler/translator/ |
intermOut.cpp | 296 case EOpConstructFloat: out << "Construct float"; break; 297 case EOpConstructVec2: out << "Construct vec2"; break; 298 case EOpConstructVec3: out << "Construct vec3"; break; 299 case EOpConstructVec4: out << "Construct vec4"; break; 300 case EOpConstructBool: out << "Construct bool"; break; 301 case EOpConstructBVec2: out << "Construct bvec2"; break; 302 case EOpConstructBVec3: out << "Construct bvec3"; break; 303 case EOpConstructBVec4: out << "Construct bvec4"; break; 304 case EOpConstructInt: out << "Construct int"; break; 305 case EOpConstructIVec2: out << "Construct ivec2"; break [all...] |
/external/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());
|
/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/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/chromium_org/base/test/android/javatests/src/org/chromium/base/test/util/ |
UrlUtils.java | 18 * Construct the full path of a test data file. 26 * Construct a suitable URL for loading a test data file. 34 * Construct a data:text/html URI for loading from an inline HTML.
|
/external/chromium_org/third_party/icu/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/chromium_org/v8/src/ |
zone-containers.h | 17 // A wrapper subclass for std::vector to make it easy to construct one 33 // A wrapper subclass std::deque to make it easy to construct one 42 // A wrapper subclass for std::queue to make it easy to construct one
|
/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/chromium_org/chrome/browser/ui/cocoa/ |
encoding_menu_controller_delegate_mac.h | 14 // does that for us automagically, the only thing left to do is construct
|
/external/chromium_org/chrome/renderer/extensions/ |
sync_file_system_custom_bindings.h | 20 // construct a file system object from the given name and root_url.
|