HomeSort by relevance Sort by last modified time
    Searched defs:trans (Results 26 - 50 of 128) sorted by null

12 3 4 5 6

  /external/bison/src/
print.c 131 transitions *trans = s->transitions;
136 for (i = 0; i < trans->num; i++)
137 if (!TRANSITION_IS_DISABLED (trans, i)
138 && TRANSITION_IS_SHIFT (trans, i) == display_transitions_p)
140 symbol *sym = symbols[TRANSITION_SYMBOL (trans, i)];
152 for (i = 0; i < trans->num; i++)
153 if (!TRANSITION_IS_DISABLED (trans, i)
154 && TRANSITION_IS_SHIFT (trans, i) == display_transitions_p)
156 symbol *sym = symbols[TRANSITION_SYMBOL (trans, i)];
158 state *s1 = trans->states[i]
130 transitions *trans = s->transitions; local
242 transitions *trans = s->transitions; local
    [all...]
conflicts.c 224 transitions *trans = s->transitions;
228 for (i = 0; i < trans->num; i++)
229 if (!TRANSITION_IS_DISABLED (trans, i)
230 && TRANSITION_SYMBOL (trans, i) == token)
231 TRANSITION_DISABLE (trans, i);
332 transitions *trans = s->transitions;
341 FOR_EACH_SHIFT (trans, i)
342 bitset_set (lookahead_set, TRANSITION_SYMBOL (trans, i));
432 transitions *trans = s->transitions;
435 if (!trans)
223 transitions *trans = s->transitions; local
331 transitions *trans = s->transitions; local
431 transitions *trans = s->transitions; local
    [all...]
