HomeSort by relevance Sort by last modified time
    Searched full:instead (Results 101 - 125 of 18028) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/ui/base/cocoa/
window_size_constants.h 14 // It is not valid to make a zero-sized window. Use this constant instead.
  /external/clang/test/CodeGen/
2008-07-29-override-alias-decl.c 10 /* Test that we link to the alias correctly instead of making a new
  /external/jmonkeyengine/engine/src/core-data/Common/MatDefs/Misc/
SimpleTextured.j3md 1 Exception SimpleTextured.j3md has been marked as obsolete. Please use Unshaded.j3md instead.
WireColor.j3md 1 Exception WireColor.j3md has been marked as obsolete. Please use Unshaded.j3md instead.
  /external/llvm/test/CodeGen/Thumb2/
2010-12-03-AddSPNarrowing.ll 3 ; destination register is narrowed to tADDspi instead of tADDrSPi.
  /external/llvm/test/CodeGen/X86/GC/
badrootproto.ll 6 ; This usage is invalid now; instead, objects must be bitcast to i8* for input
  /external/markdown/tests/misc/
br.txt 7 Or, if you prefer, <strong>use two underscores instead</strong>.</p>
  /external/mockito/src/org/mockito/exceptions/
PrintableInvocation.java 14 * Please use {@link DescribedInvocation} instead.
  /external/okhttp/
README.android 8 - Change SpdyWriter.java to call Libcore#newDeflaterOutputStream instead
  /frameworks/volley/tests/src/com/android/volley/utils/
ImmediateResponseDelivery.java 11 * instead of posting back to the main thread.
  /ndk/sources/cpufeatures/
README.TXT 8 Please modify your build scripts to import the library instead ASAP.
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
elfclass.h 6 # error "Never use <bits/elfclass.h> directly; include <link.h> instead."
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
elfclass.h 6 # error "Never use <bits/elfclass.h> directly; include <link.h> instead."
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/
elfclass.h 6 # error "Never use <bits/elfclass.h> directly; include <link.h> instead."
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
sha.py 7 warnings.warn("the sha module is deprecated; use the hashlib module instead",
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
sha.py 7 warnings.warn("the sha module is deprecated; use the hashlib module instead",
  /external/clang/test/SemaObjC/
objc-literal-comparison.m 39 if (obj == @"") return; // expected-warning{{direct comparison of a string literal has undefined behavior}} expected-note{{use 'isEqual:' instead}}
40 if (obj != @"") return; // expected-warning{{direct comparison of a string literal has undefined behavior}} expected-note{{use 'isEqual:' instead}}
41 if (@"" == obj) return; // expected-warning{{direct comparison of a string literal has undefined behavior}} expected-note{{use 'isEqual:' instead}}
42 if (@"" == @"") return; // expected-warning{{direct comparison of a string literal has undefined behavior}} expected-note{{use 'isEqual:' instead}}
44 if (@[] == obj) return; // expected-warning{{direct comparison of an array literal has undefined behavior}} expected-note{{use 'isEqual:' instead}}
45 if (@{} == obj) return; // expected-warning{{direct comparison of a dictionary literal has undefined behavior}} expected-note{{use 'isEqual:' instead}}
46 if (@12 == obj) return; // expected-warning{{direct comparison of a numeric literal has undefined behavior}} expected-note{{use 'isEqual:' instead}}
47 if (@1.0 == obj) return; // expected-warning{{direct comparison of a numeric literal has undefined behavior}} expected-note{{use 'isEqual:' instead}}
48 if (@__objc_yes == obj) return; // expected-warning{{direct comparison of a numeric literal has undefined behavior}} expected-note{{use 'isEqual:' instead}}
49 if (@(1+1) == obj) return; // expected-warning{{direct comparison of a boxed expression has undefined behavior}} expected-note{{use 'isEqual:' instead}}
    [all...]
  /external/hamcrest/src/org/hamcrest/
Matcher.java 10 * Instead, <b>extend</b> the {@link BaseMatcher} abstract class,
26 * This method matches against Object, instead of the generic type T. This is
40 * instead extend BaseMatcher. It's easy to ignore JavaDoc, but a bit harder to ignore
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/config/
suffix.hpp 648 // instead of BOOST_NO_STD_UNORDERED
655 // Use BOOST_NO_CXX11_HDR_INITIALIZER_LIST instead of BOOST_NO_INITIALIZER_LISTS
660 // Use BOOST_NO_CXX11_HDR_ARRAY instead of BOOST_NO_0X_HDR_ARRAY
664 // Use BOOST_NO_CXX11_HDR_CHRONO instead of BOOST_NO_0X_HDR_CHRONO
668 // Use BOOST_NO_CXX11_HDR_CODECVT instead of BOOST_NO_0X_HDR_CODECVT
672 // Use BOOST_NO_CXX11_HDR_CONDITION_VARIABLE instead of BOOST_NO_0X_HDR_CONDITION_VARIABLE
676 // Use BOOST_NO_CXX11_HDR_FORWARD_LIST instead of BOOST_NO_0X_HDR_FORWARD_LIST
680 // Use BOOST_NO_CXX11_HDR_FUTURE instead of BOOST_NO_0X_HDR_FUTURE
686 // instead of BOOST_NO_0X_HDR_INITIALIZER_LIST or BOOST_NO_INITIALIZER_LISTS
696 // Use BOOST_NO_CXX11_HDR_MUTEX instead of BOOST_NO_0X_HDR_MUTE
    [all...]
  /external/clang/test/Analysis/objc/
direct-ivar-assignment-in-annotated-functions.m 47 (__A) = In; // expected-warning {{Direct assignment to an instance variable backing a property; use the setter instead}}
48 _X = In; // expected-warning {{Direct assignment to an instance variable backing a property; use the setter instead}}
49 _Y = In; // expected-warning {{Direct assignment to an instance variable backing a property; use the setter instead}}
50 _Z = In; // expected-warning {{Direct assignment to an instance variable backing a property; use the setter instead}}
51 _nonSynth = 0; // expected-warning {{Direct assignment to an instance variable backing a property; use the setter instead}}
  /external/clang/test/Analysis/
objc-properties.m 66 (__A) = In; // expected-warning {{Direct assignment to an instance variable backing a property; use the setter instead}}
67 _X = In; // expected-warning {{Direct assignment to an instance variable backing a property; use the setter instead}}
68 _Y = In; // expected-warning {{Direct assignment to an instance variable backing a property; use the setter instead}}
69 _Z = In; // expected-warning {{Direct assignment to an instance variable backing a property; use the setter instead}}
70 _nonSynth = 0; // expected-warning {{Direct assignment to an instance variable backing a property; use the setter instead}}
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
Parser.java 64 * exception if the message is missing required fields. Instead, a partial
73 * Instead, a partial message is returned.
100 * exception if the message is missing required fields. Instead, a partial
109 * Instead, a partial message is returned.
149 * exception if the message is missing required fields. Instead, a partial
158 * Instead, a partial message is returned.
166 * exception if the message is missing required fields. Instead, a partial
175 * Instead, a partial message is returned.
206 * exception if the message is missing required fields. Instead, a partial
215 * Instead, a partial message is returned
    [all...]
  /external/chromium_org/third_party/sqlite/src/test/
triggerA.test 12 # it tests issues relating to firing an INSTEAD OF trigger on a VIEW
84 # Create INSTEAD OF triggers on the views. Run UPDATE and DELETE statements
90 CREATE TRIGGER r1d INSTEAD OF DELETE ON v1 BEGIN
100 CREATE TRIGGER r1u INSTEAD OF UPDATE ON v1 BEGIN
112 CREATE TRIGGER r2d INSTEAD OF DELETE ON v2 BEGIN
122 CREATE TRIGGER r2u INSTEAD OF UPDATE ON v2 BEGIN
134 CREATE TRIGGER r3d INSTEAD OF DELETE ON v3 BEGIN
144 CREATE TRIGGER r3u INSTEAD OF UPDATE ON v3 BEGIN
156 CREATE TRIGGER r4d INSTEAD OF DELETE ON v4 BEGIN
166 CREATE TRIGGER r4u INSTEAD OF UPDATE ON v4 BEGI
    [all...]
  /frameworks/base/core/java/android/os/
StatFs.java 60 * @deprecated Use {@link #getBlockSizeLong()} instead.
76 * @deprecated Use {@link #getBlockCountLong()} instead.
92 * @deprecated Use {@link #getFreeBlocksLong()} instead.
103 * will want to use {@link #getAvailableBlocks()} instead.
112 * will want to use {@link #getAvailableBytes()} instead.
119 * @deprecated Use {@link #getAvailableBlocksLong()} instead.
  /external/bison/doc/
bison.x 18 the generated files do not have fixed names, but instead use the prefix
29 instead of
49 instead of

Completed in 1600 milliseconds

1 2 3 45 6 7 8 91011>>