HomeSort by relevance Sort by last modified time
    Searched refs:Frame (Results 151 - 175 of 459) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
tabbedpages.py 16 class TabSet(Frame):
45 Frame.__init__(self, page_set, **kw)
61 self.padding_frame = Frame(self, height=2,
112 tab_row = Frame(self)
175 class TabButton(Frame):
189 Frame.__init__(self, tab_row, borderwidth=self.bw, relief=RAISED)
231 self.mask = Frame(page_set, borderwidth=0, relief=FLAT,
235 self.mskl = Frame(page_set, borderwidth=0, relief=FLAT,
237 self.mskl.ml = Frame(self.mskl, borderwidth=self.bw,
243 self.mskr = Frame(page_set, borderwidth=0, relief=FLAT
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
tabbedpages.py 16 class TabSet(Frame):
45 Frame.__init__(self, page_set, **kw)
61 self.padding_frame = Frame(self, height=2,
112 tab_row = Frame(self)
175 class TabButton(Frame):
189 Frame.__init__(self, tab_row, borderwidth=self.bw, relief=RAISED)
231 self.mask = Frame(page_set, borderwidth=0, relief=FLAT,
235 self.mskl = Frame(page_set, borderwidth=0, relief=FLAT,
237 self.mskl.ml = Frame(self.mskl, borderwidth=self.bw,
243 self.mskr = Frame(page_set, borderwidth=0, relief=FLAT
    [all...]
  /external/llvm/lib/MC/
MCStreamer.cpp 210 report_fatal_error("No open frame");
255 report_fatal_error("Starting a frame before finishing the previous one!");
257 MCDwarfFrameInfo Frame;
258 Frame.IsSimple = IsSimple;
259 EmitCFIStartProcImpl(Frame);
261 FrameInfos.push_back(Frame);
264 void MCStreamer::EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame) {
273 void MCStreamer::EmitCFIEndProcImpl(MCDwarfFrameInfo &Frame) {
274 // Put a dummy non-null value in Frame.End to mark that this frame has bee
    [all...]
MCDwarf.cpp     [all...]
  /external/valgrind/main/auxprogs/
valgrind-di-server.c 56 * Check that all error cases result in a FAIL frame being returned.
58 * image.c: don't assert in cases where a FAIL frame is returned;
349 /* A frame. The first 4 bytes of |data| give the kind of the frame,
351 typedef struct { UChar* data; SizeT n_data; } Frame;
394 static Frame* mk_Frame_asciiz ( const char* tag, const char* str )
397 Frame* f = calloc(sizeof(Frame), 1);
407 static Bool parse_Frame_noargs ( Frame* fr, const HChar* tag )
417 static Bool parse_Frame_asciiz ( Frame* fr, const HChar* tag
    [all...]
  /external/valgrind/main/coregrind/m_debuginfo/
image.c 94 /* A frame. The first 4 bytes of |data| give the kind of the frame,
96 typedef struct { UChar* data; SizeT n_data; } Frame;
211 /* "Do" a transaction: that is, send the given frame to the server and
212 return the frame it sends back. Caller owns the resulting frame
215 static Frame* do_transaction ( Int sd, Frame* req )
248 /* Allocate a Frame to hold the result data, and read into it. */
251 Frame* res = ML_(dinfo_zalloc)("di.do_transaction.1", sizeof(Frame))
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
Executor.java 28 * Executor is responsible for modeling the effects of a JVM instruction on a frame.
55 * Execute the instruction, modeling the effects on the specified frame and subroutine.
62 * @param frame the frame to modify to represent the result of the instruction
66 public void execute(MethodInfo method, int pos, CodeIterator iter, Frame frame, Subroutine subroutine) throws BadBytecode {
76 frame.push(Type.UNINIT);
85 frame.push(Type.INTEGER);
89 frame.push(Type.LONG);
90 frame.push(Type.TOP)
729 simplePush(zeroExtend(returnType), frame); local
747 simplePush(zeroExtend(returnType), frame); local
844 simplePush(getType(name), frame); local
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
NativeFrame.java 20 import android.filterfw.core.Frame;
32 public class NativeFrame extends Frame {
60 * Returns the native frame's Object value.
62 * If the frame's base-type is not TYPE_OBJECT, this returns a data buffer containing the native
64 * If the frame is based on an object type, this type is expected to be a subclass of
65 * NativeBuffer. The NativeBuffer returned is only valid for as long as the frame is alive. If
70 // If this is not a structured frame, return our data
78 throw new RuntimeException("Attempting to get object data from frame that does " +
99 throw new RuntimeException("Could not get the native structured data for frame!");
102 // Attach this frame to i
    [all...]
SimpleFrame.java 20 import android.filterfw.core.Frame;
31 public class SimpleFrame extends Frame {
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
RotateFilter.java 22 import android.filterfw.core.Frame;
86 // Get input frame
87 Frame input = pullInput("image");
104 // Create output frame
109 Frame output = context.getFrameManager().newFrame(outputFormat);
117 // Release pushed frame
StraightenFilter.java 22 import android.filterfw.core.Frame;
87 // Get input frame
88 Frame input = pullInput("image");
96 // Create output frame
103 Frame output = context.getFrameManager().newFrame(inputFormat);
111 // Release pushed frame
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/ui/
SurfaceTargetFilter.java 22 import android.filterfw.core.Frame;
96 addMaskedInputPort("frame", ImageFormat.create(ImageFormat.COLORSPACE_RGBA));
144 if (mLogVerbose) Log.v(TAG, "Starting frame processing");
146 // Get input frame
147 Frame input = pullInput("frame");
158 Frame gpuFrame = null;
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
Filter.java 68 private long mCurrentTimestamp = Frame.TIMESTAMP_NOT_SET;
76 private ArrayList<Frame> mAutoReleaseFrames = new ArrayList<Frame>();
304 * Called to perform processing on Frame data.
618 mCurrentTimestamp = Frame.TIMESTAMP_NOT_SET;
665 final void addAutoReleaseFrame(Frame frame) {
666 mAutoReleaseFrames.add(frame);
674 if (timestamp > mCurrentTimestamp || mCurrentTimestamp == Frame.TIMESTAMP_NOT_SET) {
StatsFilter.java 25 import androidx.media.filterfw.Frame;
98 ByteBuffer pixelBuffer = inputFrame.lockBytes(Frame.MODE_READ);
  /external/chromium_org/chrome/common/extensions/docs/examples/api/nativeMessaging/host/
native-messaging-example-host 53 class NativeMessagingWindow(Tkinter.Frame):
57 Tkinter.Frame.__init__(self)
  /external/chromium_org/third_party/WebKit/Source/bindings/
IDLExtendedAttributes.txt 39 CheckSecurity=Frame|Node
  /external/chromium_org/third_party/WebKit/Source/core/frame/
Location.idl 30 CheckSecurity=Frame,
  /external/chromium_org/tools/memory_inspector/memory_inspector/classification/
native_heap_classifier_unittest.py 113 mock_frame = stacktrace.Frame(mock_addr)
128 mock_frame = stacktrace.Frame(mock_addr)
130 for _ in xrange(10): # Just repeat the same stack frame 10 times
  /external/javassist/src/test/test/javassist/bytecode/analysis/
AnalyzerTest.java 17 import javassist.bytecode.analysis.Frame;
72 Frame[] frames = analyzer.analyze(method.getDeclaringClass(), info);
75 Frame frame = frames[pos]; local
76 assertEquals("java.lang.Object", frame.getLocal(2).getCtClass().getName());
106 Frame[] frames = analyzer.analyze(method.getDeclaringClass(), info);
108 Frame frame = frames[pos]; local
109 assertEquals(expected, frame.peek().getCtClass().getName());
126 Frame[] frames = analyzer.analyze(clazz, info)
128 Frame frame = frames[pos]; local
    [all...]
  /external/llvm/include/llvm/DebugInfo/
DIContext.h 64 void addFrame(const DILineInfo &Frame) {
65 Frames.push_back(Frame);
  /external/llvm/include/llvm/MC/
MCObjectStreamer.h 42 void EmitCFIStartProcImpl(MCDwarfFrameInfo &Frame) override;
43 void EmitCFIEndProcImpl(MCDwarfFrameInfo &Frame) override;
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
ExposureFilter.java 21 import androidx.media.filterfw.Frame;
60 ByteBuffer inputBuffer = inputImage.lockBytes(Frame.MODE_READ);
  /external/chromium_org/third_party/webrtc/video_engine/test/auto_test/primitives/
framedrop_primitives.cc 247 // Wait for the last frame to be decoded and rendered. There is no guarantee
252 // Must stop the frame drop detectors in the right order to avoid getting
275 const std::vector<Frame*>& frames) {
284 "possible to drop the first frame. Both because we don't have anything "
290 // Process the file and write frame duplicates for all dropped frames.
291 for (std::vector<Frame*>::const_iterator it = frames.begin();
294 // Write the previous frame to the output file:
314 Frame* frame = new Frame(number, timestamp) local
554 Frame* frame = created_frames_vector_[*it]; local
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
stream.py 41 from mod_pywebsocket._stream_hybi import Frame
  /external/chromium_org/third_party/WebKit/Source/core/page/
Page.h 25 #include "core/frame/LocalFrame.h"
26 #include "core/frame/SettingsDelegate.h"
27 #include "core/frame/UseCounter.h"
55 class Frame;
131 void setMainFrame(Frame*);
132 Frame* mainFrame() const { return m_mainFrame; }
133 // Escape hatch for existing code that assumes that the root frame is
262 // Typically, the main frame and Page should both be owned by the embedder,
264 // call detaches the main frame and clears this pointer, thus ensuring that
265 // this field only references a live main frame
    [all...]

Completed in 1192 milliseconds

1 2 3 4 5 67 8 91011>>