HomeSort by relevance Sort by last modified time
    Searched refs:Top (Results 51 - 75 of 177) sorted by null

1 23 4 5 6 7 8

  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/xpath/
XMPPathParser.java 38 * put in the first (0th) slot in the expanded XMPPath. Check if the top
45 * <dd> A top level property or struct field.
466 throw new XMPException("Top level name must not be a qualifier", XMPError.BADXPATH);
471 throw new XMPException("Top level name must be simple", XMPError.BADXPATH);
  /external/chromium_org/tools/stats_viewer/
stats_viewer.Designer.cs 106 this.pictureBoxTitle.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
122 this.panelHeader.Dock = System.Windows.Forms.DockStyle.Top;
161 this.comboBoxFilter.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
179 this.panelControls.Dock = System.Windows.Forms.DockStyle.Top;
187 this.buttonExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
198 this.buttonZero.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
228 this.labelFilter.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
light.c 231 TRANSFORM_POINT(temp, ctx->ModelviewMatrixStack.Top->m, params);
236 if (_math_matrix_is_dirty(ctx->ModelviewMatrixStack.Top)) {
237 _math_matrix_analyse(ctx->ModelviewMatrixStack.Top);
239 TRANSFORM_DIRECTION(temp, params, ctx->ModelviewMatrixStack.Top->m);
959 TRANSFORM_NORMAL( ctx->_EyeZDir, eye_z, ctx->ModelviewMatrixStack.Top->m );
970 TRANSFORM_POINT( light->_Position, ctx->ModelviewMatrixStack.Top->inv,
1007 ctx->ModelviewMatrixStack.Top->m);
1034 if (!_math_matrix_is_length_preserving(ctx->ModelviewMatrixStack.Top)) {
1035 const GLfloat *m = ctx->ModelviewMatrixStack.Top->inv;
1064 !_math_matrix_is_length_preserving(ctx->ModelviewMatrixStack.Top))
    [all...]
texstate.c 374 if (_math_matrix_is_dirty(ctx->TextureMatrixStack[u].Top)) {
375 _math_matrix_analyse( ctx->TextureMatrixStack[u].Top );
378 ctx->TextureMatrixStack[u].Top->type != MATRIX_IDENTITY)
668 if (ctx->TextureMatrixStack[unit].Top->type != MATRIX_IDENTITY)
  /external/mesa3d/src/mesa/main/
light.c 231 TRANSFORM_POINT(temp, ctx->ModelviewMatrixStack.Top->m, params);
236 if (_math_matrix_is_dirty(ctx->ModelviewMatrixStack.Top)) {
237 _math_matrix_analyse(ctx->ModelviewMatrixStack.Top);
239 TRANSFORM_DIRECTION(temp, params, ctx->ModelviewMatrixStack.Top->m);
959 TRANSFORM_NORMAL( ctx->_EyeZDir, eye_z, ctx->ModelviewMatrixStack.Top->m );
970 TRANSFORM_POINT( light->_Position, ctx->ModelviewMatrixStack.Top->inv,
1007 ctx->ModelviewMatrixStack.Top->m);
1034 if (!_math_matrix_is_length_preserving(ctx->ModelviewMatrixStack.Top)) {
1035 const GLfloat *m = ctx->ModelviewMatrixStack.Top->inv;
1064 !_math_matrix_is_length_preserving(ctx->ModelviewMatrixStack.Top))
    [all...]
  /external/llvm/lib/CodeGen/
MachineScheduler.cpp 40 cl::desc("Force top-down list scheduling"));
214 /// Decrement this iterator until reaching the top or a non-debug instr.
218 assert(I != Beg && "reached the top of the region, cannot decrement");
287 /// Top-level MachineScheduler pass driver.
463 // scheduler for the top of it's scheduled region.
730 // A SUnit is ready to top schedule if it has no predecessors.
749 // Release top roots in forward order.
845 // Setup the register pressure trackers for the top scheduled top and bottom
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
pmu-bison.c 730 | TOP (included). |
753 # define YY_STACK_PRINT(Bottom, Top) \
756 yy_stack_print ((Bottom), (Top)); \
805 # define YY_STACK_PRINT(Bottom, Top)
929 about the unexpected token YYTOKEN for the state stack whose top is
    [all...]
parse-events-bison.c 840 | TOP (included). |
863 # define YY_STACK_PRINT(Bottom, Top) \
866 yy_stack_print ((Bottom), (Top)); \
915 # define YY_STACK_PRINT(Bottom, Top)
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/ui/
file_manager_ui.js 10 * @param {HTMLElement} element Top level element of Files.app.
16 * Top level element of Files.app.
  /external/chromium_org/v8/src/heap/
store-buffer.h 81 Object*** Top() { return reinterpret_cast<Object***>(old_top_); }
82 void SetTop(Object*** top) {
83 DCHECK(top >= Start());
84 DCHECK(top <= Limit());
85 old_top_ = reinterpret_cast<Address*>(top);
  /external/clang/lib/StaticAnalyzer/Core/
RegionStore.cpp 804 /// \p Top.
810 /// default bindings that may extend beyond \p Top itself, e.g. if \p Top is
815 const SubRegion *Top, BindingKey TopKey,
820 Top = cast<SubRegion>(TopKey.getConcreteOffsetRegion());
821 TopKey = BindingKey::Make(Top, BindingKey::Default);
826 SVal Extent = Top->getExtent(SVB);
833 } else if (const FieldRegion *FR = dyn_cast<FieldRegion>(Top)) {
866 if (Top->isSubRegionOf(Base)) {
    [all...]
  /device/generic/goldfish/opengl/
Android.mk 1 # This is the top-level build file for the Android HW OpenGL ES emulation
12 # Top-level for all modules
  /external/chromium_org/net/websockets/
websocket_inflater.cc 153 std::pair<char*, size_t> top = input_queue_.Top(); local
155 result = InflateWithFlush(top.first, top.second);
156 input_queue_.Consume(top.second - stream_->avail_in);
227 std::pair<char*, size_t> WebSocketInflater::InputQueue::Top() {
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1184.js 36 // throw below sets up Top::thread_local_.catcher_...
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
control.h     [all...]
  /external/elfutils/0.153/src/
ldscript.c     [all...]
  /external/openfst/src/include/fst/extensions/pdt/
expand.h 416 if (stack_.Top(si1) < stack_.Top(si2)) return true;
417 if (stack_.Top(si1) > stack_.Top(si2)) return false;
490 // 'current_stack_id_' is the stack id of the states currently at the top
493 // of a close parentheses matching the top of 'current_stack_id_; to
496 ssize_t current_paren_id_; // Paren id at top of current stack
836 current_paren_id_ = stack_.Top(current_stack_id_);
843 ssize_t paren_id = stack_.Top(si);
    [all...]
  /external/chromium_org/cc/resources/
tile_manager_perftest.cc 234 ASSERT_TRUE(queue.Top() != NULL);
312 ASSERT_TRUE(queue.Top() != NULL);
  /external/openfst/src/include/fst/
prune.h 147 s = heap.Top();
273 s = heap.Top();
  /sdk/emulator/opengl/
Android.mk 1 # This is the top-level build file for the Android HW OpenGL ES emulation
9 # Top-level for all modules
  /system/media/camera/docs/
camera_metadata_tags.mako 45 * Top level hierarchy definitions for camera metadata. *_INFO sections are for
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nv10_state_tex.c 81 PUSH_DATAm(push, ctx->TextureMatrixStack[i].Top->m);
nv20_state_tex.c 78 PUSH_DATAm(push, ctx->TextureMatrixStack[i].Top->m);
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_vb_fog.c 164 const GLfloat *m = ctx->ModelviewMatrixStack.Top->m;
  /external/clang/unittests/Basic/
VirtualFileSystemTest.cpp 181 IntrusiveRefCntPtr<DummyFileSystem> Top(new DummyFileSystem());
185 O->pushOverlay(Top);
202 Top->addRegularFile("/foo");
203 StatusT = Top->status("/foo");
503 // Make sure we get the top-most entry
687 // invalid YAML at top-level
    [all...]

Completed in 879 milliseconds

1 23 4 5 6 7 8