HomeSort by relevance Sort by last modified time
    Searched refs:Left (Results 76 - 100 of 166) sorted by null

1 2 34 5 6 7

  /external/pdfium/fpdfsdk/src/
fpdftext.cpp 78 double* left,
90 *left = charinfo.m_CharBox.left;
122 str = str.Left(count);
142 double* left,
150 textpage->GetRect(rect_index, rect.left, rect.top, rect.right, rect.bottom);
151 *left = rect.left;
158 double left,
167 CFX_FloatRect rect((FX_FLOAT)left, (FX_FLOAT)bottom, (FX_FLOAT)right
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
EnumDirItems.cpp 731 const UString prefix = fullPath.Left(fullPath.Len() - logPath.Len());
744 if (CompareFileNames(link.Left(prefix.Len()), prefix) != 0)
747 UString newLink = prefix.Left(rootPrefixSize);
  /external/pdfium/core/include/fxcrt/
fx_string.h 47 // and |m_Ptr| may be left pointing to invalid memory. Beware.
259 CFX_ByteString Left(FX_STRSIZE count) const;
479 CFX_WideStringC Left(FX_STRSIZE count) const {
638 CFX_WideString Left(FX_STRSIZE count) const;
  /external/pdfium/xfa/src/fxfa/src/parser/
xfa_localevalue.cpp 379 FX_DateFromCanonical(m_wsValue.Left(index), dt);
547 wsDate = wsDateTime.Left(nSplitIndex);
802 wsDate = wsDateTime.Left(nSplitIndex);
xfa_parser_imp.cpp 268 return wsNodeStr.Left(wsNamespaceURIPrefix.GetLength()) ==
295 wsNSPrefix = wsAttrName.Left(wsAttributeName.GetLength() -
335 wsNSPrefix = wsAttrName.Left(iFind);
342 if (wsAttrNS.Left(wsNamespaceURIPrefix.GetLength()) !=
    [all...]
xfa_script_resolveprocessor.cpp 697 if (wsCondition.Left(2) == FX_WSTRC(L".[") &&
700 } else if (wsCondition.Left(2) == FX_WSTRC(L".(") &&
  /external/llvm/include/llvm/IR/
PatternMatch.h 90 match_combine_or(const LTy &Left, const RTy &Right) : L(Left), R(Right) {}
105 match_combine_and(const LTy &Left, const RTy &Right) : L(Left), R(Right) {}
    [all...]
  /external/lzma/CPP/Common/
Wildcard.cpp 144 return path.Left((unsigned)(p - start));
  /external/pdfium/core/src/fxge/skia/
fx_skia_blitter_new.h 513 FX_BOOL Init(CFX_DIBitmap* pDevice, int Left, int Top);
  /external/skia/src/codec/
SkGifCodec.cpp 366 int frameLeft = desc.Left;
537 // Rows left to decode once we reach the start of the frame.
  /external/skia/src/images/
SkImageDecoder_libgif.cpp 290 int imageLeft = desc.Left;
304 gif_warning(*bm, "shifting image left to fit");
  /frameworks/base/libs/hwui/
LayerBuilder.cpp 157 float boundsDelta = mBounds.left - opBounds.left;
158 if (!checkSide(currentFlags, newFlags, OpClipSideFlags::Left, boundsDelta)) return false;
267 Vertex::set(currentVert++, rect.left, rect.top);
269 Vertex::set(currentVert++, rect.left, rect.bottom);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
exdisp.h 257 virtual HRESULT WINAPI put_Left(__LONG32 Left) = 0;
293 HRESULT (WINAPI *put_Left)(IWebBrowser *This,__LONG32 Left);
331 #define IWebBrowser_put_Left(This,Left) (This)->lpVtbl->put_Left(This,Left)
373 HRESULT WINAPI IWebBrowser_put_Left_Proxy(IWebBrowser *This,__LONG32 Left);
480 HRESULT (WINAPI *put_Left)(IWebBrowserApp *This,__LONG32 Left);
538 #define IWebBrowserApp_put_Left(This,Left) (This)->lpVtbl->put_Left(This,Left)
    [all...]
  /art/runtime/gc/allocator/
rosalloc.h 125 Slot* Left(size_t bracket_size) {
406 for (Slot* slot = LastSlot(); slot >= first_slot; slot = slot->Left(bracket_size)) {
    [all...]
  /external/clang/lib/Frontend/
VerifyDiagnosticConsumer.cpp 692 DirectiveList &Left,
699 for (auto &Owner : Left) {
729 // Now all that's left in Right are those that were not matched.
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/mac/
CocoaMouse.mm 172 #pragma mark Left Mouse Event overrides
372 // Cocoa's coordinate system has the origin in the bottom left so we need to transform the height
  /external/v8/test/mjsunit/es6/
typedarray-reduce.js 91 // ---- Test Reduce[Left]
  /prebuilts/tools/common/m2/repository/org/abego/treelayout/org.abego.treelayout.core/1.0.1/
org.abego.treelayout.core-1.0.1.jar 
  /prebuilts/tools/common/offline-m2/org/abego/treelayout/org.abego.treelayout.core/1.0.1/
org.abego.treelayout.core-1.0.1.jar 
  /external/clang/lib/Sema/
SemaOverload.cpp     [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_font/
fpdf_font_cid.cpp 790 cmapid = cmapid.Left(cmapid.GetLength() - 2);
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp 195 NonLoc left,
556 NonLoc left,
580 maxMinusRight = svalBuilder.evalBinOpNN(state, BO_Sub, maxVal, left,
582 left = right;
587 // If left > max - right, we have an overflow.
588 SVal willOverflow = svalBuilder.evalBinOpNN(state, BO_GT, left,
    [all...]
  /external/llvm/lib/Target/Mips/
MipsFastISel.cpp 582 const Value *Left = CI->getOperand(0), *Right = CI->getOperand(1);
584 unsigned LeftReg = getRegEnsuringSimpleIntegerWidening(Left, IsUnsigned);
655 bool IsFloat = Left->getType()->isFloatTy();
656 bool IsDouble = Left->getType()->isDoubleTy();
    [all...]
  /external/lzma/CPP/7zip/UI/Client7z/
Client7z.cpp 331 CreateComplexDir(_directoryPath + us2fs(_filePath.Left(slashPos)));
  /external/pdfium/xfa/src/fxfa/src/fm2js/
xfa_fm2jscontext.h 249 static void Left(FXJSE_HOBJECT hThis,

Completed in 720 milliseconds

1 2 34 5 6 7