HomeSort by relevance Sort by last modified time
    Searched refs:pos1 (Results 26 - 50 of 183) sorted by null

12 3 4 5 6 7 8

  /external/skia/gm/
pictureimagegenerator.cpp 68 const SkScalar pos1[] = { 0, 0.75f }; local
70 SkASSERT(SK_ARRAY_COUNT(pos1) == SK_ARRAY_COUNT(colors1));
71 SkAutoTUnref<SkShader> gradient1(SkGradientShader::CreateLinear(pts1, colors1, pos1,
72 SK_ARRAY_COUNT(pos1),
  /packages/apps/Nfc/nci/jni/
RouteDataSet.cpp 46 std::string::size_type pos1 = 0; local
56 sscanf (aid.substr(pos1).c_str(), "%x", &num);
63 sscanf (aid.substr(pos1, pos2-pos1+1).c_str(), "%x", &num);
66 pos1 = pos2 + 1;
67 pos2 = aid.find_first_of (delimiter, pos1);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
IntlTestSimpleDateFormatAPI.java 83 FieldPosition pos1 = new FieldPosition(0); local
86 res1 = def.format(d, res1, pos1);
IntlTestDateFormatAPI.java 107 FieldPosition pos1 = new FieldPosition(0); local
110 res1 = fr.format(d, res1, pos1);
IntlTestNumberFormatAPI.java 92 FieldPosition pos1 = new FieldPosition(0); local
103 res3 = cur_fr.format(d, res3, pos1);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
IntlTestSimpleDateFormatAPI.java 79 FieldPosition pos1 = new FieldPosition(0); local
82 res1 = def.format(d, res1, pos1);
IntlTestDateFormatAPI.java 103 FieldPosition pos1 = new FieldPosition(0); local
106 res1 = fr.format(d, res1, pos1);
IntlTestNumberFormatAPI.java 88 FieldPosition pos1 = new FieldPosition(0); local
99 res3 = cur_fr.format(d, res3, pos1);
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletDynamics/ConstraintSolver/
btContactConstraint.cpp 121 void resolveSingleBilateral(btRigidBody& body1, const btVector3& pos1,
136 btVector3 rel_pos1 = pos1 - body1.getCenterOfMassPosition();
  /external/libcxx/test/std/strings/basic.string/string.ops/string_compare/
size_size_pointer.pass.cpp 31 test(const S& s, typename S::size_type pos1, typename S::size_type n1,
36 assert(sign(s.compare(pos1, n1, str)) == sign(x));
37 assert(pos1 <= s.size());
41 assert(pos1 > s.size());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.ops/string_compare/
size_size_pointer.pass.cpp 31 test(const S& s, typename S::size_type pos1, typename S::size_type n1,
36 assert(sign(s.compare(pos1, n1, str)) == sign(x));
37 assert(pos1 <= s.size());
41 assert(pos1 > s.size());
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_stipple.c 127 const float *pos1 = v1->data[pos]; local
132 float x1 = pos1[0];
134 float y1 = pos1[1];
draw_pipe_wide_point.c 138 float *pos1 = v1->data[pos]; local
159 pos1[0] += left_adj;
160 pos1[1] += bot_adj;
  /external/antlr/antlr-3.4/gunit/src/main/antlr3/org/antlr/gunit/
gUnit.g 85 int pos1, pos2;
86 if ( (pos1=$ACTION.text.indexOf("package"))!=-1 && (pos2=$ACTION.text.indexOf(';'))!=-1 ) {
87 grammarInfo.setGrammarPackage($ACTION.text.substring(pos1+8, pos2).trim()); // substring the package path
  /external/v8/tools/turbolizer/
code-view.js 36 var pos1 = span1.start;
45 if (currentSpan.start > pos1 || (inclusive1 && currentSpan.start == pos1)) {
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/protorpc/
util_test.py 78 def fn(pos1, pos2=1, kwonly=1):
79 return [pos1, pos2, kwonly]
91 def meth(self, pos1, kwonly=1):
92 return [pos1, kwonly]
  /external/icu/icu4c/source/test/intltest/
sdtfmtts.cpp 145 FieldPosition pos1(0), pos2(0);
147 res1 = def.format(d, res1, pos1);
  /external/libgdx/extensions/gdx-bullet/jni/src/bullet/LinearMath/
btTransformUtil.h 82 static void calculateVelocityQuaternion(const btVector3& pos0,const btVector3& pos1,const btQuaternion& orn0,const btQuaternion& orn1,btScalar timeStep,btVector3& linVel,btVector3& angVel)
84 linVel = (pos1 - pos0) / timeStep;
  /external/icu/icu4c/source/test/cintltst/
custrtst.c 1189 int32_t i, pos1, pos2, middle, length; local
    [all...]
  /external/libcxx/test/std/strings/basic.string/string.modifiers/string_replace/
size_size_string.pass.cpp 13 // replace(size_type pos1, size_type n1, const basic_string<charT,traits,Allocator>& str);
24 test(S s, typename S::size_type pos1, typename S::size_type n1, S str, S expected)
30 s.replace(pos1, n1, str);
32 assert(pos1 <= old_size);
34 typename S::size_type xlen = std::min(n1, old_size - pos1);
40 assert(pos1 > old_size);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.modifiers/string_replace/
size_size_string.pass.cpp 13 // replace(size_type pos1, size_type n1, const basic_string<charT,traits,Allocator>& str);
24 test(S s, typename S::size_type pos1, typename S::size_type n1, S str, S expected)
30 s.replace(pos1, n1, str);
32 assert(pos1 <= old_size);
34 typename S::size_type xlen = std::min(n1, old_size - pos1);
40 assert(pos1 > old_size);
  /external/v8/src/debug/
liveedit.js 454 function DiffChunk(pos1, pos2, len1, len2) {
455 this.pos1 = pos1;
481 if (array.length == 0 || pos < array[0].pos1) {
489 if (pos < array[middle_index + 1].pos1) {
496 if (pos >= chunk.pos1 + chunk.len1) {
497 return pos + chunk.pos2 + chunk.len2 - chunk.pos1 - chunk.len1;
514 return pos - diff_chunk.pos1 + diff_chunk.pos2;
600 pos_diff = chunk.pos2 + chunk.len2 - (chunk.pos1 + chunk.len1);
618 chunk_it.current().pos1 < info_node.info.end_position)
    [all...]
liveedit.cc 67 int pos1 = 0; local
70 if (pos1 < len1_) {
72 Direction dir = get_direction(pos1, pos2);
76 pos1++;
81 pos1++;
92 writer.skip1(len1_ - pos1);
122 int CompareUpToTail(int pos1, int pos2) {
123 if (pos1 < len1_) {
125 int cached_res = get_value4(pos1, pos2);
129 if (input_->Equals(pos1, pos2))
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
DateIntervalFormat.java 777 String pat1, FieldPosition pos1, // pattern and pos corresponding to {1}
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DateIntervalFormat.java 785 String pat1, FieldPosition pos1, // pattern and pos corresponding to {1}
797 } else if (pos1.getEndIndex() > 0) {
    [all...]

Completed in 1055 milliseconds

12 3 4 5 6 7 8