HomeSort by relevance Sort by last modified time
    Searched refs:sources (Results 26 - 50 of 1669) sorted by null

12 3 4 5 6 7 8 91011>>

  /system/bt/build/secondary/third_party/libchrome/
BUILD.gn 18 sources = [
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
TranslationAdvice.java 31 * The instruction associated must have exactly two sources.
43 * Returns true if the translation target requires the sources of the
47 * @param sources {@code non-null;} source list
48 * @return {@code true} iff the target requires the sources to be
51 public boolean requiresSourcesInOrder(Rop opcode, RegisterSpecList sources);
PlainInsn.java 37 * @param sources {@code non-null;} specs for all the sources
40 RegisterSpec result, RegisterSpecList sources) {
41 super(opcode, position, result, sources);
99 RegisterSpecList sources = getSources(); local
100 int szSources = sources.size();
106 TypeBearer lastType = sources.get(szSources - 1).getTypeBearer();
114 RegisterSpecList newSources = sources.withoutLast();
133 RegisterSpecList sources) {
137 sources);
    [all...]
Rop.java 61 /** {@code non-null;} types of all the sources of this operation */
62 private final TypeList sources; field in class:Rop
86 * @param sources {@code non-null;} types of all the sources of this operation
94 public Rop(int opcode, Type result, TypeList sources,
101 if (sources == null) {
102 throw new NullPointerException("sources == null");
120 this.sources = sources;
134 * @param sources {@code non-null;} types of all the sources of this operatio
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
TranslationAdvice.java 31 * The instruction associated must have exactly two sources.
43 * Returns true if the translation target requires the sources of the
47 * @param sources {@code non-null;} source list
48 * @return {@code true} iff the target requires the sources to be
51 public boolean requiresSourcesInOrder(Rop opcode, RegisterSpecList sources);
PlainInsn.java 38 * @param sources {@code non-null;} specs for all the sources
41 RegisterSpec result, RegisterSpecList sources) {
42 super(opcode, position, result, sources);
100 RegisterSpecList sources = getSources(); local
101 int szSources = sources.size();
107 TypeBearer lastType = sources.get(szSources - 1).getTypeBearer();
111 TypeBearer firstType = sources.get(0).getTypeBearer();
114 RegisterSpecList newSources = sources.withoutFirst();
125 RegisterSpecList newSources = sources.withoutLast()
    [all...]
  /external/autotest/utils/named_semaphore/
setup.py 4 module = distutils.core.Extension("namedsem", sources=["namedsem.c"])
  /external/e2fsprogs/contrib/python-uuid/
setup.py 5 sources = ['uuid.c'], variable
  /external/libdrm/intel/
Android.mk 28 include $(LOCAL_PATH)/Makefile.sources
  /external/libdrm/tests/planetest/
Android.mk 4 include $(LOCAL_PATH)/Makefile.sources
15 include $(LOCAL_PATH)/Makefile.sources
  /external/libdrm/tests/util/
Android.mk 27 include $(LOCAL_PATH)/Makefile.sources
  /external/mesa3d/src/gallium/targets/graw-null/
SConscript 14 sources = [
24 source = sources,
  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glGetDebugMessageLog.java 1 // C function GLuint glGetDebugMessageLog ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
6 int[] sources,
19 // C function GLuint glGetDebugMessageLog ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
23 java.nio.IntBuffer sources,
30 // C function GLuint glGetDebugMessageLog ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
34 int[] sources,
43 // C function GLuint glGetDebugMessageLog ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
47 java.nio.IntBuffer sources,
glGetDebugMessageLogKHR.java 1 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
6 int[] sources,
19 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
23 java.nio.IntBuffer sources,
30 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
34 int[] sources,
43 // C function GLuint glGetDebugMessageLogKHR ( GLuint count, GLsizei bufSize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLchar *messageLog )
47 java.nio.IntBuffer sources,
  /external/guice/core/src/com/google/inject/spi/
Message.java 47 private final List<Object> sources; field in class:Message
52 public Message(List<Object> sources, String message, Throwable cause) {
53 this.sources = ImmutableList.copyOf(sources);
74 return sources.isEmpty()
76 : Errors.convert(sources.get(sources.size() - 1)).toString();
81 return sources;
119 return message.equals(e.message) && Objects.equal(cause, e.cause) && sources.equals(e.sources);
    [all...]
  /external/mesa3d/src/gallium/drivers/noop/
Makefile.am 6 include Makefile.sources
  /external/mesa3d/src/gallium/targets/libgl-gdi/
SConscript 23 sources = ['libgl_gdi.c']
40 sources += ['#src/gallium/state_trackers/wgl/opengl32.mingw.def']
42 sources += ['#src/gallium/state_trackers/wgl/opengl32.def']
56 source = sources,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
setuptools_extension.py 36 sources = []
37 for s in self.sources:
39 sources.append(s[:-3]+'c')
41 sources.append(s)
42 self.sources = sources
  /external/libnl/python/
setup.py.in 10 sources = ['@srcdir@/netlink/capi.i'],
18 sources = ['@srcdir@/netlink/route/capi.i'],
26 sources = ['@srcdir@/netlink/genl/capi.i'],
  /external/python/cpython2/Lib/distutils/tests/
setuptools_extension.py 36 sources = []
37 for s in self.sources:
39 sources.append(s[:-3]+'c')
41 sources.append(s)
42 self.sources = sources
test_build_py.py 21 sources = self.mkdtemp()
22 f = open(os.path.join(sources, "__init__.py"), "w")
27 f = open(os.path.join(sources, "README.txt"), "w")
36 "package_dir": {"pkg": sources}})
38 dist.script_name = os.path.join(sources, "setup.py")
44 dist.package_dir = {"pkg": sources}
73 sources = self.mkdtemp()
74 open(os.path.join(sources, "__init__.py"), "w").close()
76 testdir = os.path.join(sources, "doc")
80 os.chdir(sources)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
setuptools_extension.py 36 sources = []
37 for s in self.sources:
39 sources.append(s[:-3]+'c')
41 sources.append(s)
42 self.sources = sources
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
setuptools_extension.py 36 sources = []
37 for s in self.sources:
39 sources.append(s[:-3]+'c')
41 sources.append(s)
42 self.sources = sources
  /system/bt/osi/src/socket_utils/
README 17 The sources in this folder re -
18 implement some of the sources in libcutils / sockets to provide a short -
22 these sources and the corresponding headers should be removed.
27 .The developers who want to pull sockets sources other than the
28 existing ones must put the sources in this folder and refactor
31 The current sources include :
41 Please update the above list if adding more sources.
  /external/libxml2/vms/
build_libxml.com 27 $! updated to work with current sources
45 $!- list of sources to be built into the LIBXML library. Compare this list
49 $ sources = "parser.c SAX.c entities.c encoding.c error.c parserInternals.c"
50 $ sources = sources + " tree.c hash.c list.c xmlIO.c xmlmemory.c uri.c"
51 $ sources = sources + " valid.c xlink.c HTMLparser.c HTMLtree.c debugXML.c xpath.c"
52 $ sources = sources + " xpointer.c xinclude.c nanohttp.c nanoftp.c DOCBparser.c"
53 $ sources = sources + " catalog.c globals.c threads.c c14n.c xmlstring.c
    [all...]

Completed in 768 milliseconds

12 3 4 5 6 7 8 91011>>