HomeSort by relevance Sort by last modified time
    Searched refs:trans (Results 201 - 225 of 433) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/clang/include/clang/ARCMigrate/
ARCMT.h 116 bool applyTransform(TransformFn trans, RewriteListener *listener = nullptr);
  /external/clang/lib/ARCMigrate/
TransGCCalls.cpp 17 using namespace trans;
53 Transaction Trans(TA);
TransZeroOutPropsInDealloc.cpp 22 using namespace trans;
71 Transaction Trans(TA);
84 Transaction Trans(Pass.TA);
93 Transaction Trans(Pass.TA);
224 void trans::removeZeroOutPropsInDeallocFinalize(MigrationPass &pass) {
225 ZeroOutInDeallocRemover trans(pass);
226 trans.TraverseDecl(pass.Ctx.getTranslationUnitDecl());
  /external/eigen/bench/btl/libs/BLAS/
blas_interface.hh 58 static char trans = 'T'; variable
  /external/skia/src/core/
SkPictureStateTree.h 62 void appendTransform(const SkMatrix& trans);
  /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);
  /ndk/sources/host-tools/sed-4.2.1/lib/
regex_internal.c 25 RE_TRANSLATE_TYPE trans, bool icase,
44 RE_TRANSLATE_TYPE trans, bool icase, const re_dfa_t *dfa)
53 re_string_construct_common (str, len, pstr, trans, icase, dfa);
72 RE_TRANSLATE_TYPE trans, bool icase, const re_dfa_t *dfa)
76 re_string_construct_common (str, len, pstr, trans, icase, dfa);
117 if (trans != NULL)
175 RE_TRANSLATE_TYPE trans, bool icase,
181 pstr->trans = trans;
183 pstr->mbs_allocated = (trans != NULL || icase)
    [all...]
  /external/chromium_org/chrome/browser/sync/glue/
typed_url_model_associator.cc 227 syncer::WriteTransaction trans(FROM_HERE, sync_service_->GetUserShare());
228 syncer::ReadNode typed_url_root(&trans);
246 syncer::ReadNode node(&trans);
266 syncer::WriteNode write_node(&trans);
303 syncer::WriteNode node(&trans);
326 syncer::ReadNode sync_child_node(&trans);
385 syncer::WriteNode sync_node(&trans);
461 syncer::WriteTransaction* trans) {
465 syncer::ReadNode typed_url_root(trans);
473 syncer::WriteNode sync_child_node(trans);
    [all...]
bookmark_model_associator.h 126 int64 ApplyDeletesFromSyncJournal(syncer::BaseTransaction* trans);
sync_backend_host.h 183 const syncer::BaseTransaction* trans) const = 0;
  /external/chromium_org/third_party/icu/source/test/intltest/
