HomeSort by relevance Sort by last modified time
    Searched defs:source (Results 351 - 375 of 1097) sorted by null

<<11121314151617181920>>

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
multiway_mergesort.h 72 RandomAccessIterator source; member in struct:__gnu_parallel::PMWMSSortingData
114 value_type(sd->source[sd->starts[iam] + es[i + 1]]);
336 std::uninitialized_copy(sd->source + sd->starts[iam],
337 sd->source + sd->starts[iam] + length_local,
380 sd->source + offset, comp,
428 sd.source = begin;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/tests/functests/sampleProjects/
AndroidManifestWriter.java 2 * Copyright (C) 2009 The Android Open Source Project
37 import javax.xml.transform.Source;
88 Source source = new DOMSource(mDoc); local
96 xformer.transform(source, result);
  /cts/tests/tests/media/src/android/media/cts/
JetPlayerTest.java 2 * Copyright (C) 2009 The Android Open Source Project
176 InputStream source = null; local
179 source = mContext.getResources().openRawResource(R.raw.test_jet);
183 while ((length = source.read(buffer)) != -1) {
187 if (source != null) {
188 source.close();
  /cts/tests/tests/widget/src/android/widget/cts/
MediaControllerTest.java 2 * Copyright (C) 2008 The Android Open Source Project
157 InputStream source = null; local
162 source = mActivity.getResources().openRawResource(R.raw.testvideo);
166 for (int len = source.read(buffer); len > 0; len = source.read(buffer)) {
173 if (source != null) {
174 source.close();
VideoViewTest.java 2 * Copyright (C) 2009 The Android Open Source Project
116 InputStream source = null; local
120 source = mActivity.getResources().openRawResource(R.raw.testvideo);
124 for (int len = source.read(buffer); len > 0; len = source.read(buffer)) {
128 if (source != null) {
129 source.close();
TimePickerTest.java 2 * Copyright (C) 2008 The Android Open Source Project
203 MyTimePicker source = new MyTimePicker(mContext); local
207 source.setCurrentHour(expectHour);
208 source.setCurrentMinute(expectMinute);
210 Parcelable p = source.onSaveInstanceState();
  /external/jmonkeyengine/engine/src/core/com/jme3/shader/
Shader.java 5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
94 * Shader source describes a shader object in OpenGL. Each shader source
103 String source = null; field in class:Shader.ShaderSource
118 // forget source & defines
129 oc.write(source, "source", null);
137 source = ic.readString("source", null);
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
OldInputStreamReaderTest.java 33 private final String source = "This is a test message with Unicode character. \u4e2d\u56fd is China's name in Chinese"; field in class:OldInputStreamReaderTest
48 in = new ByteArrayInputStream(source.getBytes("UTF-8"));
118 char[] chars = new char[source.length()];
123 assertEquals(source.length() - 8, reader.read(chars, 8,
125 assertTrue(Arrays.equals(chars, source.toCharArray()));
127 assertTrue(Arrays.equals(chars, source.toCharArray()));
131 char[] chars = new char[source.length()];
132 assertEquals(source.length() - 3, reader.read(chars, 0,
139 reader.read(new char[source.length()]);
FileTest.java 2 * Copyright (C) 2009 The Android Open Source Project
69 File source = new File(base, "source"); local
70 assertFalse(source.exists());
73 ln_s(target, source);
74 assertTrue(source.exists());
75 assertEquals(target.getCanonicalPath(), source.getCanonicalPath());
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
ViewHierarchyScene.java 2 * Copyright (C) 2008 The Android Open Source Project
129 final Widget source = findWidget(sourceNode); local
131 source.bringToFront();
132 connection.setSourceAnchor(AnchorFactory.createRectangularAnchor(source));
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jface.databinding_1.4.0.I20100601-0800.jar 
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
InputStreamReaderTest.java 101 private final String source = "This is a test message with Unicode character. \u4e2d\u56fd is China's name in Chinese"; field in class:InputStreamReaderTest
110 in = new ByteArrayInputStream(source.getBytes("UTF-8"));
334 reader.read(new char[source.length() - 5], 0, source.length() - 5);
419 assertEquals(source, sb.deleteCharAt(0).toString());
434 assertEquals(source, sb.toString());
462 bis = new ByteArrayInputStream(source.getBytes("UTF-8"));
464 char[] chars = new char[source.length()];
465 assertEquals(source.length() - 3, isr.read(chars, 0, chars.length - 3));
512 char[] chars = new char[source.length()]
    [all...]
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
SinkChannelTest.java 44 private Pipe.SourceChannel source; field in class:SinkChannelTest
54 source = pipe.source();
78 source.configureBlocking(sourceBlockingMode[i]);
79 // if sink and source both are blocking mode, source only needs read
89 int count = source.read(readBuf);
131 long count = source.read(readBuf);
161 source.close();
187 source.configureBlocking(sourceBlockingMode[i])
    [all...]
  /external/javassist/src/main/javassist/
ClassPool.java 138 protected ClassPoolTail source; field in class:ClassPool
182 this.source = new ClassPoolTail();
267 return source.toString();
337 source.recordInvalidClassName(name);
416 * Reads a class file from the source and returns a reference
447 * Reads a class file from the source and returns a reference
579 return source.find(classname);
631 return source.openClassfile(classname);
637 source.writeClassfile(classname, out);
641 * Reads class files from the source and returns an array o
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Ray.java 5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
484 * Copies information from a source ray into this ray.
486 * @param source
489 public void set(Ray source) {
490 origin.set(source.getOrigin());
491 direction.set(source.getDirection());
  /bionic/libc/kernel/common/linux/
if_arcnet.h 11 *** source file (e.g. under external/kernel-headers/original/) then
82 uint8_t source, member in struct:arc_hardware
media.h 11 *** source file (e.g. under external/kernel-headers/original/) then
106 struct media_pad_desc source; member in struct:media_link_desc
  /build/core/
droiddoc.mk 2 # Copyright (C) 2008 The Android Open Source Project
104 define prepare-doc-source-list
161 $(call prepare-doc-source-list,$(PRIVATE_SRC_LIST_FILE),$(PRIVATE_JAVA_FILES), \
194 $(call prepare-doc-source-list,$(PRIVATE_SRC_LIST_FILE),$(PRIVATE_JAVA_FILES), \
  /cts/tests/tests/text/src/android/text/cts/
BoringLayoutTest.java 2 * Copyright (C) 2008 The Android Open Source Project
167 String source = "This is a SpannableString."; local
169 source,
180 source,
  /cts/tests/tests/text/src/android/text/format/cts/
DateFormatTest.java 2 * Copyright (C) 2009 The Android Open Source Project
129 String source = dateFormat.format(date); local
130 Date parseDate = dateFormat.parse(source);
137 source = dateFormat.format(date);
138 assertTrue(source.indexOf("December") >= 0);
141 source = dateFormat.format(date);
142 assertTrue(source.indexOf("Dec") >= 0);
143 assertTrue(source.indexOf("December") < 0);
145 source = dateFormat.format(date);
146 assertTrue(source.indexOf("5") >= 0)
    [all...]
  /cts/tests/tests/text/src/android/text/method/cts/
DigitsKeyListenerTest.java 2 * Copyright (C) 2008 The Android Open Source Project
79 String source = "123456"; local
84 assertNull(digitsKeyListener.filter(source, 0, source.length(),
88 source = "a1b2c3d";
89 assertEquals("123", (digitsKeyListener.filter(source, 0, source.length(),
93 source = "-a1.b2c3d";
94 assertEquals("123", (digitsKeyListener.filter(source, 0, source.length()
136 String source = "-123456"; local
234 String source = "123.456"; local
313 String source = "-123.456"; local
    [all...]
NumberKeyListenerTest.java 2 * Copyright (C) 2008 The Android Open Source Project
74 String source = "Android test"; local
76 assertEquals("", mNumberKeyListener.filter(source, 0, source.length(),
79 source = "12345";
81 assertNull(mNumberKeyListener.filter(source, 0, source.length(), dest, 0, dest.length()));
83 source = "";
85 assertNull(mNumberKeyListener.filter(source, 0, source.length(), dest, 0, dest.length()))
    [all...]
  /cts/tools/signature-tools/test/signature/converter/doclet/
DocletTestConverter.java 2 * Copyright (C) 2009 The Android Open Source Project
78 public static void putSource(CompilationUnit source) throws IOException {
80 String filename = source.getName(); // a.b.C
93 wr.write(source.getSource());
  /dalvik/vm/native/
dalvik_system_Zygote.cpp 2 * Copyright (C) 2008 The Android Open Source Project
251 // See storage config details at http://source.android.com/tech/storage/
264 const char* source = getenv("EMULATED_STORAGE_SOURCE"); local
267 if (source == NULL || target == NULL || legacy == NULL) {
272 // Prepare source paths
278 snprintf(source_user, PATH_MAX, "%s/%d", source, userid);
280 snprintf(source_obb, PATH_MAX, "%s/obb", source);
292 if (mount(source, target, NULL, MS_BIND, NULL) == -1) {
293 ALOGE("Failed to mount %s to %s: %s", source, target, strerror(errno));
  /development/ndk/platforms/android-3/include/linux/
if_arcnet.h 74 uint8_t source, member in struct:arc_hardware

Completed in 1356 milliseconds

<<11121314151617181920>>