/system/extras/perfprofd/ |
Android.mk | 20 proto_header_dir := $(call local-generated-sources-dir)/proto/$(LOCAL_PATH)
|
/external/deqp/modules/gles3/functional/ |
es3fShaderFragDataTests.cpp | 117 glu::ProgramSources sources; local 121 sources << glu::VertexSource( 134 sources << glu::FragmentSource(string( 143 return sources;
|
/external/v8/tools/gcmole/ |
gcmole.lua | 145 for condition, sources in 146 gyp:gmatch "'sources': %[.-### gcmole%((.-)%) ###(.-)%]" do 148 for file in sources:gmatch "'%.%./%.%./src/([^']-%.cc)'" do 151 for file in sources:gmatch "'(test-[^']-%.cc)'" do 170 local function BuildFileList(sources, props) 172 for condition, files in pairs(sources) do 180 local sources = ParseGYPFile() 183 return BuildFileList(sources, { os = 'linux',
|
/frameworks/compile/libbcc/include/bcc/Renderscript/ |
RSCompilerDriver.h | 149 const std::vector<Source*>& sources,
|
/frameworks/compile/libbcc/lib/Renderscript/ |
RSCompilerDriver.cpp | 283 const std::vector<Source*>& sources, 296 for (Source* source : sources) { 314 sourcesToFuse.push_back(sources[p.first]); 331 Source* source = sources[p.first];
|
/frameworks/compile/mclinker/tools/mcld/ |
Android.mk | 78 intermediates := $(call local-generated-sources-dir) 109 intermediates := $(call local-generated-sources-dir)
|
/ndk/build/tools/ |
build-host-make.sh | 54 GNUMAKE_SRCDIR=$ANDROID_NDK_ROOT/sources/host-tools/make-$GNUMAKE_VERSION 60 log "Using sources from: $GNUMAKE_SRCDIR" 67 # We need to copy the sources to a temporary directory because 70 log "Copying sources to temporary directory: $TMP_SRCDIR" 72 fail_panic "Could not copy GNU Make sources to: $TMP_SRCDIR"
|
/prebuilts/gradle-plugin/com/android/tools/build/gradle-experimental/1.2.4/ |
gradle-experimental-1.2.4.jar | |
/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
BasicBlockList.java | 377 RegisterSpecList sources = insn.getSources(); local 378 int sz = sources.size(); 381 processReg(sources.get(i));
|
/dalvik/dx/src/com/android/dx/rop/code/ |
BasicBlockList.java | 375 RegisterSpecList sources = insn.getSources(); local 376 int sz = sources.size(); 379 processReg(sources.get(i));
|
/dalvik/dx/src/com/android/dx/ssa/ |
EscapeAnalysis.java | 349 * Handles phi uses of new objects. Will merge together the sources of a phi 425 RegisterSpecList sources = use.getSources(); local 426 if (sources.get(0).getReg() == def.getReg()) { 427 int setIndex = findSetIndex(sources.get(1)); 436 int setIndex = findSetIndex(sources.get(0)); 568 RegisterSpecList sources; local 576 sources = use.getSources(); 577 indexReg = ((CstLiteralBits) sources.get(1).getTypeBearer()); 586 insertExceptionThrow(next, sources.get(1), deletedInsns); 593 sources = use.getSources() [all...] |
/external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
BasicBlockList.java | 375 RegisterSpecList sources = insn.getSources(); local 376 int sz = sources.size(); 379 processReg(sources.get(i));
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
EscapeAnalysis.java | 350 * Handles phi uses of new objects. Will merge together the sources of a phi 426 RegisterSpecList sources = use.getSources(); local 427 if (sources.get(0).getReg() == def.getReg()) { 428 int setIndex = findSetIndex(sources.get(1)); 437 int setIndex = findSetIndex(sources.get(0)); 569 RegisterSpecList sources; local 577 sources = use.getSources(); 578 indexReg = ((CstLiteralBits) sources.get(1).getTypeBearer()); 587 insertExceptionThrow(next, sources.get(1), deletedInsns); 594 sources = use.getSources() [all...] |
/external/libxml2/ |
genChRanges.py | 45 sources = "chvalid.def" # input filename variable 218 * Sources: %s 265 """ % (date, sources)); 275 * Sources: %s 291 """ % (date, sources));
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
ccompiler.py | 323 def _setup_compile(self, outdir, macros, incdirs, sources, depends, 350 objects = self.object_filenames(sources, 353 assert len(objects) == len(sources) 358 for i in range(len(sources)): 359 src = sources[i] 474 def detect_language(self, sources): 478 if not isinstance(sources, list): 479 sources = [sources] 482 for source in sources [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
ccompiler.py | 323 def _setup_compile(self, outdir, macros, incdirs, sources, depends, 350 objects = self.object_filenames(sources, 353 assert len(objects) == len(sources) 358 for i in range(len(sources)): 359 src = sources[i] 474 def detect_language(self, sources): 478 if not isinstance(sources, list): 479 sources = [sources] 482 for source in sources [all...] |
/external/deqp/modules/gles31/functional/ |
es31fProgramPipelineStateQueryTests.cpp | 171 glu::ProgramSources sources; local 174 sources << glu::ProgramSeparable(true) << glu::VertexSource(s_vertexSource); 176 sources << glu::ProgramSeparable(true) << glu::FragmentSource(s_fragmentSource); 178 sources << glu::ProgramSeparable(true) << glu::ComputeSource(s_computeSource); 185 glu::ShaderProgram program(m_context.getRenderContext(), sources);
|
/external/deqp/modules/gles31/stress/ |
es31sTessellationGeometryInteractionTests.cpp | 138 glu::ProgramSources sources; local 141 sources << glu::VertexSource(getVertexSource()) 166 sources << glu::TessellationControlSource(getTessellationControlSource(tessGenLevel)) 271 sources << glu::GeometrySource(getGeometryShaderSource(numPrimitivesPerInvocation, geometryShaderInvocations)); 282 m_program = new glu::ShaderProgram(m_context.getRenderContext(), sources);
|
/libcore/luni/src/main/java/java/nio/ |
DatagramChannelImpl.java | 403 public long write(ByteBuffer[] sources, int offset, int length) throws IOException { 404 Arrays.checkOffsetAndCount(sources.length, offset, length); 408 int count = FileChannelImpl.calculateTotalRemaining(sources, offset, length, false); 414 ByteBuffer source = sources[val]; 424 ByteBuffer source = sources[val];
|
SocketChannelImpl.java | 365 public long write(ByteBuffer[] sources, int offset, int length) throws IOException { 366 Arrays.checkOffsetAndCount(sources.length, offset, length); 368 int count = FileChannelImpl.calculateTotalRemaining(sources, offset, length, false); 374 ByteBuffer source = sources[val]; 384 ByteBuffer source = sources[val];
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
setuptools_build_ext.py | 77 def swig_sources(self, sources, *otherargs): 79 sources = _build_ext.swig_sources(self, sources) or sources 81 return _du_build_ext.swig_sources(self, sources, *otherargs)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
setuptools_build_ext.py | 77 def swig_sources(self, sources, *otherargs): 79 sources = _build_ext.swig_sources(self, sources) or sources 81 return _du_build_ext.swig_sources(self, sources, *otherargs)
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/ |
DiskLruCache.java | 770 private final Source[] sources; field in class:Snapshot 773 private Snapshot(String key, long sequenceNumber, Source[] sources, long[] lengths) { 776 this.sources = sources; 795 return sources[index]; 804 for (Source in : sources) { [all...] |
/development/build/tools/ |
sdk_repo.mk | 92 # Defines the rule to build an SDK sources package. 97 # $4=package to create, must be "sources" 99 define mk-sdk-repo-sources 101 @echo "Building SDK sources package" 134 $(eval $(call mk-sdk-repo-sources,SDK_REPO_XML_ARGS,$(HOST_OS),$(MAIN_SDK_ZIP),sources)) 142 $(call sdk-repo-pkg-zip,$(HOST_OS),$(MAIN_SDK_ZIP),sources)
|
/external/v8/tools/ |
SourceMap.js | 132 sources: function() 236 var sources = []; 238 for (var i = 0; i < map.sources.length; ++i) { 239 var originalSourceURL = map.sources[i]; 246 sources.push(url); 254 var sourceURL = sources[sourceIndex]; 278 sourceURL = sources[sourceIndex];
|