HomeSort by relevance Sort by last modified time
    Searched refs:If (Results 1 - 25 of 997) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/lldb/utils/vim-lldb/python-vim-lldb/
import_lldb.py 8 1. Simply by doing "import lldb" in case the system python installation is aware of lldb. If that fails,
9 2. Executes the lldb executable pointed to by the LLDB environment variable (or if unset, the first lldb
10 on PATH") with the -P flag to determine the PYTHONPATH to set. If the lldb executable returns a valid
11 path, it is added to sys.path and the import is attempted again. If that fails, 3. On Mac OS X the
24 if 'LLDB' in os.environ and os.path.exists(os.environ['LLDB']):
32 if not os.path.exists(lldb_minus_p_path):
47 if "darwin" in sys.platform:
59 if not import_lldb():
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_emulate_loops.h 13 struct rc_instruction * If;
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_emulate_loops.h 13 struct rc_instruction * If;
  /external/libpng/contrib/pngminus/
makevms.com 9 $ if f$getsyi("HW_MODEL").ge.1024
13 $ if f$trnlnm("SYS").eqs."" then define sys sys$library:
15 $ if f$search("SYS$SYSTEM:DECC$COMPILER.EXE").eqs.""
17 $ if f$trnlnm("SYS").eqs."" then define sys sys$library:
18 $ if f$search("SYS$SYSTEM:VAXC.EXE").eqs.""
26 $ if f$trnlnm("SYS").eqs."" then define sys decc$library_include:
60 $ If F$Search(P1) .Eqs. "" Then Goto Makeit
65 $ If Argument .Eqs. "" Then Goto Exit
69 $ If File .Eqs. " " Then Goto Endl
74 $ If AFile .Eqs. "" .Or. AFile .Eqs. OFile Then Goto NextE
    [all...]
  /external/yaffs2/yaffs2/
Kconfig 18 If unsure, say N.
30 If unsure, say Y.
40 If unsure, say N.
48 Steven Hill's nand_ecc.c. If not set, then you get the
51 If unsure, say N.
60 If unsure, say Y.
71 If unsure, say Y.
82 Lazy loading will only happen if enabled by this option being 'n'
83 and if the appropriate tags are available, else yaffs2 will
91 If unsure, say N
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/
runPatchCommand.pl 29 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
66 +If it did, some unit tests don't seem to be working quite right:
67 +It would be great if you could file a bug report. Thanks!
  /external/chromium_org/third_party/openssl/openssl/crypto/chacha/
chacha_vec_arm.S 2 # needed to support switching on NEON code at runtime. If the whole of OpenSSL
  /external/llvm/test/MC/AsmParser/
directive_lsym.s 3 # FIXME: This is currently unsupported. If it turns out no one uses it, we
  /external/chromium_org/chrome/common/extensions/docs/server2/
cache_chain_object_store.py 18 - If false, each object store is tried in order. The first object
21 - If true, only the first in-memory cache is checked, as though the store
39 if key in self._cache:
42 if len(missing_keys) == 0 or self._start_empty:
57 if len(missing_keys) == 0:
61 if v is None or k not in missing_keys:
72 if updates:
host_file_system_provider.py 29 If not None, the maximum revision that a 'trunk' file system will be
30 created at. If None, 'trunk' file systems will use HEAD.
32 If not None, 'trunk' file systems provided by this class without a
35 If True all provided file systems will be wrapped in an OfflineFileSystem.
53 |revision| if non-None determines a specific revision to pin the host file
54 system at, though it will be ignored if it exceeds |max_trunk_revision|.
55 If None then |revision| will track |max_trunk_revision| if is has been
58 if revision is None:
59 if self._default_trunk_instance is not None
    [all...]
file_system.py 44 if child_versions:
71 contents. If a path in paths ends with a '/', it is assumed to be a
76 If any path cannot be found:
77 - If |skip_not_found| is True, the resulting object will not contain any
89 rules as Read(). If |path| is not found raise a FileNotFoundError on Get().
96 '''Returns a Future to the existence of |path|; True if |path| exists,
97 False if not. This method will not throw a FileNotFoundError unlike
104 if path == '':
125 '''Returns a |StatInfo| object containing the version of |path|. If |path|
129 If the path cannot be found, raises a FileNotFoundError
    [all...]
  /external/llvm/autoconf/m4/
check_gnu_make.m4 10 if test -z "$a" ; then continue ; fi ;
11 if ( sh -c "$a --version" 2> /dev/null | grep GNU 2>&1 > /dev/null )
17 dnl If there was a GNU version, then set @ifGNUmake@ to the empty string,
19 if test "x$llvm_cv_gnu_make_command" != "x" ; then
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
token.ml 5 (* The lexer returns these 'Kwd' if it is an unknown character, otherwise one of
18 | If | Then | Else
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
token.ml 5 (* The lexer returns these 'Kwd' if it is an unknown character, otherwise one of
18 | If | Then | Else
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
token.ml 5 (* The lexer returns these 'Kwd' if it is an unknown character, otherwise one of
18 | If | Then | Else
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/
__init__.py 64 ... if '__complex__' in dct:
79 ... if isinstance(obj, complex):
128 If ``skipkeys`` is true then ``dict`` keys that are not basic types
132 If ``ensure_ascii`` is true (the default), all non-ASCII characters in the
134 instance consisting of ASCII characters only. If ``ensure_ascii`` is
141 If ``check_circular`` is false, then the circular reference check
145 If ``allow_nan`` is false, then it will be a ``ValueError`` to
150 If ``indent`` is a non-negative integer, then JSON array elements and
157 If ``separators`` is an ``(item_separator, dict_separator)`` tuple
166 If *sort_keys* is ``True`` (default: ``False``), then the output o
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/
__init__.py 64 ... if '__complex__' in dct:
79 ... if isinstance(obj, complex):
128 If ``skipkeys`` is true then ``dict`` keys that are not basic types
132 If ``ensure_ascii`` is true (the default), all non-ASCII characters in the
134 instance consisting of ASCII characters only. If ``ensure_ascii`` is
141 If ``check_circular`` is false, then the circular reference check
145 If ``allow_nan`` is false, then it will be a ``ValueError`` to
150 If ``indent`` is a non-negative integer, then JSON array elements and
157 If ``separators`` is an ``(item_separator, dict_separator)`` tuple
166 If *sort_keys* is ``True`` (default: ``False``), then the output o
    [all...]
  /external/chromium_org/third_party/simplejson/
__init__.py 64 ... if '__complex__' in dct:
79 ... if isinstance(obj, complex):
154 If ``skipkeys`` is true then ``dict`` keys that are not basic types
158 If ``ensure_ascii`` is false, then the some chunks written to ``fp``
164 If ``check_circular`` is false, then the circular reference check
168 If ``allow_nan`` is false, then it will be a ``ValueError`` to
173 If *indent* is a string, then JSON array elements and object members
180 If ``separators`` is an ``(item_separator, dict_separator)`` tuple
189 If *use_decimal* is true (default: ``True``) then decimal.Decimal
192 If *namedtuple_as_object* is true (default: ``True``)
    [all...]
  /external/chromium_org/build/
build-ctags.sh 7 if [[ a"`ctags --version | head -1 | grep \"^Exuberant Ctags\"`" == "a" ]]; then
9 You must be using Exuberant Ctags, not just standard GNU ctags. If you are on
29 if [[ a"$1" == "a--extra-excludes" ]]; then
  /external/libpng/scripts/
makevms.com 10 $ if p1 .eqs. "CONTRIB"
20 $ If F$Search ("Sys$System:MMS.EXE") .nes. "" Then Make = "MMS"
21 $ If F$Type (MMK) .eqs. "STRING" Then Make = "MMK"
27 $ if f$getsyi("HW_MODEL").ge.1024
31 $ if f$trnlnm("SYS").eqs."" then define sys sys$library:
33 $ if f$search("SYS$SYSTEM:DECC$COMPILER.EXE").eqs.""
35 $ if f$trnlnm("SYS").eqs."" then define sys sys$library:
36 $ if f$search("SYS$SYSTEM:VAXC.EXE").eqs.""
44 $ if f$trnlnm("SYS").eqs."" then define sys decc$library_include:
53 $ if make.eqs."
    [all...]
  /external/llvm/bindings/ocaml/bitwriter/
llvm_bitwriter.mli 16 [path]. Returns [true] if successful, [false] otherwise. *)
21 [m] to the channel [c]. If [unbuffered] is [true], after every write the fd
22 will be flushed. Returns [true] if successful, [false] otherwise. *)
28 to the channel [c]. If [unbuffered] is [true], after every write the fd
29 will be flushed. Returns [true] if successful, [false] otherwise. *)
  /external/valgrind/main/none/tests/s390x/
op_exception.stderr.exp 8 location. If you are running Memcheck and you just saw a
11 i.e. it's Valgrind's fault. If you think this is the case or
21 location. If you are running Memcheck and you just saw a
24 i.e. it's Valgrind's fault. If you think this is the case or
34 location. If you are running Memcheck and you just saw a
37 i.e. it's Valgrind's fault. If you think this is the case or
47 location. If you are running Memcheck and you just saw a
50 i.e. it's Valgrind's fault. If you think this is the case or
  /external/chromium_org/v8/test/webkit/resources/
json2-es5-compat.js 26 of nested structures. If it is omitted, the text will
27 be packed without extra whitespace. If it is a number,
29 level. If it is a string (such as '\t' or ' '),
34 When an object value is found, if the object contains a toJSON
38 or undefined if nothing should be serialized. The toJSON method
61 serialized. If your method returns undefined, then the member will
64 If the replacer parameter is an array of strings, then it will be
79 If the space parameter is a non-empty string, then that string will
80 be used for indentation. If the space parameter is a number, then
106 If it returns what it received, then the structure is not modified
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
TokenSource.pm 29 to keep going or you do not upon token recognition error. If you do not
32 toss you all the way out of the recognizers. If you want to continue
  /external/chromium_org/net/data/proxy_resolver_v8_tracing_unittest/
terminate.js 13 if (ip1 == "182.111.0.222" && ip2 == "111.33.44.55")
16 // If the script didn't terminate when abandoned, then it will reach this and

Completed in 712 milliseconds

1 2 3 4 5 6 7 8 91011>>