/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/ |
15.5.3.1-2.js | 14 * The Initial Developer of the Original Code is Netscape Communications 26 Description: The initial value of String.prototype is the built-in
|
15.5.3.1-3.js | 14 * The Initial Developer of the Original Code is Netscape Communications 26 Description: The initial value of String.prototype is the built-in
|
15.5.3.1-4.js | 14 * The Initial Developer of the Original Code is Netscape Communications 26 Description: The initial value of String.prototype is the built-in
|
/external/webkit/Source/WebKit/mac/Misc/ |
OutlookQuirksUserScript.js | 26 // This should only apply to the initial empty document, which should look like: 31 // Outlook expects the initial empty document to only contain the document
|
/libcore/luni/src/test/java/libcore/java/lang/ |
OldInheritableThreadLocalTest.java | 56 return "initial"; 63 assertEquals("initial", itl.get());
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
mbsinit.c | 1 /* Test for initial conversion state. 37 words, it is always in the initial state. */
|
/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/ |
ItemSimpleGestureListener.java | 45 * Notified when a long press occurs with the initial on down 49 * @param e The initial on down motion event that started the
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
route.h | 44 unsigned short rt_irtt; /* Initial RTT */ 57 #define RTF_IRTT 0x0100 /* Initial round trip time */
|
/external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/serialization/ |
SerializationTest.java | 225 * @param initial - 226 * initial object used for creating serialized form 230 void assertDeserialized(Serializable initial, Serializable deserialized); 235 public void assertDeserialized(Serializable initial, 238 Assert.assertEquals(initial, deserialized); 243 * Comparator for verifying that deserialized object is the same as initial. 246 public void assertDeserialized(Serializable initial, 249 Assert.assertSame(initial, deserialized); 257 public void assertDeserialized(Serializable initial, Serializable deserialized) { 259 Throwable initThr = (Throwable) initial; 554 Serializable initial = (Serializable) object; local [all...] |
/frameworks/base/core/java/android/app/ |
DatePickerDialog.java | 64 * @param year The initial year of the dialog. 65 * @param monthOfYear The initial month of the dialog. 66 * @param dayOfMonth The initial day of the dialog. 80 * @param year The initial year of the dialog. 81 * @param monthOfYear The initial month of the dialog. 82 * @param dayOfMonth The initial day of the dialog.
|
/external/webkit/Source/WebCore/html/parser/ |
XSSFilter.cpp | 149 m_state = Initial; 196 ASSERT(m_state == Initial); 208 case Initial: 213 ASSERT(m_state == Initial); 233 ASSERT(m_state == Initial); 265 m_state = Initial; 286 ASSERT(m_state == Initial); 300 ASSERT(m_state == Initial); 315 ASSERT(m_state == Initial); 334 ASSERT(m_state == Initial); [all...] |
/external/javassist/ |
License.html | 29 <P><B>1.6. ''Initial Developer''</B> means the individual or entity identified 30 as the Initial Developer in the Source Code notice required by <B>Exhibit 36 extent possible, whether at the time of the initial grant or subsequently 70 <UL><B>2.1. The Initial Developer Grant.</B> <BR>The Initial Developer hereby 74 patent or trademark) Licensable by Initial Developer to use, reproduce, 83 are effective on the date Initial Developer first distributes Original Code 145 indirectly, from Original Code provided by the Initial Developer and including 146 the name of the Initial Developer in (a) the Source Code, and (b) in any 183 may do so only on Your own behalf, and not on behalf of the Initial Developer [all...] |
/external/apache-harmony/regex/src/test/java/org/apache/harmony/tests/java/util/regex/ |
PatternSyntaxExceptionTest.java | 94 public void assertDeserialized(Serializable initial, 98 SerializationTest.THROWABLE_COMPARATOR.assertDeserialized(initial, 101 PatternSyntaxException initPatternSyntaxException = (PatternSyntaxException) initial;
|
/external/chromium/chrome/browser/importer/ |
firefox_profile_lock.cc | 29 * The Initial Developer of the Original Code is 31 * Portions created by the Initial Developer are Copyright (C) 2002 32 * the Initial Developer. All Rights Reserved.
|
firefox_profile_lock.h | 43 * The Initial Developer of the Original Code is 45 * Portions created by the Initial Developer are Copyright (C) 2002 46 * the Initial Developer. All Rights Reserved.
|
/external/chromium/chrome/browser/resources/options/ |
certificate_edit_ca_trust_overlay.js | 97 * @param {boolean} trustSSL The initial value of SSL trust checkbox. 98 * @param {boolean} trustEmail The initial value of Email trust checkbox. 99 * @param {boolean} trustObjSign The initial value of Object Signing trust
|
/external/chromium/crypto/third_party/nss/ |
blapi.h | 19 * The Initial Developer of the Original Code is 21 * Portions created by the Initial Developer are Copyright (C) 1994-2000 22 * the Initial Developer. All Rights Reserved.
|
blapit.h | 19 * The Initial Developer of the Original Code is 21 * Portions created by the Initial Developer are Copyright (C) 1994-2000 22 * the Initial Developer. All Rights Reserved.
|
/external/chromium/googleurl/ |
LICENSE.txt | 47 The Initial Developer of the Original Code is 49 Portions created by the Initial Developer are Copyright (C) 1998 50 the Initial Developer. All Rights Reserved.
|
/external/guava/src/com/google/common/collect/ |
HashBiMap.java | 41 * Returns a new, empty {@code HashBiMap} with the default initial capacity 60 * Constructs a new bimap containing initial values from {@code map}. The 61 * bimap is created with an initial capacity sufficient to hold the mappings
|
/external/javassist/src/main/javassist/bytecode/annotation/ |
ClassMemberValue.java | 34 * Constructs a class value. The initial value is specified 47 * @param className the initial value. 56 * The initial value is java.lang.Class.
|
/external/v8/test/mjsunit/ |
array-reduce.js | 437 assertUnreachable("Reduce no initial value not throwing"); 440 "reduce no initial value not throwing TypeError"); 442 "reduce no initial TypeError type"); 447 assertUnreachable("ReduceRight no initial value not throwing"); 450 "reduceRight no initial value not throwing TypeError"); 452 "reduceRight no initial TypeError type"); 458 assertUnreachable("Reduce sparse no initial value not throwing"); 461 "reduce sparse no initial value not throwing TypeError"); 463 "reduce no initial TypeError type"); 468 assertUnreachable("ReduceRight sparse no initial value not throwing") [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regress/ |
regress-144834.js | 16 * The Initial Developer of the Original Code is Netscape Communications Corp. 17 * Portions created by the Initial Developer are Copyright (C) 2002 18 * the Initial Developer. All Rights Reserved.
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Array/ |
regress-108440.js | 16 * The Initial Developer of the Original Code is Netscape Communications Corp. 17 * Portions created by the Initial Developer are Copyright (C) 2001 18 * the Initial Developer. All Rights Reserved.
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/ |
regress-131510-001.js | 16 * The Initial Developer of the Original Code is Netscape Communications Corp. 17 * Portions created by the Initial Developer are Copyright (C) 2002 18 * the Initial Developer. All Rights Reserved.
|