/external/chromium_org/sandbox/win/tests/common/ |
test_utils.h | 10 // Sets a reparse point. |source| will now point to |target|. Returns true if 12 bool SetReparsePoint(HANDLE source, const wchar_t* target);
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
BindingSecurity.cpp | 83 bool BindingSecurity::shouldAllowAccessToFrame(Frame* target, SecurityReportingOption reportingOption) 85 return target && canAccessDocument(target->document(), reportingOption); 88 bool BindingSecurity::shouldAllowAccessToFrame(Frame* target, ExceptionState& exceptionState) 90 return target && canAccessDocument(target->document(), exceptionState); 93 bool BindingSecurity::shouldAllowAccessToNode(Node* target, ExceptionState& exceptionState) 95 return target && canAccessDocument(&target->document(), exceptionState);
|
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/ |
WebGLBuffer.cpp | 57 void WebGLBuffer::setTarget(GC3Denum target) 59 // In WebGL, a buffer is bound to one target in its lifetime 62 if (target == GL_ARRAY_BUFFER || target == GL_ELEMENT_ARRAY_BUFFER) 63 m_target = target;
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WebDOMEventListener.cpp | 56 EventListenerWrapper* WebDOMEventListener::createEventListenerWrapper(const WebString& eventType, bool useCapture, EventTarget* target) 58 return m_private->createEventListenerWrapper(eventType, useCapture, target); 61 EventListenerWrapper* WebDOMEventListener::getEventListenerWrapper(const WebString& eventType, bool useCapture, EventTarget* target) 63 return m_private->getEventListenerWrapper(eventType, useCapture, target);
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/ |
sp_state_so.c | 46 t->target.context = pipe; 47 t->target.reference.count = 1; 48 pipe_resource_reference(&t->target.buffer, buffer); 49 t->target.buffer_offset = buffer_offset; 50 t->target.buffer_size = buffer_size; 51 return &t->target; 56 struct pipe_stream_output_target *target) 58 pipe_resource_reference(&target->buffer, NULL); 59 FREE(target);
|
/external/chromium_org/third_party/skia/src/gpu/ |
GrPathRenderer.h | 57 * 1) kNoRestriction: This is the most general. The caller sets up the GrDrawState on the target 80 * @param target target that the path will be rendered to 86 const GrDrawTarget* target) const { 88 return this->onGetStencilSupport(path, stroke, target); 98 * @param target The target that the path will be rendered to 105 const GrDrawTarget* target, 108 * Draws the path into the draw target. If getStencilSupport() would return kNoRestriction then 109 * the subclass must respect the stencil settings of the target's draw state [all...] |
GrTBSearch.h | 15 int GrTBSearch(const ELEM array[], int count, KEY target) { 26 if (LT(array[index], target)) { 34 if (EQ(array[high], target)) { 39 if (LT(array[high], target)) {
|
/external/chromium_org/tools/gn/ |
ninja_script_target_writer_unittest.cc | 16 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); 18 target.script_values().outputs().push_back( 20 target.script_values().outputs().push_back( 24 NinjaScriptTargetWriter writer(&target, setup.toolchain(), out); 42 Target target(setup.settings(), Label(SourceDir("//foo/"), "bar")); 44 target.script_values().set_depfile( 46 target.script_values().outputs().push_back( 48 target.script_values().outputs().push_back [all...] |
command_desc.cc | 18 #include "tools/gn/target.h" 41 void RecursiveCollectChildDeps(const Target* target, std::set<Label>* result); 43 void RecursiveCollectDeps(const Target* target, std::set<Label>* result) { 44 if (result->find(target->label()) != result->end()) 45 return; // Already did this target. 46 result->insert(target->label()); 48 RecursiveCollectChildDeps(target, result); 51 void RecursiveCollectChildDeps(const Target* target, std::set<Label>* result) 315 const Target* target = GetTargetForDesc(args); local [all...] |
/external/chromium_org/tools/gyp/test/rules/ |
gyptest-input-root.py | 19 test.build('input-root.gyp', target='test', chdir='relocate/src')
|
/external/chromium_org/v8/src/ |
simulator.h | 40 #error Unsupported target architecture.
|
/external/guava/guava/src/com/google/common/eventbus/ |
EventHandler.java | 38 private final Object target; field in class:EventHandler 43 * Creates a new EventHandler to wrap {@code method} on @{code target}. 45 * @param target object to which the method applies. 48 EventHandler(Object target, Method method) { 49 Preconditions.checkNotNull(target, 50 "EventHandler target cannot be null."); 53 this.target = target; 68 method.invoke(target, new Object[] { event }); 70 throw new Error("Method rejected target/argument: " + event, e) [all...] |
/external/mesa3d/src/gallium/drivers/softpipe/ |
sp_state_so.c | 46 t->target.context = pipe; 47 t->target.reference.count = 1; 48 pipe_resource_reference(&t->target.buffer, buffer); 49 t->target.buffer_offset = buffer_offset; 50 t->target.buffer_size = buffer_size; 51 return &t->target; 56 struct pipe_stream_output_target *target) 58 pipe_resource_reference(&target->buffer, NULL); 59 FREE(target);
|
/external/mockito/src/org/mockito/internal/invocation/realmethod/ |
RealMethod.java | 10 Object invoke(Object target, Object[] arguments) throws Throwable;
|
/external/skia/src/gpu/ |
GrPathRenderer.h | 57 * 1) kNoRestriction: This is the most general. The caller sets up the GrDrawState on the target 80 * @param target target that the path will be rendered to 86 const GrDrawTarget* target) const { 88 return this->onGetStencilSupport(path, stroke, target); 98 * @param target The target that the path will be rendered to 105 const GrDrawTarget* target, 108 * Draws the path into the draw target. If getStencilSupport() would return kNoRestriction then 109 * the subclass must respect the stencil settings of the target's draw state [all...] |
GrTBSearch.h | 15 int GrTBSearch(const ELEM array[], int count, KEY target) { 26 if (LT(array[index], target)) { 34 if (EQ(array[high], target)) { 39 if (LT(array[high], target)) {
|
/external/v8/src/ |
simulator.h | 40 #error Unsupported target architecture.
|
/ndk/tests/build/project-properties/jni/ |
Android.mk | 3 $(error Incorrect target platform: $(TARGET_PLATFORM) (expecteding $(WANTED_PLATFORM))) 6 $(call ndk_log,Test OK: Correct target platform retrieved from project.properties: $(TARGET_PLATFORM))
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter_bridge/ |
ebt_mark_t.h | 4 /* The target member is reused for adding new actions, the 5 * value of the real target is -1 to -NUM_STANDARD_TARGETS. 7 * but let's play it safe) are kept to designate this target. 20 int target; member in struct:ebt_mark_t_info
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_bridge/ |
ebt_mark_t.h | 4 /* The target member is reused for adding new actions, the 5 * value of the real target is -1 to -NUM_STANDARD_TARGETS. 7 * but let's play it safe) are kept to designate this target. 20 int target; member in struct:ebt_mark_t_info
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_bridge/ |
ebt_mark_t.h | 4 /* The target member is reused for adding new actions, the 5 * value of the real target is -1 to -NUM_STANDARD_TARGETS. 7 * but let's play it safe) are kept to designate this target. 20 int target; member in struct:ebt_mark_t_info
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
dep_util.py | 13 def newer(source, target): 14 """Tells if the target is newer than the source. 17 'target', or if 'source' exists and 'target' doesn't. 19 Return false if both exist and 'target' is the same age or younger 28 if not os.path.exists(target): 31 return os.stat(source)[ST_MTIME] > os.stat(target)[ST_MTIME] 35 than its corresponding target. Return a pair of lists (sources, 36 targets) where source is newer than target, according to the semantics 45 for source, target in zip(sources, targets) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
dep_util.py | 13 def newer(source, target): 14 """Tells if the target is newer than the source. 17 'target', or if 'source' exists and 'target' doesn't. 19 Return false if both exist and 'target' is the same age or younger 28 if not os.path.exists(target): 31 return os.stat(source)[ST_MTIME] > os.stat(target)[ST_MTIME] 35 than its corresponding target. Return a pair of lists (sources, 36 targets) where source is newer than target, according to the semantics 45 for source, target in zip(sources, targets) [all...] |
/external/chromium_org/ui/events/ |
event_dispatcher_unittest.cc | 77 static_cast<TestTarget*>(event->target())->AddHandlerId(id_); 154 // Invalidates the target when it receives any event. 163 TestTarget* target = static_cast<TestTarget*>(event->target()); variable 164 target->set_valid(false); 212 void ProcessEvent(EventTarget* target, Event* event) { 213 EventDispatchDetails details = DispatchEvent(target, event); 220 virtual bool CanDispatchToTarget(EventTarget* target) OVERRIDE { 221 TestTarget* test_target = static_cast<TestTarget*>(target); 284 // |h1| marks the event as handled. So only the pre-target handlers shoul 325 TestTarget target; local 352 TestTarget target; local 379 TestTarget target; local 404 TestTarget target; local 431 TestTarget target; local 458 TestTarget target; local 496 TestTarget target; local 522 TestTarget target; local 548 TestTarget target; local 575 TestTarget target; local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
lp_jit.c | 76 LLVMInvalidateStructLayout(gallivm->target, texture_type); 80 gallivm->target, texture_type, 83 gallivm->target, texture_type, 86 gallivm->target, texture_type, 89 gallivm->target, texture_type, 92 gallivm->target, texture_type, 95 gallivm->target, texture_type, 98 gallivm->target, texture_type, 101 gallivm->target, texture_type, 104 gallivm->target, texture_type [all...] |