HomeSort by relevance Sort by last modified time
    Searched defs:position (Results 1 - 25 of 913) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/PCH/
objcxx-ivar-class.h 9 S position; variable
11 @property(assign, nonatomic) S position; variable
15 @synthesize position; variable
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
matcher.py 22 from closure_linter.common import position namespace
27 Position = position.Position
  /external/chromium_org/chrome/browser/ui/views/download/
download_shelf_context_menu_view.cc 34 views::MenuItemView::AnchorPosition position; local
36 position = views::MenuItemView::TOPRIGHT;
38 position = views::MenuItemView::TOPLEFT;
48 position,
  /external/chromium_org/net/base/
upload_progress.h 15 UploadProgress(uint64 position, uint64 size)
16 : size_(size), position_(position) {}
19 uint64 position() const { return position_; } function in class:net::UploadProgress
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFontElement.cpp 60 const CharacterType* position = characters; local
64 while (position < end) {
65 if (!isHTMLSpace(*position))
67 ++position;
71 if (position == end)
73 ASSERT(position < end);
82 switch (*position) {
85 ++position;
89 ++position;
99 while (position < end)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/cache/
FetchInitiatorInfo.h 37 , position(TextPosition::belowRangePosition())
43 TextPosition position; member in struct:WebCore::FetchInitiatorInfo
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
PointLightSource.h 32 static PassRefPtr<PointLightSource> create(const FloatPoint3D& position)
34 return adoptRef(new PointLightSource(position));
37 const FloatPoint3D& position() const { return m_position; } function in class:WebCore::PointLightSource
48 PointLightSource(const FloatPoint3D& position)
50 , m_position(position)
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XMLHttpRequestProgressEvent.h 47 unsigned long long position() const { return loaded(); } function in class:WebCore::XMLHttpRequestProgressEvent
  /external/chromium_org/third_party/closure_linter/closure_linter/common/
matcher.py 22 from closure_linter.common import position namespace
27 Position = position.Position
  /external/clang/test/CodeGen/
ext-vector-member-alignment.c 6 float4 position; member in struct:struct1
10 float4 f(struct struct1* x) { return x->position; }
13 p->position.x = c;
14 *a = p->position.y;
15 *b = p->position[0];
16 p->position[2] = c;
  /external/sfntly/cpp/src/sfntly/data/
font_output_stream.h 51 virtual size_t position() { return position_; } function in class:sfntly::FontOutputStream
  /frameworks/compile/mclinker/include/mcld/MC/
InputAction.h 36 unsigned int position() const { return m_Position; } function in class:mcld::InputAction
39 { return (position() < pOther.position()); }
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
checkers.h 61 unsigned long long position = 1; local
66 printf("is_sorted: check failed before position %i.\n",
67 position);
71 position++;
79 * Prints the position in case an unordered pair is found.
100 unsigned long long position = 1; local
106 printf("is_sorted: check failed before position %lld.\n",
107 position);
111 position++;
  /cts/tests/tests/graphics/src/android/graphics/cts/
LinearGradientTest.java 35 float[] position = { 0.0f, 1.0f / 3.0f, 2.0f / 3.0f }; local
37 lg = new LinearGradient(0, 0, 0, 40, color, position, TileMode.CLAMP);
  /cts/tests/tests/widget/src/android/widget/cts/
AdapterView_AdapterContextMenuInfoTest.java 29 int position = 1; local
31 menuInfo = new AdapterView.AdapterContextMenuInfo(testView, position, id);
33 assertEquals(position, menuInfo.position);
  /external/chromium/chrome/browser/history/
query_parser.h 24 // The starting position of the word in the original text.
25 size_t position; member in struct:QueryWord
  /external/chromium/chrome/browser/importer/
toolbar_importer_utils.cc 36 size_t position = (*current).find(kGoogleDomainSecureCookieId); local
37 if (0 == position)
  /external/chromium/chrome/browser/policy/
policy_path_parser_posix.cc 24 size_t position = result.find(kUserNamePolicyVarName); local
25 if (position != std::string::npos) {
28 result.replace(position, strlen(kUserNamePolicyVarName), user->pw_name);
33 position = result.find(kMachineNamePolicyVarName);
34 if (position != std::string::npos) {
37 result.replace(position, strlen(kMachineNamePolicyVarName), machinename);
  /external/chromium_org/chrome/browser/history/
query_parser.h 21 // The starting position of the word in the original text.
22 size_t position; member in struct:QueryWord
  /external/chromium_org/chrome/browser/policy/
policy_path_parser_linux.cc 35 size_t position = result.find(kUserNamePolicyVarName); local
36 if (position != std::string::npos) {
39 result.replace(position, strlen(kUserNamePolicyVarName), user->pw_name);
44 position = result.find(kMachineNamePolicyVarName);
45 if (position != std::string::npos) {
48 result.replace(position, strlen(kMachineNamePolicyVarName), machinename);
  /external/chromium_org/ppapi/c/
pp_touch_point.h 17 * This file defines the API to create a touch point or position where fingers
28 * single touch point, such as position, id, rotation angle, and pressure.
41 * This value represents the x and y pixel position of this TouchPoint
44 struct PP_FloatPoint position; member in struct:PP_TouchPoint
  /external/chromium_org/ppapi/cpp/
touch_point.h 30 FloatPoint position() const { function in class:pp::TouchPoint
31 return pp::FloatPoint(touch_point_.position);
  /external/chromium_org/ppapi/tests/
test_flash_fullscreen.cc 27 bool IsFullscreenView(const pp::Rect& position,
30 return (position.point() == pp::Point(0, 0) &&
31 position.size() == screen_size &&
139 pp::Rect position = view.GetRect(); local
141 if (fullscreen_pending_ && IsFullscreenView(position, clip, screen_size_)) {
145 !IsFullscreenView(position, clip, screen_size_)) {
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationStack.h 49 size_t position = m_activeAnimations.find(animation); local
50 ASSERT(position != notFound);
51 m_activeAnimations.remove(position);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentOrderedList.cpp 50 unsigned short position = n->compareDocumentPositionInternal(node, Node::TreatShadowTreesAsComposed); local
51 if (position & Node::DOCUMENT_POSITION_FOLLOWING) {

Completed in 849 milliseconds

1 2 3 4 5 6 7 8 91011>>