HomeSort by relevance Sort by last modified time
    Searched refs:sources (Results 76 - 100 of 753) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/selinux/policycoreutils/sepolicy/
setup.py 9 sources=[ "policy.c", "info.c", "search.c"] variable
  /libcore/luni/src/main/java/java/nio/channels/
DatagramChannel.java 365 * @param sources
370 * {@code sources.length}.
374 * {@code sources.length - offset}.
393 public abstract long write(ByteBuffer[] sources, int offset, int length)
405 * @param sources
425 public synchronized final long write(ByteBuffer[] sources)
427 return write(sources, 0, sources.length);
SocketChannel.java 371 * sources[offset]}. The number of bytes actually written is returned.
376 * @param sources
396 * offset + length} is greater than the size of {@code sources}.
404 public abstract long write(ByteBuffer[] sources, int offset, int length) throws IOException;
409 * Calling this method is equivalent to calling {@code write(sources, 0,
410 * sources.length);}
412 * @param sources
430 public synchronized final long write(ByteBuffer[] sources) throws IOException {
431 return write(sources, 0, sources.length)
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
DexTranslationAdvice.java 38 * instruction that requires its sources to be in order and contiguous.
103 RegisterSpecList sources) {
106 && totalRopWidth(sources) >= MIN_INVOKE_IN_ORDER;
112 * @param sources {@code non-null;} list of SSA registers
115 private int totalRopWidth(RegisterSpecList sources) {
116 int sz = sources.size();
120 total += sources.get(i).getCategory();
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
DexTranslationAdvice.java 38 * instruction that requires its sources to be in order and contiguous.
103 RegisterSpecList sources) {
106 && totalRopWidth(sources) >= MIN_INVOKE_IN_ORDER;
112 * @param sources {@code non-null;} list of SSA registers
115 private int totalRopWidth(RegisterSpecList sources) {
116 int sz = sources.size();
120 total += sources.get(i).getCategory();
  /external/guava/guava/src/com/google/common/io/
CharSource.java 83 * This method is a temporary method provided for easing migration from suppliers to sources and
269 * the source will contain the concatenated data from the streams of the underlying sources.
274 * @param sources the sources to concatenate
278 public static CharSource concat(Iterable<? extends CharSource> sources) {
279 return new ConcatenatedCharSource(sources);
284 * the source will contain the concatenated data from the streams of the underlying sources.
291 * iterator eagerly fetches data for each source when iterated (rather than producing sources
295 * @param sources the sources to concatenat
    [all...]
  /frameworks/av/include/media/
AudioIoDescriptor.h 47 if (mPatch.sources[0].type == AUDIO_PORT_TYPE_MIX) {
53 return mPatch.sources[0].id;
  /external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/
setup.py 31 ext=[Extension('_rcssmin', sources=['rcssmin.c'])]
  /external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rjsmin/
setup.py 31 ext=[Extension('_rjsmin', sources=['rjsmin.c'])]
  /external/libdrm/intel/
Android.mk 28 include $(LOCAL_PATH)/Makefile.sources
  /external/lldb/test/api/multithreaded/
TestMultithreaded.py 57 def build_and_test(self, sources, test_name, args = None):
58 """ Build LLDB test from sources, and run expecting 0 exit code """
59 self.buildDriver(sources, test_name)
71 def build_program(self, sources, program):
72 return self.buildDriver(sources, program)
  /external/mesa3d/src/gallium/drivers/nouveau/
Makefile 14 include Makefile.sources
  /external/mesa3d/src/gallium/drivers/radeonsi/
Makefile 12 include Makefile.sources
  /external/mesa3d/src/gallium/drivers/svga/
Makefile 7 include Makefile.sources
  /external/mesa3d/src/mesa/drivers/dri/i915/
Android.mk 33 include $(LOCAL_PATH)/Makefile.sources
  /external/mesa3d/src/mesa/drivers/dri/i965/
Android.mk 33 include $(LOCAL_PATH)/Makefile.sources
  /frameworks/compile/libbcc/include/bcc/Renderscript/
RSScriptGroupFusion.h 35 /// @param sources The Sources containing the kernels.
42 const std::vector<Source *>& sources,
  /cts/tools/signature-tools/src/signature/converter/
Main.java 35 Set<String> sources = new HashSet<String>(); local
41 sources.add(args[at]);
75 Visibility.PROTECTED, sources, packages));
  /cts/tools/signature-tools/test/signature/converter/dex/
DexTestConverter.java 38 Set<JavaSource> sources = new HashSet<JavaSource>(); local
40 sources.add(new JavaSource(unit.getName(), unit.getSource()));
42 DexFile dexFile = toDexUtil.getAllFrom(sources);
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
Insn.java 29 * list of actual sources and result registers/values, and additional
42 /** {@code non-null;} specs for all the sources of this instruction */
43 private final RegisterSpecList sources; field in class:Insn
51 * @param sources {@code non-null;} specs for all the sources
54 RegisterSpecList sources) {
63 if (sources == null) {
64 throw new NullPointerException("sources == null");
70 this.sources = sources;
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
LiteralOpUpgrader.java 97 RegisterSpecList sources = insn.getSources();
102 if (sources.size() != 2 ) {
111 if (isConstIntZeroOrKnownNull(sources.get(0))) {
112 replacePlainInsn(insn, sources.withoutFirst(),
114 } else if (isConstIntZeroOrKnownNull(sources.get(1))) {
115 replacePlainInsn(insn, sources.withoutLast(),
119 opcode, sources.get(0), sources.get(1))) {
123 opcode, sources.get(1), sources.get(0)))
    [all...]
PhiInsn.java 51 private RegisterSpecList sources; field in class:PhiInsn
86 * Updates the TypeBearers of all the sources (phi operands) to be
103 sources = null;
137 // Un-cache sources, in case someone has already called getSources().
138 sources = null;
156 // Un-cache sources, in case someone has already called getSources().
157 sources = null;
202 * Gets sources. Constructed lazily from phi operand data structures and
205 * @return {@code non-null;} sources list
209 if (sources != null)
    [all...]
  /development/tools/findunused/
findunusedresources 44 sources=$app/src
47 sources="$sources $app/tests"
51 sources="$sources $app/samples"
62 find $resources $sources $app/AndroidManifest.xml -type f -print |xargs cat | tr -d '\n ' > /tmp/everything$$
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
LiteralOpUpgrader.java 98 RegisterSpecList sources = insn.getSources();
103 if (sources.size() != 2 ) {
112 if (isConstIntZeroOrKnownNull(sources.get(0))) {
113 replacePlainInsn(insn, sources.withoutFirst(),
115 } else if (isConstIntZeroOrKnownNull(sources.get(1))) {
116 replacePlainInsn(insn, sources.withoutLast(),
120 opcode, sources.get(0), sources.get(1))) {
124 opcode, sources.get(1), sources.get(0)))
    [all...]
PhiInsn.java 47 private RegisterSpecList sources; field in class:PhiInsn
82 * Updates the TypeBearers of all the sources (phi operands) to be
99 sources = null;
133 // Un-cache sources, in case someone has already called getSources().
134 sources = null;
152 // Un-cache sources, in case someone has already called getSources().
153 sources = null;
198 * Gets sources. Constructed lazily from phi operand data structures and
201 * @return {@code non-null;} sources list
205 if (sources != null)
    [all...]

Completed in 455 milliseconds

1 2 34 5 6 7 8 91011>>