HomeSort by relevance Sort by last modified time
    Searched refs:into (Results 1 - 25 of 873) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/none/tests/s390x/
condloadstore.stdout.exp 1 LOC 0000000000000000 into 0000000000000000 if mask0 for cc 0: 0000000000000000
2 LOC 0000000000000000 into 0000000000000000 if mask1 for cc 0: 0000000000000000
3 LOC 0000000000000000 into 0000000000000000 if mask2 for cc 0: 0000000000000000
4 LOC 0000000000000000 into 0000000000000000 if mask3 for cc 0: 0000000000000000
5 LOC 0000000000000000 into 0000000000000000 if mask4 for cc 0: 0000000000000000
6 LOC 0000000000000000 into 0000000000000000 if mask5 for cc 0: 0000000000000000
7 LOC 0000000000000000 into 0000000000000000 if mask6 for cc 0: 0000000000000000
8 LOC 0000000000000000 into 0000000000000000 if mask7 for cc 0: 0000000000000000
9 LOC 0000000000000000 into 0000000000000000 if mask8 for cc 0: 0000000000000000
10 LOC 0000000000000000 into 0000000000000000 if mask9 for cc 0: 000000000000000
    [all...]
  /external/emma/
build.gradle 24 into 'lib'
27 into 'lib'
  /external/guava/guava/src/com/google/common/hash/
