HomeSort by relevance Sort by last modified time
    Searched refs:to (Results 101 - 125 of 11374) sorted by null

1 2 3 45 6 7 8 91011>>

  /frameworks/base/core/tests/overlaytests/
Android.mk 1 # Dummy makefile to halt recursive directory traversal.
  /packages/apps/Calendar/src/com/android/calendar/alerts/
NotificationMgr.java 10 * Unless required by applicable law or agreed to in writing, software
27 * might post notifications and we don't want to affect those.
36 public void cancelAllBetween(int from, int to) {
37 for (int i = from; i <= to; i++) {
  /packages/apps/Gallery2/src/com/android/gallery3d/anim/
FloatAnimation.java 10 * Unless required by applicable law or agreed to in writing, software
25 public FloatAnimation(float from, float to, int duration) {
27 mTo = to;
  /packages/inputmethods/OpenWnn/libs/libwnnDictionary/include/
nj_dic.h 10 * Unless required by applicable law or agreed to in writing, software
60 #define NJ_INT32_WRITE(to, from)\
61 {(to)[0]=(NJ_UINT8)(((from)>>24) & 0x000000ff);\
62 (to)[1]=(NJ_UINT8)(((from)>>16) & 0x000000ff);\
63 (to)[2]=(NJ_UINT8)(((from)>>8) & 0x000000ff);\
64 (to)[3]=(NJ_UINT8)((from) & 0x000000ff);}
66 #define NJ_INT16_WRITE(to, from)\
67 {(to)[0]=(NJ_UINT8)(((from)>>8) & 0x00ff);\
68 (to)[1]=(NJ_UINT8)((from) & 0x00ff);}
  /external/mdnsresponder/mDNSShared/
dnsextd.conf 5 // In most cases, you should not need to change these default options in
7 // on port 53, and forward them on as appropriate to BIND on localhost:5030.
9 // You need to edit the "zone" statement below to give the name of your
16 // In /etc/named.conf you will need to modify the "options" section to
17 // tell BIND to accept packets from localhost:5030, like this:
21 // You also need a "zone" statement in /etc/named.conf to tell BIND the update
23 // network, you might allow anyone to perform updates. To do that, you jus
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locale.categories/category.ctype/locale.codecvt/locale.codecvt.members/
char16_t_in.pass.cpp 16 // internT* to, internT* to_end, internT*& to_next) const;
29 F::intern_type to[9]; local
35 to, to + 9, to_next) == F::ok);
37 assert(to_next - to == 9);
39 assert(to[i] == from[i]);
char16_t_out.pass.cpp 16 // externT* to, externT* to_end, externT*& to_next) const;
33 char to[9] = {0}; local
38 to, to + 9, to_next);
41 assert(to_next - to == 9);
43 assert(to[i] == from[i]);
char32_t_in.pass.cpp 16 // internT* to, internT* to_end, internT*& to_next) const;
29 F::intern_type to[9]; local
35 to, to + 9, to_next) == F::ok);
37 assert(to_next - to == 9);
39 assert(to[i] == from[i]);
char32_t_out.pass.cpp 16 // externT* to, externT* to_end, externT*& to_next) const;
33 char to[9] = {0}; local
38 to, to + 9, to_next);
41 assert(to_next - to == 9);
43 assert(to[i] == from[i]);
char_in.pass.cpp 16 // internT* to, internT* to_end, internT*& to_next) const;
29 std::vector<char> to(from.size());
35 to.data(), to.data() + to.size(), to_next) == F::noconv);
37 assert(to_next == to.data());
char_out.pass.cpp 16 // externT* to, externT* to_end, externT*& to_next) const;
29 std::vector<char> to(from.size());
35 to.data(), to.data() + to.size(), to_next) == F::noconv);
37 assert(to_next == to.data());
wchar_t_in.pass.cpp 16 // internT* to, internT* to_end, internT*& to_next) const;
30 std::basic_string<F::intern_type> to(from.size(), F::intern_type());
36 &to[0], &to[0] + to.size(), to_next);
39 assert(to_next - to.data() == expected.size());
40 assert(to_next - to.data() == expected.size());
41 assert(to == expected);
  /external/compiler-rt/
README.android 3 * cannot push upstream to the llvm.org repository:
4 * - Changes due to Android's build system.
5 * - Changes due to Android's toolchain.
6 * - Changes due to the limitations in Android-based consumer electronics.
8 * Some of them are to-dos. If and when they are done, there will no longer be
11 * The file contains useful hints when we try to resolve future 3-way merge
15 * For JellyBean: Synced to upstream r155350
16 * For JellyBean MR1: Synced to upstream r162279
17 * For Jellybean MR2: Synced to upstream r177337
18 * For Key Lime Pie: Synced to upstream r18788
    [all...]
  /external/qemu-pc-bios/bochs/bios/
notes 24 * drive sets the busy bit in Status Reg to 1
27 error bit in the Status register to 1.
28 > Drive also sets the busy bit in the Status register to 0.
29 > Drive then generates an interrupt to the system.
31 > drive executes an implied seek to desired track and
33 > when sector buffer is filled and the data is ready to be
34 transferred, the drive sets the data-request bit to 1, sets
35 the busy bit to 0, and generates an interrupt.
37 the data, the drive sets the data-request bit and the busy bit to 0.
39 the first sector of data, the drive sets the data-request bit to 0
    [all...]
  /external/clang/test/SemaCXX/
