HomeSort by relevance Sort by last modified time
    Searched refs:to (Results 51 - 75 of 12869) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
AnimatableVisibility.cpp 15 * contributors may be used to endorse or promote products derived from
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
39 EVisibility to = toAnimatableVisibility(value)->m_visibility; local
40 return from != VISIBLE && to != VISIBLE;
46 EVisibility to = toAnimatableVisibility(value)->m_visibility; local
47 if (from != VISIBLE && to != VISIBLE)
  /external/lldb/test/lang/cpp/dynamic-value/
Makefile 3 CXX_SOURCES := pass-to-base.cpp
  /external/compiler-rt/
README.android 3 * cannot push upstream to the llvm.org repository:
4 * - Changes due to Android's build system.
5 * - Changes due to Android's toolchain.
6 * - Changes due to the limitations in Android-based consumer electronics.
8 * Some of them are to-dos. If and when they are done, there will no longer be
11 * The file contains useful hints when we try to resolve future 3-way merge
15 * For JellyBean: Synced to upstream r155350
16 * For JellyBean MR1: Synced to upstream r162279
17 * For Jellybean MR2: Synced to upstream r177337
18 * For Key Lime Pie: Synced to upstream r18788
    [all...]
  /external/jsilver/src/com/google/streamhtmlparser/impl/
ParserStateTable.java 10 * Unless required by applicable law or agreed to in writing, software
30 * <p>This class provides methods to initially build the state table and then
31 * methods at parsing time to determine the transitions to subsequent states.
35 * ASCII characters, that is characters in the Unicode space of [U+0000 to
36 * U+00FF]. We use that property to design a more efficient state transition
40 * transition exists, we switch to the Internal Error state.
61 * characters in the range 0 to MAX_CHARS -1.
87 * Returns the state to go to when receiving the current {@code char
    [all...]
  /external/llvm/test/MC/Mips/
mips-bad-branches.s 3 # CHECK: error: branch to misaligned address
5 # CHECK: error: branch to misaligned address
7 # CHECK: error: branch to misaligned address
11 # CHECK: error: branch to misaligned address
13 # CHECK: error: branch to misaligned address
15 # CHECK: error: branch to misaligned address
20 # CHECK: error: branch to misaligned address
22 # CHECK: error: branch to misaligned address
24 # CHECK: error: branch to misaligned address
28 # CHECK: error: branch to misaligned addres
    [all...]
  /cts/tools/signature-tools/src/signature/compare/model/impl/
SigClassReferenceDelta.java 10 * Unless required by applicable law or agreed to in writing, software
25 public SigClassReferenceDelta(IClassReference from, IClassReference to) {
26 super(from, to);
SigConstructorDelta.java 10 * Unless required by applicable law or agreed to in writing, software
25 public SigConstructorDelta(IConstructor from, IConstructor to) {
26 super(from, to);
SigFieldDelta.java 10 * Unless required by applicable law or agreed to in writing, software
25 public SigFieldDelta(IField from, IField to) {
26 super(from, to);
SigGenericDeclarationDelta.java 10 * Unless required by applicable law or agreed to in writing, software
26 IGenericDeclaration to) {
27 super(from, to);
SigModifierDelta.java 10 * Unless required by applicable law or agreed to in writing, software
25 public SigModifierDelta(Modifier from, Modifier to) {
26 super(from, to);
SigPrimitiveTypeDelta.java 10 * Unless required by applicable law or agreed to in writing, software
25 public SigPrimitiveTypeDelta(IPrimitiveType from, IPrimitiveType to) {
26 super(from, to);
SigTypeDefinitionDelta.java 10 * Unless required by applicable law or agreed to in writing, software
25 public SigTypeDefinitionDelta(T from, T to) {
26 super(from, to);
SigTypeDelta.java 10 * Unless required by applicable law or agreed to in writing, software
25 public SigTypeDelta(T from, T to) {
26 super(from, to);
  /dalvik/dx/tests/077-dex-code-alignment/
run 11 # Unless required by applicable law or agreed to in writing, software
19 # The awk script below attempts to filter out everything but the
24 dx --debug --dex --positions=none --no-locals --dump-to=- *.class | awk '
  /external/chromium_org/components/enhanced_bookmarks/
image_store.cc 15 void ImageStore::ChangeImageURL(const GURL& from, const GURL& to) {
23 Insert(to, image_info.second, image_info.first);
  /external/chromium_org/third_party/WebKit/ManualTests/
timeout-test.php 3 ?>This content took 10m10s to deliver. Congratulations, you didn't time out!
  /external/chromium_org/third_party/boringssl/src/include/openssl/
type_check.h 6 * The implementation was written so as to conform with Netscapes SSL.
9 * the following conditions are aheared to. The following conditions
10 * apply to all code found in this distribution, be it the RC4, RSA,
16 * the code are not to be removed.
41 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
45 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
69 * pointers, but we wish to have type checking when they are used with a
72 /* CHECKED_CAST casts |p| from type |from| to type |to|. */
73 #define CHECKED_CAST(to, from, p) ((to) (1 ? (p) : (from)0)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
messages.properties 14 standardError = Standard error on this test is {0} (should be less than {1} to become reliable!)
  /external/jarjar/src/main/com/tonicsystems/jarjar/
TextDepHandler.java 10 * Unless required by applicable law or agreed to in writing, software
31 protected void handle(String from, String to) throws IOException {
32 w.println(from + " -> " + to);
  /external/linux-tools-perf/perf-3.12.0/arch/frv/lib/
memcpy.S 18 # void *memcpy(void *to, const char *from, size_t count)
21 # to caller's fixup routine, aborting the remainder of the copy
32 # optimise based on best common alignment for to, from & count
102 # copy to/from userspace
116 # abuse memcpy to do the dirty work
  /external/llvm/test/MC/AsmParser/
dot-symbol.s 1 # Historically 'as' treats '.' as a reference to the current location in
  /external/mockito/src/org/mockito/internal/util/reflection/
FieldCopier.java 11 public <T> void copyValue(T from, T to, Field field) throws IllegalAccessException {
13 field.set(to, value);
  /external/openssl/crypto/rsa/
rsa_null.c 25 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
40 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
45 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
66 * It is designed to allow some RSA functions to work while stopping those
73 unsigned char *to, RSA *rsa,int padding);
75 unsigned char *to, RSA *rsa,int padding);
77 unsigned char *to, RSA *rsa,int padding);
79 unsigned char *to, RSA *rsa,int padding);
108 unsigned char *to, RSA *rsa, int padding
    [all...]
  /external/libcxx/test/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/
char16_t_in.pass.cpp 16 // internT* to, internT* to_end, internT*& to_next) const;
29 F::intern_type to[9]; local
35 to, to + 9, to_next) == F::ok);
37 assert(to_next - to == 9);
39 assert(to[i] == from[i]);
char16_t_out.pass.cpp 16 // externT* to, externT* to_end, externT*& to_next) const;
33 char to[9] = {0}; local
38 to, to + 9, to_next);
41 assert(to_next - to == 9);
43 assert(to[i] == from[i]);

Completed in 1936 milliseconds

1 23 4 5 6 7 8 91011>>