print-xml.c 127 transitions *trans = s->transitions; local
131 for (i = 0; i < trans->num; i++)
132 if (!TRANSITION_IS_DISABLED (trans, i))
146 for (i = 0; i < trans->num; i++)
147 if (!TRANSITION_IS_DISABLED (trans, i)
148 && TRANSITION_IS_SHIFT (trans, i))
150 symbol *sym = symbols[TRANSITION_SYMBOL (trans, i)];
152 state *s1 = trans->states[i];
159 for (i = 0; i < trans->num; i++)
160 if (!TRANSITION_IS_DISABLED (trans, i
242 transitions *trans = s->transitions; local
    [all...]
  /external/chromium_org/net/http/
http_network_layer_unittest.cc 63 scoped_ptr<HttpTransaction> trans; local
64 int rv = factory_->CreateTransaction(DEFAULT_PRIORITY, &trans);
67 rv = trans->Start(&request_info, callback.callback(), BoundNetLog());
73 rv = ReadTransaction(trans.get(), &contents);
79 EXPECT_TRUE(trans->GetResponseInfo()->headers->HasHeaderValue(
268 scoped_ptr<HttpTransaction> trans; local
269 int rv = factory_->CreateTransaction(DEFAULT_PRIORITY, &trans);
271 EXPECT_TRUE(trans.get() != NULL);
275 scoped_ptr<HttpTransaction> trans; local
276 int rv = factory_->CreateTransaction(DEFAULT_PRIORITY, &trans);
319 scoped_ptr<HttpTransaction> trans; local
358 scoped_ptr<HttpTransaction> trans; local
391 scoped_ptr<HttpTransaction> trans; local
    [all...]
  /external/chromium_org/sync/engine/
commit_util.cc 255 syncable::BaseWriteTransaction* trans = local_entry->base_write_transaction(); local
266 trans,
275 ChangeEntryIDAndUpdateChildren(trans, local_entry, entry_response_id);
378 syncable::BaseWriteTransaction* trans,
384 trans,
431 Entry e(trans, syncable::GET_BY_ID, server_entry_id);
  /external/chromium_org/sync/internal_api/
change_reorder_buffer.cc 39 void ExpandToInclude(syncable::BaseTransaction* trans,
51 syncable::Entry node(trans, syncable::GET_BY_HANDLE, node_to_include);
62 syncable::Entry parent(trans, syncable::GET_BY_ID,
158 syncable::BaseTransaction* trans = sync_trans->GetWrappedTrans(); local
180 traversal.ExpandToInclude(trans, i->first);
base_node.cc 35 static int64 IdToMetahandle(syncable::BaseTransaction* trans,
37 syncable::Entry entry(trans, syncable::GET_BY_ID, id);
174 syncable::BaseTransaction* trans = GetTransaction()->GetWrappedTrans(); local
175 return dir->HasChildren(trans, GetEntry()->GetId());
  /external/chromium_org/third_party/icu/source/test/intltest/
trnserr.cpp 52 UnicodeString trans="Latin-Greek"; local
64 Transliterator* t= Transliterator::createInstance(trans, UTRANS_FORWARD, parseError, status);
  /external/eigen/demos/opengl/
camera.cpp 186 Vector3f trans = orientation() * t; local
187 setPosition( position() + trans );
188 setTarget( mTarget + trans );
  /external/icu/icu4c/source/test/intltest/
trnserr.cpp 52 UnicodeString trans="Latin-Greek"; local
64 Transliterator* t= Transliterator::createInstance(trans, UTRANS_FORWARD, parseError, status);
  /hardware/intel/img/hwcomposer/ips/anniedale/
PlaneCapabilities.cpp 37 uint32_t trans = hwcLayer->getLayer()->transform; local
46 return trans ? false : true;
57 if (trans == HAL_TRANSFORM_ROT_180) {
60 return trans ? false : true;
62 return trans ? false: true;
168 uint32_t trans = hwcLayer->getLayer()->transform; local
194 if (trans == HAL_TRANSFORM_ROT_90 || trans == HAL_TRANSFORM_ROT_270) {
223 uint32_t trans = hwcLayer->getLayer()->transform; local
227 switch (trans) {
    [all...]
  /external/chromium_org/sync/syncable/
entry.h 54 Entry(BaseTransaction* trans, GetByHandle, int64 handle);
55 Entry(BaseTransaction* trans, GetById, const Id& id);
56 Entry(BaseTransaction* trans, GetTypeRoot, ModelType type);
57 Entry(BaseTransaction* trans, GetByClientTag, const std::string& tag);
61 Entry(BaseTransaction* trans, GetByServerTag, const std::string& tag);
65 BaseTransaction* trans() const { return basetrans_; } function in class:syncer::syncable::Entry
261 inline explicit Entry(BaseTransaction* trans)
262 : basetrans_(trans),
  /external/chromium_org/third_party/WebKit/Source/platform/transforms/
AffineTransform.cpp 121 AffineTransform trans; local
123 trans.m_transform[0] = other.m_transform[0] * m_transform[0] + other.m_transform[1] * m_transform[2];
124 trans.m_transform[1] = other.m_transform[0] * m_transform[1] + other.m_transform[1] * m_transform[3];
125 trans.m_transform[2] = other.m_transform[2] * m_transform[0] + other.m_transform[3] * m_transform[2];
126 trans.m_transform[3] = other.m_transform[2] * m_transform[1] + other.m_transform[3] * m_transform[3];
127 trans.m_transform[4] = other.m_transform[4] * m_transform[0] + other.m_transform[5] * m_transform[2] + m_transform[4];
128 trans.m_transform[5] = other.m_transform[4] * m_transform[1] + other.m_transform[5] * m_transform[3] + m_transform[5];
130 setMatrix(trans.m_transform);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
r600_texture.c 272 struct r600_transfer *trans; local
308 trans = CALLOC_STRUCT(r600_transfer);
309 if (trans == NULL)
311 pipe_resource_reference(&trans->transfer.resource, texture);
312 trans->transfer.level = level;
313 trans->transfer.usage = usage;
314 trans->transfer.box = *box;
323 pipe_resource_reference(&trans->transfer.resource, NULL);
324 FREE(trans);
327 trans->transfer.stride = rtex->flushed_depth_texture->surface.level[level].pitch_bytes
    [all...]
  /external/chromium_org/third_party/skia/src/images/
SkMovie_gif.cpp 273 static void getTransparencyAndDisposalMethod(const SavedImage* frame, bool* trans, int* disposal)
275 *trans = false;
281 *trans = ((eb->Bytes[0] & 1) == 1);
399 bool trans; local
401 getTransparencyAndDisposalMethod(cur, &trans, &disposal);
402 if (!trans && gif->SColorMap != NULL) {
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/genperf/
perfect.c 468 int trans = (form->speed == SLOW_HS || form->perfect == MINIMAL_HP); local
480 if (!trans && (q == 1))
    [all...]
  /external/clang/lib/ARCMigrate/
Transforms.h 28 namespace trans { namespace in namespace:clang::arcmt
219 } // end namespace trans
  /external/eigen/Eigen/src/Householder/
HouseholderSequence.h 378 * \param [in] trans New value of the transpose flag.
383 * \sa trans()
385 HouseholderSequence& setTrans(bool trans)
387 m_trans = trans;
391 bool trans() const { return m_trans; } /**< \brief Returns the transpose flag. */ function in class:Eigen::HouseholderSequence
  /external/eigen/Eigen/src/SparseCore/
SparseMatrixBase.h 305 SparseMatrix<Scalar, RowMajorBit, Index> trans = m; local
306 s << static_cast<const SparseMatrixBase<SparseMatrix<Scalar, RowMajorBit, Index> >&>(trans);
  /external/eigen/bench/
bench_gemm.cpp 39 static char trans = 'T'; variable
  /external/mesa3d/src/gallium/drivers/radeonsi/
r600_texture.c 272 struct r600_transfer *trans; local
308 trans = CALLOC_STRUCT(r600_transfer);
309 if (trans == NULL)
311 pipe_resource_reference(&trans->transfer.resource, texture);
312 trans->transfer.level = level;
313 trans->transfer.usage = usage;
314 trans->transfer.box = *box;
323 pipe_resource_reference(&trans->transfer.resource, NULL);
324 FREE(trans);
327 trans->transfer.stride = rtex->flushed_depth_texture->surface.level[level].pitch_bytes
    [all...]
  /external/qemu/distrib/sdl-1.2.15/test/
testalpha.c 65 Uint8 trans, alphamask; local
125 trans = alphamask;
128 trans = (Uint8)((range*alphamask)/radius);
132 if ( (int)trans+addition > alphamask ) {
133 trans = alphamask;
135 trans += addition;
139 *buf++ |= (255-trans);
  /external/skia/src/images/
SkMovie_gif.cpp 273 static void getTransparencyAndDisposalMethod(const SavedImage* frame, bool* trans, int* disposal)
275 *trans = false;
281 *trans = ((eb->Bytes[0] & 1) == 1);
399 bool trans; local
401 getTransparencyAndDisposalMethod(cur, &trans, &disposal);
402 if (!trans && gif->SColorMap != NULL) {
  /external/srec/tools/parseStringTest/
parseStringTest.c 67 void lstr_strip_multiple_spaces(LCHAR* trans)
69 char *src=trans, *dst=trans;
104 ESR_ReturnCode Parse(SR_Grammar* grammar, LCHAR* trans, PFile* fout, Opts* opts)
123 trans = wmap->words[id];
124 Parse(grammar, trans, fout, &myopts);
132 lstrtrim(trans);
134 lstr_strip_multiple_spaces(trans);
138 rc = grammar->checkParse(grammar, trans, semanticResults, (size_t*) & result_count);
143 strcpy(copy_of_trans, trans);
276 LCHAR trans[MAX_LINE_LENGTH]; local
452 LCHAR trans[MAX_LINE_LENGTH]; local
540 LCHAR trans[MAX_LINE_LENGTH]; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
block.cpp 21 void trans(uint8 *cur, int pitch, uint8 *predBlock, int16 *dataBlock) function
    [all...]

Completed in 792 milliseconds

12 3 4 5 6