HomeSort by relevance Sort by last modified time
    Searched refs:Next (Results 26 - 50 of 1236) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/llvm/lib/Support/
ManagedStatic.cpp 51 Next = StaticList;
55 assert(!Ptr && !DeleterFn && !Next &&
61 Next = StaticList;
71 StaticList = Next;
72 Next = nullptr;
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug336.go 10 Next *T2
16 Next *T4
30 Next *T11
67 tn struct{ Next *T11 }
68 tz struct{ z *struct{ Next *T11 } }
69 tpz *struct{ z *struct{ Next *T11 } }
70 tppz **struct{ z *struct{ Next *T11 } }
71 tpppz ***struct{ z *struct{ Next *T11 } }
73 y ***struct{ z *struct{ Next *T11 } }
76 tn.Next = &T11{
    [all...]
  /prebuilts/go/linux-x86/test/fixedbugs/
bug336.go 10 Next *T2
16 Next *T4
30 Next *T11
67 tn struct{ Next *T11 }
68 tz struct{ z *struct{ Next *T11 } }
69 tpz *struct{ z *struct{ Next *T11 } }
70 tppz **struct{ z *struct{ Next *T11 } }
71 tpppz ***struct{ z *struct{ Next *T11 } }
73 y ***struct{ z *struct{ Next *T11 } }
76 tn.Next = &T11{
    [all...]
  /external/v8/src/
dateparser-inl.h 81 token = scanner.Next()) {
95 if (scanner.Peek().IsSymbol('.')) scanner.Next();
100 int n = ReadMilliseconds(scanner.Next());
145 DateToken token = scanner.Next();
215 in_->Next();
223 Next();
237 Next();
255 DateToken sign_token = scanner->Next();
258 int year = scanner->Next().number();
262 day->Add(scanner->Next().number())
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/ProcessDsc/
DscFile.h 26 struct _SECTION_LINE *Next;
38 struct _DSC_FILE_NAME *Next;
47 struct _SECTION *Next;
MultiThread.h 34 BUILD_ITEM *Next;
48 SOURCE_FILE_ITEM *Next;
56 DEPENDENCY_ITEM *Next;
64 COMPONENTS_ITEM *Next;
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/testdata/
break.go 24 Next:
27 continue Next
51 Next:
54 continue Next
65 Next:
69 continue Next
91 Next:
94 break Next
118 Next:
121 break Next
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/testdata/
break.go 24 Next:
27 continue Next
51 Next:
54 continue Next
65 Next:
69 continue Next
91 Next:
94 break Next
118 Next:
121 break Next
    [all...]
  /external/protobuf/src/google/protobuf/io/
zero_copy_stream.h 60 // input->Next(&buffer, &size);
78 // while (input->Next(&buffer, &size)) {
94 // while (output->Next(&buffer, &size)) {
143 // as repeatedly calling Next() eventually yields a buffer with non-zero
145 virtual bool Next(const void** data, int* size) = 0;
147 // Backs up a number of bytes, so that the next call to Next() returns
148 // data again that was already returned by the last call to Next(). This
150 // to a certain point in the input, then return. If Next() returns a
155 // * The last method called must have been Next()
    [all...]
  /external/regex-re2/util/
random.cc 11 int32 ACMRandom::Next() {
31 return Next() % n;
random.h 18 int32 Next();
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/io/
zero_copy_stream.h 60 // input->Next(&buffer, &size);
78 // while (input->Next(&buffer, &size)) {
94 // while (output->Next(&buffer, &size)) {
143 // as repeatedly calling Next() eventually yields a buffer with non-zero
145 virtual bool Next(const void** data, int* size) = 0;
147 // Backs up a number of bytes, so that the next call to Next() returns
148 // data again that was already returned by the last call to Next(). This
150 // to a certain point in the input, then return. If Next() returns a
155 // * The last method called must have been Next()
    [all...]
  /development/host/windows/usb/api/
adb_interface_enum.h 62 /** \brief Gets next enumerated interface information
76 bool Next(AdbInterfaceInfo* info, ULONG* size);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GuidChk/
CommonUtils.h 47 struct _STRING_LIST *Next;
  /external/clang/test/CodeGen/
2002-07-14-MiscListTests.c 19 struct list *Next;
43 L = &(*L)->Next;
46 (*L)->Next = 0;
53 return FindData(L->Next, Data);
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_list.h 15 * next paragraph) shall be included in all copies or substantial
36 struct rc_list * Next;
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
SimplifyInstructions.cpp 48 SmallPtrSet<const Instruction*, 8> S1, S2, *ToSimplify = &S1, *Next = &S2;
64 // Mark all uses for resimplification next time round the loop.
67 Next->insert(cast<Instruction>(*UI));
75 // Place the list of instructions to simplify on the next loop iteration
77 std::swap(ToSimplify, Next);
78 Next->clear();
  /frameworks/base/tools/aapt2/io/
BigBufferOutputStream.h 31 bool Next(void** data, size_t* size) override;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wsdxmldom.h 33 struct _WSDXML_PREFIX_MAPPING *Next;
40 struct _WSDXML_ATTRIBUTE *Next;
51 struct _WSDXML_NODE *Next;
68 struct _WSDXML_ELEMENT_LIST *Next;
  /external/llvm/include/llvm/IR/
Value.h 572 Use **Next = &Merged;
576 *Next = R;
580 *Next = L;
584 *Next = R;
585 Next = &R->Next;
586 R = R->Next;
588 *Next = L;
589 Next = &L->Next;
    [all...]
  /external/llvm/include/llvm/ADT/
ilist_node.h 44 /// ilist_node - Base class that provides next/prev services for nodes
53 NodeTy *Next;
54 NodeTy *getNext() { return Next; }
55 const NodeTy *getNext() const { return Next; }
56 void setNext(NodeTy *N) { Next = N; }
58 ilist_node() : Next(nullptr) {}
106 /// \brief Get the next node, or \c nullptr for the list tail.
114 /// \brief Get the next node, or \c nullptr for the list tail.
  /external/llvm/include/llvm/CodeGen/
MachinePassRegistry.h 54 MachinePassRegistryNode *Next; // Next function pass in list.
62 : Next(nullptr)
69 MachinePassRegistryNode *getNext() const { return Next; }
70 MachinePassRegistryNode **getNextAddress() { return &Next; }
74 void setNext(MachinePassRegistryNode *N) { Next = N; }
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
MachinePassRegistry.h 53 MachinePassRegistryNode *Next; // Next function pass in list.
61 : Next(NULL)
68 MachinePassRegistryNode *getNext() const { return Next; }
69 MachinePassRegistryNode **getNextAddress() { return &Next; }
73 void setNext(MachinePassRegistryNode *N) { Next = N; }
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
MyAlloc.c 102 for (Tmp = MyAllocData; Tmp != NULL; Tmp = Tmp->Next) {
140 for (Tmp = MyAllocData; Tmp != NULL; Tmp = Tmp->Next) {
258 Tmp->Next = MyAllocData;
259 Tmp->Cksum = (UINTN) Tmp + (UINTN) (Tmp->Next) + Tmp->Line + Tmp->Size + (UINTN) (Tmp->File) + (UINTN) (Tmp->Buffer);
339 for (Tmp = MyAllocData;; Tmp = Tmp->Next) {
340 if (Tmp->Next == NULL) {
353 Tmp = Tmp->Next;
467 MyAllocData = MyAllocData->Next;
472 for (Tmp = MyAllocData;; Tmp = Tmp->Next) {
476 if (Tmp->Next == NULL) {
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/
MyAlloc.c 109 for (Tmp = MyAllocData; Tmp != NULL; Tmp = Tmp->Next) {
147 for (Tmp = MyAllocData; Tmp != NULL; Tmp = Tmp->Next) {
265 Tmp->Next = MyAllocData;
266 Tmp->Cksum = (UINTN) Tmp + (UINTN) (Tmp->Next) + Tmp->Line + Tmp->Size + (UINTN) (Tmp->File) + (UINTN) (Tmp->Buffer);
346 for (Tmp = MyAllocData;; Tmp = Tmp->Next) {
347 if (Tmp->Next == NULL) {
360 Tmp = Tmp->Next;
474 MyAllocData = MyAllocData->Next;
479 for (Tmp = MyAllocData;; Tmp = Tmp->Next) {
483 if (Tmp->Next == NULL) {
    [all...]

Completed in 1092 milliseconds

12 3 4 5 6 7 8 91011>>