Funnels.java 39 public void funnel(byte[] from, Sink into) {
40 into.putBytes(from);
58 public void funnel(CharSequence from, Sink into) {
59 into.putString(from);
Funnel.java 20 * An object which can send data from an object of type {@code T} into a {@code Sink}.
28 * Sends a stream of data from the {@code from} object into the sink {@code into}. There
32 void funnel(T from, Sink into);
  /external/oauth/core/src/main/java/net/oauth/http/
HttpResponseMessage.java 36 public void dump(Map<String, Object> into) throws IOException {
37 super.dump(into);
38 into.put(STATUS_CODE, Integer.valueOf(getStatusCode()));
41 into.put(LOCATION, location);
HttpMessageDecoder.java 88 public void dump(Map<String, Object> into) throws IOException {
89 in.dump(into);
  /external/chromium_org/third_party/sqlite/src/test/
laststmtchanges.test 35 insert into t0 values (1);
36 insert into t0 values (1);
37 insert into t0 values (2);
38 insert into t0 values (2);
39 insert into t0 values (1);
40 insert into t0 values (1);
41 insert into t0 values (1);
42 insert into t0 values (2);
102 # changes() changed properly after insert into table containing after trigger
109 insert into t2 values (NULL, changes(), NULL)
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
nomem64-err.asm 10 into label
  /development/tools/line_endings/
Android.mk 3 # Copies files into the directory structure described by a manifest
  /developers/build/
build.gradle 105 into outputPath
110 into("${filetype[1]}") {
123 // Copy entire sample into output -- since it's already in Gradle format, we'll explicitly exclude content that
125 into outputPath
148 into("${samplegen.targetSampleModule()}/src/main/${filetype}") {
155 into ("${samplegen.targetSampleModule()}/src/main") {
184 into outputPathRoot
210 into("${outputPath}/src") {
223 into("${outputPath}/res") {
226 into("${outputPath}/src/rs")
    [all...]
  /external/chromium_org/third_party/skia/platform_tools/android/examples/hello_skia_app/jni/
Android.mk 4 # Sets up a module for the skia shared object to be copied into the apk.
15 # Makes this module into shared object that is simply copied into the apk
20 # Sets up the JNI module that our app calls into to draw things with skia.
34 # jnigraphics defines the function AndroidBitmap_lockPixels, which we need in order to draw into
  /external/skia/platform_tools/android/examples/hello_skia_app/jni/
Android.mk 4 # Sets up a module for the skia shared object to be copied into the apk.
15 # Makes this module into shared object that is simply copied into the apk
20 # Sets up the JNI module that our app calls into to draw things with skia.
34 # jnigraphics defines the function AndroidBitmap_lockPixels, which we need in order to draw into
  /external/oauth/core/src/main/java/net/oauth/
OAuthMessage.java 207 Map<String, Object> into = new HashMap<String, Object>(); local
208 dump(into);
209 return into;
212 protected void dump(Map<String, Object> into) throws IOException {
213 into.put("URL", URL);
216 into.putAll(getParameterMap());
312 StringBuilder into = new StringBuilder(); local
314 into.append(" realm=\"").append(OAuth.percentEncode(realm)).append('"');
321 if (into.length() > 0) into.append(",")
343 StringBuilder into = new StringBuilder(); local
361 List<OAuth.Parameter> into = new ArrayList<OAuth.Parameter>(); local
    [all...]
  /build/tools/atree/
Android.mk 3 # Copies files into the directory structure described by a manifest
  /external/oauth/core/src/main/java/net/oauth/client/
OAuthResponseMessage.java 77 protected void dump(Map<String, Object> into) throws IOException
79 super.dump(into);
80 http.dump(into);
  /external/chromium_org/v8/test/mjsunit/
debug-stepin-function-call.js 36 // to get into g.call and than check that execution is pauesed inside
42 // Step into f2.call:
66 // Test step into function call from a function without local variables.
73 // Test step into function call from a function with some local variables.
82 // Test step into function call which is a part of an expression.
92 // Test step into function call from a function with some local variables.
102 // Test step into function apply from a function without local variables.
109 // Test step into function apply from a function with some local variables.
118 // Test step into function apply which is a part of an expression.
128 // Test step into function apply from a function with some local variables
    [all...]
  /external/llvm/test/MC/Mips/
micromips-diagnostic-fixup.s 8 nop # This instr makes the branch too long to fit into a 17-bit offset
mips-diagnostic-fixup.s 8 nop # This instr makes the branch too long to fit into a 18-bit offset
  /external/elfutils/0.153/libdwfl/
core-file.c 361 void *into = *buffer; local
367 into = malloc (*buffer_available);
368 if (unlikely (into == NULL))
375 ssize_t nread = pread_retry (elf->fildes, into, *buffer_available, start);
378 if (into != *buffer)
379 free (into);
387 const void *eos = memchr (into, '\0', nread);
388 if (unlikely (eos == NULL) || unlikely (eos == into))
391 free (into);
394 nread = eos + 1 - into;
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-parseint.js 8 // Use a phi to force radix into heap number representation.
  /external/llvm/autoconf/m4/
func_mmap_file.m4 23 AC_DEFINE([HAVE_MMAP_FILE],[],[Define if mmap() can map files into memory])
  /external/qemu/ui/
d3des.c 124 void cpkey(register unsigned long *into)
129 while( from < endp ) *into++ = *from++;
152 static void scrunch(register unsigned char *outof, register unsigned long *into)
154 *into = (*outof++ & 0xffL) << 24;
155 *into |= (*outof++ & 0xffL) << 16;
156 *into |= (*outof++ & 0xffL) << 8;
157 *into++ |= (*outof++ & 0xffL);
158 *into = (*outof++ & 0xffL) << 24;
159 *into |= (*outof++ & 0xffL) << 16;
160 *into |= (*outof++ & 0xffL) << 8
    [all...]
  /external/chromium_org/content/browser/indexed_db/
indexed_db_leveldb_coding.cc 223 inline void EncodeIntSafely(int64 nParam, int64 max, std::string* into) {
225 return EncodeInt(nParam, into);
240 void EncodeByte(unsigned char value, std::string* into) {
241 into->push_back(value);
244 void EncodeBool(bool value, std::string* into) {
245 into->push_back(value ? 1 : 0);
248 void EncodeInt(int64 value, std::string* into) {
257 into->push_back(c);
262 void EncodeVarInt(int64 value, std::string* into) {
274 into->push_back(c)
359 EncodeByte(static_cast<char>(value.type()), into); local
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/extensions/searchvox/
loader.js 10 * @fileoverview Inject the script into the page.
40 * Inject Search into the page.
  /external/chromium_org/chrome/common/extensions/docs/examples/api/storage/stylizr/
popup.js 15 // If there is CSS specified, inject it into the page.
19 message.innerText = 'Not allowed to inject CSS into special page.';

Completed in 635 milliseconds

1 2 3 4 5 6 7 8 91011>>