Searched refs:source (Results 1 - 25 of 2123) sorted by relevance

1234567891011>>

/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/utilities/function.objects/refwrap/refwrap.helpers/
H A Dref_1.fail.cpp24 const A source() {return A();} function
28 std::reference_wrapper<const A> r = std::ref(source());
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/function.objects/refwrap/refwrap.helpers/
H A Dref_1.fail.cpp24 const A source() {return A();} function
28 std::reference_wrapper<const A> r = std::ref(source());
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.conv/
H A Dconvert_to_auto_ptr.pass.cpp24 source() function
32 std::auto_ptr<A> ap2(source());
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/depr/depr.auto.ptr/auto.ptr/auto.ptr.conv/
H A Dconvert_to_auto_ptr.pass.cpp24 source() function
32 std::auto_ptr<A> ap2(source());
/prebuilts/gdb/darwin-x86/lib/python2.7/test/
H A Dtest_pstats.py12 and source by adding the call time. See issue1269."""
15 source = {"a": (1, 2, 3, 4), "b": (5, 6, 7, 8)}
16 new_callers = pstats.add_callers(target, source)
20 source = {"a": 1, "b": 5}
21 new_callers = pstats.add_callers(target, source)
/prebuilts/gdb/linux-x86/lib/python2.7/test/
H A Dtest_pstats.py12 and source by adding the call time. See issue1269."""
15 source = {"a": (1, 2, 3, 4), "b": (5, 6, 7, 8)}
16 new_callers = pstats.add_callers(target, source)
20 source = {"a": 1, "b": 5}
21 new_callers = pstats.add_callers(target, source)
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
H A Dtest_pstats.py12 and source by adding the call time. See issue1269."""
15 source = {"a": (1, 2, 3, 4), "b": (5, 6, 7, 8)}
16 new_callers = pstats.add_callers(target, source)
20 source = {"a": 1, "b": 5}
21 new_callers = pstats.add_callers(target, source)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
H A Dtest_pstats.py12 and source by adding the call time. See issue1269."""
15 source = {"a": (1, 2, 3, 4), "b": (5, 6, 7, 8)}
16 new_callers = pstats.add_callers(target, source)
20 source = {"a": 1, "b": 5}
21 new_callers = pstats.add_callers(target, source)
/prebuilts/gdb/darwin-x86/lib/python2.7/
H A Dcodeop.py1 r"""Utilities to compile possibly incomplete Python source code.
15 First, check if the source consists entirely of blank lines and
31 successful outcome before reaching the end of the source; in this
39 compile_command(source, filename, symbol):
68 def _maybe_compile(compiler, source, filename, symbol):
69 # Check for source consisting of only blank lines and comments
70 for line in source.split("\n"):
76 source = "pass" # Replace it with a 'pass' statement
82 code = compiler(source, filename, symbol)
87 code1 = compiler(source
[all...]
/prebuilts/gdb/linux-x86/lib/python2.7/
H A Dcodeop.py1 r"""Utilities to compile possibly incomplete Python source code.
15 First, check if the source consists entirely of blank lines and
31 successful outcome before reaching the end of the source; in this
39 compile_command(source, filename, symbol):
68 def _maybe_compile(compiler, source, filename, symbol):
69 # Check for source consisting of only blank lines and comments
70 for line in source.split("\n"):
76 source = "pass" # Replace it with a 'pass' statement
82 code = compiler(source, filename, symbol)
87 code1 = compiler(source
[all...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A Dcodeop.py1 r"""Utilities to compile possibly incomplete Python source code.
15 First, check if the source consists entirely of blank lines and
31 successful outcome before reaching the end of the source; in this
39 compile_command(source, filename, symbol):
68 def _maybe_compile(compiler, source, filename, symbol):
69 # Check for source consisting of only blank lines and comments
70 for line in source.split("\n"):
76 source = "pass" # Replace it with a 'pass' statement
82 code = compiler(source, filename, symbol)
87 code1 = compiler(source
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A Dcodeop.py1 r"""Utilities to compile possibly incomplete Python source code.
15 First, check if the source consists entirely of blank lines and
31 successful outcome before reaching the end of the source; in this
39 compile_command(source, filename, symbol):
68 def _maybe_compile(compiler, source, filename, symbol):
69 # Check for source consisting of only blank lines and comments
70 for line in source.split("\n"):
76 source = "pass" # Replace it with a 'pass' statement
82 code = compiler(source, filename, symbol)
87 code1 = compiler(source
[all...]
/prebuilts/gdb/darwin-x86/lib/python2.7/distutils/
H A Ddep_util.py13 def newer(source, target):
14 """Tells if the target is newer than the source.
16 Return true if 'source' exists and is more recently modified than
17 'target', or if 'source' exists and 'target' doesn't.
20 than 'source'. Raise DistutilsFileError if 'source' does not exist.
25 if not os.path.exists(source):
27 os.path.abspath(source))
31 return os.stat(source)[ST_MTIME] > os.stat(target)[ST_MTIME]
34 """Walk two filename lists in parallel, testing if each source i
[all...]
/prebuilts/gdb/linux-x86/lib/python2.7/distutils/
H A Ddep_util.py13 def newer(source, target):
14 """Tells if the target is newer than the source.
16 Return true if 'source' exists and is more recently modified than
17 'target', or if 'source' exists and 'target' doesn't.
20 than 'source'. Raise DistutilsFileError if 'source' does not exist.
25 if not os.path.exists(source):
27 os.path.abspath(source))
31 return os.stat(source)[ST_MTIME] > os.stat(target)[ST_MTIME]
34 """Walk two filename lists in parallel, testing if each source i
[all...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
H A Ddep_util.py13 def newer(source, target):
14 """Tells if the target is newer than the source.
16 Return true if 'source' exists and is more recently modified than
17 'target', or if 'source' exists and 'target' doesn't.
20 than 'source'. Raise DistutilsFileError if 'source' does not exist.
25 if not os.path.exists(source):
27 os.path.abspath(source))
31 return os.stat(source)[ST_MTIME] > os.stat(target)[ST_MTIME]
34 """Walk two filename lists in parallel, testing if each source i
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
H A Ddep_util.py13 def newer(source, target):
14 """Tells if the target is newer than the source.
16 Return true if 'source' exists and is more recently modified than
17 'target', or if 'source' exists and 'target' doesn't.
20 than 'source'. Raise DistutilsFileError if 'source' does not exist.
25 if not os.path.exists(source):
27 os.path.abspath(source))
31 return os.stat(source)[ST_MTIME] > os.stat(target)[ST_MTIME]
34 """Walk two filename lists in parallel, testing if each source i
[all...]
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
H A Divtvfb.h30 void *source; member in struct:ivtvfb_dma_frame
/prebuilts/ndk/current/sources/third_party/shaderc/third_party/spirv-tools/source/
H A Dmessage.h26 // "<level>: <source>:<line>:<column>:<index>: <message>"
27 std::string StringifyMessage(spv_message_level_t level, const char* source,
/prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/
H A Dmessage.h26 // "<level>: <source>:<line>:<column>:<index>: <message>"
27 std::string StringifyMessage(spv_message_level_t level, const char* source,
/prebuilts/ndk/current/sources/third_party/shaderc/third_party/
H A DAndroid.mk114 source/assembly_grammar.cpp \
115 source/binary.cpp \
116 source/diagnostic.cpp \
117 source/disassemble.cpp \
118 source/ext_inst.cpp \
119 source/enum_string_mapping.cpp \
120 source/extensions.cpp \
121 source/id_descriptor.cpp \
122 source/libspirv.cpp \
123 source/name_mappe
[all...]
/prebuilts/ndk/r16/sources/third_party/shaderc/third_party/
H A DAndroid.mk114 source/assembly_grammar.cpp \
115 source/binary.cpp \
116 source/diagnostic.cpp \
117 source/disassemble.cpp \
118 source/ext_inst.cpp \
119 source/enum_string_mapping.cpp \
120 source/extensions.cpp \
121 source/id_descriptor.cpp \
122 source/libspirv.cpp \
123 source/name_mappe
[all...]
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter_ipv4/
H A Dipt_addrtype.h14 __u16 source; /* source-type mask */ member in struct:ipt_addrtype_info_v1
21 __u16 source; /* source-type mask */ member in struct:ipt_addrtype_info
/prebuilts/ndk/current/sources/third_party/vulkan/src/layers/
H A Dparameter_name.h57 * @param source Paramater name string without format specifiers.
59 * @pre The source string must not contain the %i format specifier.
61 ParameterName(const char *source) : source_(source) { assert(IsValid()); } argument
66 * @param source Paramater name string without format specifiers.
68 * @pre The source string must not contain the %i format specifier.
70 ParameterName(const std::string &source) : source_(source) { assert(IsValid()); } argument
75 * @param source Paramater name string without format specifiers.
77 * @pre The source strin
79 ParameterName(const std::string &&source) argument
90 ParameterName(const std::string &source, const IndexVector &args) argument
101 ParameterName(const std::string &&source, const IndexVector &&args) argument
[all...]
/prebuilts/ndk/r16/sources/third_party/vulkan/src/layers/
H A Dparameter_name.h57 * @param source Paramater name string without format specifiers.
59 * @pre The source string must not contain the %i format specifier.
61 ParameterName(const char *source) : source_(source) { assert(IsValid()); } argument
66 * @param source Paramater name string without format specifiers.
68 * @pre The source string must not contain the %i format specifier.
70 ParameterName(const std::string &source) : source_(source) { assert(IsValid()); } argument
75 * @param source Paramater name string without format specifiers.
77 * @pre The source strin
79 ParameterName(const std::string &&source) argument
90 ParameterName(const std::string &source, const IndexVector &args) argument
101 ParameterName(const std::string &&source, const IndexVector &&args) argument
[all...]
/prebuilts/jdk/jdk8/darwin-x86/sample/nio/file/
H A DCopy.java4 * Redistribution and use in source and binary forms, with or without
8 * - Redistributions of source code must retain the above copyright
33 * This source code is provided to illustrate the usage of a given feature
63 * Copy source file to target location. If {@code prompt} is true then
67 static void copyFile(Path source, Path target, boolean prompt, boolean preserve) { argument
73 Files.copy(source, target, options);
75 System.err.format("Unable to copy: %s: %s%n", source, x);
84 private final Path source; field in class:Copy.TreeCopier
89 TreeCopier(Path source, Path target, boolean prompt, boolean preserve) { argument
90 this.source
[all...]

Completed in 705 milliseconds

1234567891011>>