warn-func-as-bool.cpp 21 b = f1; // expected-warning {{address of function 'f1' will always evaluate to 'true'}} \
22 expected-note {{prefix with the address-of operator to silence this warning}}
23 if (f1) {} // expected-warning {{address of function 'f1' will always evaluate to 'true'}} \
24 expected-note {{prefix with the address-of operator to silence this warning}}
25 b = S::f2; // expected-warning {{address of function 'S::f2' will always evaluate to 'true'}} \
26 expected-note {{prefix with the address-of operator to silence this warning}}
27 if (S::f2) {} // expected-warning {{address of function 'S::f2' will always evaluate to 'true'}} \
28 expected-note {{prefix with the address-of operator to silence this warning}}
29 b = f5; // expected-warning {{address of function 'f5' will always evaluate to 'true'}} \
30 expected-note {{prefix with the address-of operator to silence this warning}}
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/math/
m_translate.h 7 * Permission is hereby granted, free of charge, to any person obtaining a
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
36 * For example, convert array of GLushort[3] to GLfloat[4].
38 * \param to the destination addres
    [all...]
  /external/mesa3d/src/mesa/math/
m_translate.h 7 * Permission is hereby granted, free of charge, to any person obtaining a
9 * to deal in the Software without restriction, including without limitation
10 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
11 * and/or sell copies of the Software, and to permit persons to whom the
12 * Software is furnished to do so, subject to the following conditions:
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
36 * For example, convert array of GLushort[3] to GLfloat[4].
38 * \param to the destination addres
    [all...]
  /external/llvm/
README.android 3 * upstream to the llvm.org repository:
4 * - Changes due to Android's build system.
5 * - Changes due to Android's toolchain.
6 * - Changes due to the limitations in Android-based consumer electronics.
8 * Some of them are to-dos. If and when they are done, there will no longer be
11 * The file contains useful hints when we try to resolve future 3-way merge
15 * For Honeycomb: Synced to upstream r112344
16 * For Honeycomb MR1: Synced to upstream r119309
17 * For Honeycomb MR2: Synced to upstream r119309
18 * For Ice Cream Sandwich: Synced to upstream r13556
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimateColorElement.cpp 17 * along with this library; see the file COPYING.LIB. If not, write to
47 void SVGAnimateColorElement::determinePropertyValueTypes(const String& from, const String& to)
49 SVGAnimateElement::determinePropertyValueTypes(from, to);
52 if (attributeValueIsCurrentColor(to))
  /libcore/luni/src/main/java/java/util/regex/
MatchResultImpl.java 10 * Unless required by applicable law or agreed to in writing, software
59 int to = offsets[(group * 2) + 1]; local
60 if (from == -1 || to == -1) {
63 return text.substring(from, to);
  /external/libppp/src/
systems.c 17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
67 /* Move string from ``from'' to ``to'', interpreting ``~'' and $.... */
69 InterpretArg(const char *from, char *to)
78 startto = to;
79 endto = to + LINE_LEN - 1;
88 *to++ = *from++;
97 *to++ = '\\'; /* Pass the escapes on, maybe skipping \# */
100 *to++ = *from++
    [all...]
  /system/core/toolbox/cp/
cp.c 7 * This code is derived from software contributed to Berkeley by
19 * may be used to endorse or promote products derived from this software
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
51 * Cp copies source files to target files.
53 * The global PATH_T structure "to" always contains the path to the
57 * The basic algorithm is to initialize "to" and use fts(3) to travers
87 PATH_T to = { .p_end = to.p_path, .target_end = empty }; variable
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
markselection.js 1 // Because sometimes you need to mark the selected *text*.
42 function coverRange(cm, from, to, addAt) {
43 if (cmp(from, to) == 0) return;
48 var endLine = line + CHUNK_SIZE, atEnd = endLine >= to.line;
49 var end = atEnd ? to : Pos(endLine, 0);
66 var from = cm.getCursor("start"), to = cm.getCursor("end");
67 coverRange(cm, from, to);
71 var from = cm.getCursor("start"), to = cm.getCursor("end");
72 if (cmp(from, to) == 0) return clear(cm);
75 if (!array.length) return coverRange(cm, from, to);
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
ComposingText.java 10 * Unless required by applicable law or agreed to in writing, software
53 * (ex) the result of Kana-to-Kanji conversion in Japanese,
54 * Pinyin-to-Kanji conversion in Chinese, Hangul-to-Hanja conversion in Korean language.
78 * Output internal information to the log.
87 tmp += "(" + ss.string + "," + ss.from + "," + ss.to + ")";
117 * Convert the range of segments to a string.
121 * @param to Convert range to
124 public String toString(int layer, int from, int to) {
    [all...]
  /art/test/004-annotations/src/android/test/anno/
IntToString.java 11 String to(); method in interface:IntToString

Completed in 2402 milliseconds

1 2 3 45 6 7 8 91011>>