HomeSort by relevance Sort by last modified time
    Searched refs:pos (Results 2726 - 2750 of 4804) sorted by null

<<101102103104105106107108109110>>

  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 629 int pos = Arrays.binarySearch(data, (byte) 0); local
630 if (pos < 0) {
633 byte[] subjNameData = new byte[pos];
635 byte[] issNameData = new byte[data.length - pos - 1];
636 System.arraycopy(data, pos + 1, issNameData, 0, issNameData.length);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
GCMBlockCipher.java 476 for (int pos = 0; pos < len; pos += BLOCK_SIZE)
478 int num = Math.min(len - pos, BLOCK_SIZE);
479 gHASHPartial(Y, b, pos, num);
  /external/chromium/base/json/
json_reader.cc 654 for (const wchar_t* pos = start_pos_; pos != error_pos; ++pos) {
655 if (*pos == '\0') {
660 if (*pos == '\n') {
  /external/chromium/chrome/browser/
idbbindingutilities_browsertest.cc 149 size_t pos = 0; local
151 i != values.end(); ++i, ++pos) {
152 ASSERT_EQ(expected_keys_[pos].type(), i->type());
154 ASSERT_EQ(expected_keys_[pos].string(), i->string());
156 ASSERT_EQ(expected_keys_[pos].number(), i->number());
  /external/chromium/net/spdy/
spdy_protocol_test.cc 220 int pos = 0; local
224 EXPECT_EQ(parsed.flags(), ids[pos].flags());
225 EXPECT_EQ(parsed.id(), ids[pos].id());
226 EXPECT_EQ(value, static_cast<uint32>(pos));
228 ++pos;
  /external/chromium/third_party/libjingle/source/talk/base/
logging.cc 563 for (const unsigned char* pos = line; pos < end_of_line; ++pos) {
564 if (isspace(*pos))
567 if (!isprint(*pos)) {
  /external/chromium_org/chrome_frame/test/
test_server.cc 36 size_t pos = headers.find("\r\n"); local
37 DCHECK(pos != std::string::npos);
38 if (pos != std::string::npos) {
39 headers_ = headers.substr(pos + 2);
42 headers.begin(), headers.begin() + pos, " ");
  /external/chromium_org/content/browser/renderer_host/input/
web_input_event_builders_win.cc 178 POINT pos = {-1, -1}; local
179 GetCursorPos(&pos);
180 ScreenToClient(hwnd, &pos);
181 return MAKELPARAM(pos.x, pos.y);
  /external/chromium_org/skia/ext/
image_operations.cc 147 inline float ComputeFilter(float pos) {
150 return EvalBox(pos);
152 return EvalHamming(1, pos);
154 return EvalLanczos(2, pos);
156 return EvalLanczos(3, pos);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
InsertParagraphSeparatorCommand.cpp 73 void InsertParagraphSeparatorCommand::calculateStyleBeforeInsertion(const Position &pos)
78 VisiblePosition visiblePos(pos, VP_DEFAULT_AFFINITY);
82 ASSERT(pos.isNotNull());
83 m_style = EditingStyle::create(pos);
84 m_style->mergeTypingStyle(pos.document());
344 // FIXME: We need the affinity for pos, but pos.downstream() does not give it
354 // Split at pos if in the middle of a text node.
  /external/chromium_org/third_party/WebKit/Source/web/
ContextMenuClientImpl.cpp 128 VisiblePosition pos(innerNode->renderer()->positionForPoint(
131 if (pos.isNull())
134 WebFrameImpl::selectWordAroundPosition(selectedFrame, pos);
141 selectedFrame->selection().setSelection(VisibleSelection(pos));
144 selectedFrame->selection().setSelection(VisibleSelection(pos));
WebInputEventFactoryWin.cpp 203 POINT pos = {-1, -1}; local
204 GetCursorPos(&pos);
205 ScreenToClient(hwnd, &pos);
206 return MAKELPARAM(pos.x, pos.y);
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebPageNewSerializerTest.cpp 319 size_t pos = xml.find("<?xml version="); local
320 ASSERT_TRUE(pos != std::string::npos);
322 pos = xml.find("<?xml version=", pos + 1);
323 ASSERT_TRUE(pos == std::string::npos);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_target.cpp 158 for (unsigned int pos = 0; pos < codeSize / 4; ++pos) {
159 if ((pos % 8) == 0)
161 INFO("%08x ", bin[pos]);
  /external/chromium_org/third_party/mesa/src/src/gallium/tools/trace/
parse.py 83 line, column = self.pos()
89 line, column = self.pos()
95 self.character_pos = self.pos()
123 line, column = self.pos()
130 def pos(self): member in class:XmlTokenizer
  /external/chromium_org/v8/samples/
lineprocessor.cc 448 for (char* pos = buffer; *pos != '\0'; pos++) {
449 if (*pos == '\n') {
450 *pos = '\0';
  /external/chromium_org/v8/src/ia32/
deoptimizer-ia32.cc 105 byte* pos_before = reloc_info_writer.pos();
109 pos_before - reloc_info_writer.pos());
153 ASSERT_GE(reloc_info_writer.pos(),
164 int new_reloc_size = reloc_end_address - reloc_info_writer.pos();
166 code->relocation_start(), reloc_info_writer.pos(), new_reloc_size);
  /external/harfbuzz_ng/src/
hb-uniscribe.cc 463 hb_glyph_position_t *pos = &buffer->pos[i]; local
466 pos->x_advance = info->mask;
467 pos->x_offset = info->var1.u32;
468 pos->y_offset = info->var2.u32;
  /external/icu4c/common/unicode/
uniset.h 403 * @param pos on input, the position in pattern at which to start parsing.
412 UnicodeSet(const UnicodeString& pattern, ParsePosition& pos,
577 int32_t pos);
619 * character at pattern.charAt(pos.getIndex()) must be '[', or the
631 * The portion of the string from pos.getIndex(), which must be a
633 * @param pos upon entry, the position at which to being parsing.
634 * The character at pattern.charAt(pos.getIndex()) must be a '['.
635 * Upon return from a successful parse, pos.getIndex() is either
649 ParsePosition& pos,
    [all...]
  /external/javassist/src/main/javassist/bytecode/stackmap/
MapMaker.java 179 int pos = tb.position; local
180 int end = pos + tb.length;
181 while (pos < end)
182 pos += doOpcode(pos, code);
  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
TestHoveringTank.java 164 Vector3f pos = spaceCraft.getWorldTranslation().clone(); local
180 missile.setLocalTranslation(pos.addLocal(0, extent.y * 4.5f, 0));
221 Vector3f pos = spaceCraft.getWorldTranslation().clone(); local
236 camPos.addLocal(pos);
241 lookAt.addLocal(pos);
  /external/libyuv/files/source/
mjpeg_decoder.cc 122 buf_vec_.pos = 0;
438 if (buf_vec->pos >= buf_vec->len) {
443 cinfo->src->next_input_byte = buf_vec->buffers[buf_vec->pos].data;
444 cinfo->src->bytes_in_buffer = buf_vec->buffers[buf_vec->pos].len;
445 ++buf_vec->pos;
  /external/linux-tools-perf/util/
callchain.c 207 node->val_nr = cursor->nr - cursor->pos;
321 u64 start = cursor->pos;
355 cursor->pos = start;
359 matches = cursor->pos - start;
368 if (matches == root->val_nr && cursor->pos == cursor->nr) {
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_target.cpp 158 for (unsigned int pos = 0; pos < codeSize / 4; ++pos) {
159 if ((pos % 8) == 0)
161 INFO("%08x ", bin[pos]);
  /external/mesa3d/src/gallium/tools/trace/
parse.py 83 line, column = self.pos()
89 line, column = self.pos()
95 self.character_pos = self.pos()
123 line, column = self.pos()
130 def pos(self): member in class:XmlTokenizer

Completed in 2132 milliseconds

<<101102103104105106107108109110>>