uts46test.cpp 33 UTS46Test() : trans(NULL), nontrans(NULL) {}
41 IDNA *trans, *nontrans; member in class:UTS46Test
49 delete trans;
56 if(trans==NULL) {
61 trans=IDNA::createUTS46Instance(commonOptions, errorCode);
116 trans->nameToASCII(input, result, info, errorCode);
122 trans->nameToUnicode(input, result, info, errorCode);
179 trans->labelToUnicodeUTF8(StringPiece(s, 3), sink, info, errorCode);
194 trans->nameToUnicodeUTF8(eX, sink, info, errorCode);
591 trans->nameToASCII(input, aT, aTInfo, errorCode)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_cb_bitmap.c 100 struct pipe_transfer *trans; member in struct:bitmap_cache
570 if (cache->trans) {
571 pipe->transfer_destroy(pipe, cache->trans);
572 cache->trans = NULL;
615 if (cache->trans)
621 cache->trans = pipe_get_transfer(st->pipe, cache->texture, 0, 0,
625 cache->buffer = pipe_transfer_map(pipe, cache->trans);
628 memset(cache->buffer, 0xff, cache->trans->stride * BITMAP_CACHE_HEIGHT);
655 if (cache->trans) {
658 pipe_transfer_unmap(pipe, cache->trans);
    [all...]
  /external/icu/icu4c/source/test/intltest/
uts46test.cpp 33 UTS46Test() : trans(NULL), nontrans(NULL) {}
41 IDNA *trans, *nontrans; member in class:UTS46Test
49 delete trans;
56 if(trans==NULL) {
61 trans=IDNA::createUTS46Instance(commonOptions, errorCode);
116 trans->nameToASCII(input, result, info, errorCode);
122 trans->nameToUnicode(input, result, info, errorCode);
179 trans->labelToUnicodeUTF8(StringPiece(s, 3), sink, info, errorCode);
194 trans->nameToUnicodeUTF8(eX, sink, info, errorCode);
593 trans->nameToASCII(input, aT, aTInfo, errorCode)
    [all...]
  /external/mesa3d/src/mesa/state_tracker/
st_cb_bitmap.c 100 struct pipe_transfer *trans; member in struct:bitmap_cache
570 if (cache->trans) {
571 pipe->transfer_destroy(pipe, cache->trans);
572 cache->trans = NULL;
615 if (cache->trans)
621 cache->trans = pipe_get_transfer(st->pipe, cache->texture, 0, 0,
625 cache->buffer = pipe_transfer_map(pipe, cache->trans);
628 memset(cache->buffer, 0xff, cache->trans->stride * BITMAP_CACHE_HEIGHT);
655 if (cache->trans) {
658 pipe_transfer_unmap(pipe, cache->trans);
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
SlidingTab.java 248 Animation trans = new TranslateAnimation(0, dx, 0, dy); local
249 trans.setDuration(ANIM_DURATION);
250 trans.setFillAfter(true);
251 tab.startAnimation(trans);
252 text.startAnimation(trans);
265 Animation trans = new TranslateAnimation(-dx, 0, -dy, 0); local
266 trans.setDuration(ANIM_DURATION);
267 tab.startAnimation(trans);
268 text.startAnimation(trans);
309 TranslateAnimation trans = new TranslateAnimation(0, dx, 0, dy) local
    [all...]
  /external/chromium_org/sync/engine/
commit_util.cc 272 syncable::BaseWriteTransaction* trans = local_entry->base_write_transaction(); local
283 trans,
292 ChangeEntryIDAndUpdateChildren(trans, local_entry, entry_response_id);
397 syncable::BaseWriteTransaction* trans,
403 trans,
450 Entry e(trans, syncable::GET_BY_ID, server_entry_id);
  /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/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/libpng/contrib/libtests/
makepng.c 159 set_color(png_colorp color, png_bytep trans, unsigned int red,
166 *trans = (png_byte)alpha;
170 generate_palette(png_colorp palette, png_bytep trans, int bit_depth,
190 set_color(palette+0, trans+0, colors[1], colors[1], colors[1], 255,
195 set_color(palette+0, trans+0, colors[1], colors[1], colors[1],
200 set_color(palette+0, trans+0, colors[1], colors[2], colors[3], 255,
205 set_color(palette+0, trans+0, colors[1], colors[2], colors[3],
212 set_color(palette+0, trans+0, 255, 0, 0, 0, gamma_table);
213 set_color(palette+1, trans+1, 255, 255, 255, 255, gamma_table);
233 set_color(palette+ip, trans+ip
641 png_byte trans[256]; local
    [all...]
  /external/chromium_org/chrome/browser/sync/
backend_migrator.cc 127 syncer::ReadTransaction trans(FROM_HERE, user_share);
133 trans.GetDirectory()->GetDownloadProgress(type, &progress_marker);
  /external/chromium_org/chrome/browser/sync/test/integration/
enable_disable_test.cc 30 syncer::ReadTransaction trans(FROM_HERE, user_share);
31 syncer::ReadNode node(&trans);
  /external/chromium_org/chrome/browser/ui/autofill/
generated_credit_card_bubble_controller_unittest.cc 79 void NavigateWithTransition(ui::PageTransition trans) {
81 test_web_contents_->GetMainFrame(), 1, GURL("about:blank"), trans);
  /external/chromium_org/net/http/
failing_http_transaction_factory.cc 183 scoped_ptr<HttpTransaction>* trans) {
184 trans->reset(new FailingHttpTransaction(error_));
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/
bugTools.jar 
  /external/eigen/Eigen/src/Core/products/
GeneralMatrixVector_MKL.h 104 char trans=(LhsStorageOrder==ColMajor) ? 'N' : (ConjugateLhs) ? 'C' : 'T'; \
118 MKLPREFIX##gemv(&trans, &m, &n, &alpha_, (const MKLTYPE*)lhs, &lda, (const MKLTYPE*)x_ptr, &incx, &beta_, (MKLTYPE*)res, &incy); \

Completed in 756 milliseconds

1 2 3 4 5 6 7 891011>>