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

1 2

  /external/chromium_org/ash/shelf/
shelf_button_host.h 25 enum Pointer {
32 // Invoked when a pointer device is pressed on a view.
34 Pointer pointer,
37 // Invoked when a pointer device is dragged over a view.
39 Pointer pointer,
42 // Invoked either if a pointer device is released or mouse capture canceled.
44 Pointer pointer,
    [all...]
  /external/clang/test/SemaCXX/
warn-bool-conversion.cpp 4 int* j = false; // expected-warning{{initialization of pointer of type 'int *' to null from a constant boolean expression}}
6 void foo(int* i, int *j=(false)) // expected-warning{{initialization of pointer of type 'int *' to null from a constant boolean expression}}
8 foo(false); // expected-warning{{initialization of pointer of type 'int *' to null from a constant boolean expression}}
12 foo(false == true); // expected-warning{{initialization of pointer of type 'int *' to null from a constant boolean expression}}
13 foo((42 + 24) < 32); // expected-warning{{initialization of pointer of type 'int *' to null from a constant boolean expression}}
16 foo(kFlag); // expected-warning{{initialization of pointer of type 'int *' to null from a constant boolean expression}}
95 namespace Pointer {
  /external/chromium_org/base/
lazy_instance.h 10 // and Pointer() will always return the same, completely initialized instance.
31 // MyClass* ptr = my_instance.Pointer();
139 return *Pointer();
142 Type* Pointer() {
171 // synchronization between different threads calling Pointer().
  /external/chromium_org/third_party/mesa/src/src/gallium/tools/trace/
model.py 93 class Pointer(Node):
  /external/mesa3d/src/gallium/tools/trace/
model.py 93 class Pointer(Node):
  /external/chromium_org/base/metrics/
stats_table_unittest.cc 240 int* Pointer() { return GetPtr(); }
255 ASSERT_NE(foo.Pointer(), static_cast<int*>(0));
256 EXPECT_EQ(0, *(foo.Pointer()));
260 while (*(foo.Pointer()) < 123) foo.Increment();
  /external/chromium_org/net/base/
priority_queue.h 34 // This section is up-front for Pointer only.
44 // A pointer to a value stored in the queue. The pointer becomes invalid
46 class Pointer {
48 // Constructs a null pointer.
49 Pointer() : priority_(kNullPriority) {
54 // An uninitialized iterator behaves like an uninitialized pointer as per
60 Pointer(const Pointer& p)
68 Pointer& operator=(const Pointer& p)
    [all...]
  /external/chromium_org/v8/src/base/
lazy-instance.h 10 // and Pointer() will always return the same, completely initialized instance.
30 // MyClass* ptr = my_instance.Pointer();
187 T* Pointer() {
  /external/clang/test/CodeGen/
2002-07-14-MiscTests3.c 8 char *Pointer;
  /external/jmdns/src/javax/jmdns/impl/
DNSQuestion.java 85 * Pointer question.
87 private static class Pointer extends DNSQuestion {
88 Pointer(String name, DNSRecordType type, DNSRecordClass recordClass, boolean unique) {
101 answers.add(new DNSRecord.Pointer("_services._dns-sd._udp.local.", DNSRecordClass.CLASS_IN, DNSRecordClass.NOT_UNIQUE, DNSConstants.DNS_TTL, typeEntry.getType()));
142 DNSQuestion question = new Pointer(this.getName(), DNSRecordType.TYPE_PTR, this.getRecordClass(), this.isUnique());
203 DNSQuestion question = new Pointer(this.getName(), DNSRecordType.TYPE_PTR, this.getRecordClass(), this.isUnique());
249 return new Pointer(name, type, recordClass, unique);
DNSRecord.java 423 * Pointer record.
425 public static class Pointer extends DNSRecord {
426 // private static Logger logger = Logger.getLogger(Pointer.class.getName());
429 public Pointer(String name, DNSRecordClass recordClass, boolean unique, int ttl, String alias) {
440 return super.isSameEntry(entry) && (entry instanceof Pointer) && this.sameValue((Pointer) entry);
450 if (! (other instanceof Pointer) ) {
453 Pointer pointer = (Pointer) other local
    [all...]
  /external/llvm/include/llvm/IR/
Intrinsics.h 84 Integer, Vector, Pointer, Struct,
  /external/llvm/lib/Transforms/Scalar/
CorrelatedValuePropagation.cpp 142 Value *Pointer = nullptr;
144 Pointer = L->getPointerOperand();
146 Pointer = cast<StoreInst>(I)->getPointerOperand();
148 if (isa<Constant>(Pointer)) return false;
150 Constant *C = LVI->getConstant(Pointer, I->getParent());
154 I->replaceUsesOfWith(Pointer, C);
LoadCombine.cpp 37 Value *Pointer;
94 POP.Pointer = LI.getPointerOperand();
96 while (isa<BitCastInst>(POP.Pointer) || isa<GetElementPtrInst>(POP.Pointer)) {
97 if (auto *GEP = dyn_cast<GetElementPtrInst>(POP.Pointer)) {
105 POP.Pointer = GEP->getPointerOperand();
106 } else if (auto *BC = dyn_cast<BitCastInst>(POP.Pointer))
107 POP.Pointer = BC->getOperand(0);
131 /// have the same base pointer. There are at least two loads.
196 FirstLP.POP.Pointer->getType()->getPointerAddressSpace()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
Cursor.h 41 Pointer = 0,
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
cparse.py 121 class Pointer(Node):
320 self.append( Pointer() )
genpyx.py 170 class Pointer(object):
313 #pointer = None
314 #if self.pointer:
315 #pointer = self.pointer
317 #pointer = self.array
318 #if pointer and pointer.spec:
319 #spec = pointer.spec
355 # mutate this mystery array into a pointer XX method: Array.to_pointer(
    [all...]
ir.py 287 class Pointer(genpyx.Pointer, Node):
296 #return "pointer to"
339 node = Pointer()
527 if len(self)>1 and type(self[1])==Pointer: # isinstance ??
529 pointer = property(get_pointer) variable in class:Declarator
551 decl = Declarator(Identifier(), Pointer(self.get_rest().clone()))
557 pointer = node.pointer or node.array
558 assert pointer, "cannot dereference non-pointer
    [all...]
  /external/compiler-rt/lib/ubsan/
ubsan_diag.h 83 /// Try to obtain a location for the given function pointer. This might fail,
141 AK_Pointer ///< A pointer argument, displayed in hexadecimal.
152 Arg(const void *Pointer) : Kind(AK_Pointer), Pointer(Pointer) {}
160 const void *Pointer;
  /external/llvm/lib/Transforms/ObjCARC/
ObjCARC.h 96 IC_User, ///< could "use" a pointer
132 /// passed a null pointer.
176 /// Test whether the given instruction can autorelease any pointer or cause an
302 /// \brief Test whether the given value is possible a retainable object pointer.
308 // Special arguments can not be a valid retainable object pointer.
315 // Only consider values with pointer types.
317 // It seemes intuitive to exclude function pointer types as well, since
319 // bitcasts retainable object pointers to function-pointer type temporarily.
324 // pointer.
373 const Value *Pointer
    [all...]
  /external/chromium_org/ui/app_list/views/
apps_grid_view.h 63 enum Pointer {
101 Pointer pointer,
106 bool UpdateDragFromItem(Pointer pointer, const ui::LocatedEvent& event);
110 void UpdateDrag(Pointer pointer, const gfx::Point& point);
168 void UpdateDragFromReparentItem(Pointer pointer,
172 void DispatchDragEventForReparent(Pointer pointer
    [all...]
  /frameworks/native/include/input/
InputTransport.h 98 struct Pointer{
110 return sizeof(Motion) - sizeof(Pointer) * MAX_POINTERS
111 + sizeof(Pointer) * pointerCount;
361 // Touch state per device and source, only for sources of class pointer.
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmsio0.c 43 cmsUInt32Number Pointer; // Points to current location
52 ResData -> Pointer += len;
63 ResData ->Pointer = offset;
71 return ResData -> Pointer;
79 ResData ->Pointer += size;
80 if (ResData ->Pointer > iohandler->UsedSpace)
81 iohandler->UsedSpace = ResData ->Pointer;
110 fm ->Pointer = 0;
140 cmsUInt32Number Pointer; // Points to current location
152 if (ResData -> Pointer + len > ResData -> Size)
    [all...]
  /external/chromium_org/sandbox/win/tools/finder/
ntundoc.h 149 PVOID Pointer;
  /external/clang/lib/AST/
Type.cpp 217 /// example, it returns "T*" as "T*", (not as "int*"), because the pointer is
487 // type pointer if it is the right class. There is no typedef information to
501 // type pointer if it is the right class.
511 // type pointer if it is the right class.
    [all...]

Completed in 2699 milliseconds

1 2